An educational multi-agent orchestration framework
Project description
AgentSys (experimental, educational)
AgentSys is currently an experimental sample framework intended to explore ergonomic interfaces for multi-agent systems. It is not intended to be used in production, and therefore has no official support. (This also means we will not be reviewing PRs or issues!)
The primary goal of AgentSys is to showcase the handoff & routines patterns explored in the Orchestrating Agents: Handoffs & Routines cookbook. It is not meant as a standalone library, and is primarily for educational purposes.
Installation
SSH
pip install git+ssh://git@github.com/lifsys/agentsys.git
HTTPS
pip install git+https://github.com/lifsys/agentsys.git
Project Structure
The project is organized into several key modules:
agentsys.orchestration: Core orchestration functionalitySwarm: Main orchestration class for managing agent interactionsAgent: Base class for defining agents
agentsys.models: Model interfaces and implementationsBaseModel: Abstract base class for model implementationsOpenAIModel: OpenAI model implementation
agentsys.config: Configuration managementSettings: Configuration settings and utilities
agentsys.types: Type definitions and data structuresagentsys.util: Utility functions and helpers
Basic Usage
from agentsys import Swarm, Agent
client = Swarm()
agent = Agent(
name="test",
instructions="You are a helpful assistant.",
model="gpt-4",
)
messages = [{"role": "user", "content": "Hello!"}]
response = client.run(agent, messages)
print(response.messages[-1]["content"])
Function Calling
AgentSys supports function calling with both OpenAI's function calling and tool calling APIs:
def get_weather(location: str) -> str:
"""Get the weather for a location."""
return f"The weather in {location} is sunny!"
agent = Agent(
name="weather",
instructions="You can help users check the weather.",
model="gpt-4",
functions=[get_weather],
)
messages = [{"role": "user", "content": "What's the weather in San Francisco?"}]
response = client.run(agent, messages)
print(response.messages[-1]["content"])
Configuration
You can configure AgentSys using environment variables or by passing a config object:
from agentsys import Settings
settings = Settings(
openai_api_key="your-api-key",
temperature=0.7,
)
Swarm Client
The Swarm class is the main entry point for interacting with agents. It handles:
- Message routing
- Function calling
- Response streaming
- Error handling
Contributing
This is an experimental project and we are not accepting contributions at this time.
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentsys-0.7.0.tar.gz.
File metadata
- Download URL: agentsys-0.7.0.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42fd3ec05817bbee05d7837547cd7ad56e6d5a61e1ecc404a5751b910b4e8c75
|
|
| MD5 |
3c294aa82e29f9d4898787491efa946e
|
|
| BLAKE2b-256 |
8a6bf0772b4df0accd45aaff74746f4d479495d898b4ac3fd1874b6813dd50ce
|
File details
Details for the file agentsys-0.7.0-py3-none-any.whl.
File metadata
- Download URL: agentsys-0.7.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77bdd38aeb5394fa90cd74575ae644feb7e9fb5ffcac86a7299b0571c3406a4c
|
|
| MD5 |
fa521bf05b24ce0e612b962dfa4fd687
|
|
| BLAKE2b-256 |
cde53d1b837ed5080d845c1f30039ca8a5ff23117fb2898e81dd11fa203f43b3
|