A framework for managing and orchestrating AI agents
Project description
🌿 Agentarium
A powerful Python framework for managing and orchestrating AI agents with ease. Agentarium provides a flexible and intuitive way to create, manage, and coordinate interactions between multiple AI agents in various environments.
Installation • Quick Start • Features • Examples • Documentation • Contributing
🚀 Installation
pip install agentarium
🎯 Quick Start
from agentarium import Agent
# Create agents
agent1 = Agent(name="agent1")
agent2 = Agent(name="agent2")
# Direct communication between agents
alice.talk_to(bob, "Hello Bob! I heard you're working on some interesting ML projects.")
# Agent autonomously decides its next action based on context
bob.act()
✨ Features
- 🤖 Advanced Agent Management: Create and orchestrate multiple AI agents with different roles and capabilities
- 🔄 Autonomous Decision Making: Agents can make decisions and take actions based on their context
- 💾 Checkpoint System: Save and restore agent states and interactions for reproducibility
- 🎭 Customizable Actions: Define custom actions beyond the default talk/think capabilities
- 🧠 Memory & Context: Agents maintain memory of past interactions for contextual responses
- ⚡ AI Integration: Seamless integration with various AI providers through aisuite
- ⚡ Performance Optimized: Built for efficiency and scalability
- 🛠️ Extensible Architecture: Easy to extend and customize for your specific needs
📚 Examples
Basic Chat Example
Create a simple chat interaction between agents:
from agentarium import Agent
# Create agents with specific characteristics
alice = Agent.create_agent(name="Alice", occupation="Software Engineer")
bob = Agent.create_agent(name="Bob", occupation="Data Scientist")
# Direct communication
alice.talk_to(bob, "Hello Bob! I heard you're working on some interesting projects.")
# Let Bob autonomously decide how to respond
bob.act()
Adding Custom Actions
Add new capabilities to your agents:
from agentarium import Agent, Action
# Define a simple greeting action
def greet(name: str, **kwargs) -> str:
return f"Hello, {name}!"
# Create an agent and add the greeting action
agent = Agent.create_agent(name="Alice")
agent.add_action(
Action(
name="GREET",
description="Greet someone by name",
parameters=["name"],
function=greet
)
)
# Use the custom action
agent.execute_action("GREET", "Bob")
Using Checkpoints
Save and restore agent states:
from agentarium import Agent
from agentarium.CheckpointManager import CheckpointManager
# Initialize checkpoint manager
checkpoint = CheckpointManager("demo")
# Create and interact with agents
alice = Agent.create_agent(name="Alice")
bob = Agent.create_agent(name="Bob")
alice.talk_to(bob, "What a beautiful day!")
checkpoint.update(step="interaction_1")
# Save the current state
checkpoint.save()
More examples can be found in the examples/ directory.
📖 Documentation
Agent Creation
Create agents with custom characteristics:
agent = Agent.create_agent(
name="Alice",
age=28,
occupation="Software Engineer",
location="San Francisco",
bio="A passionate developer who loves AI"
)
LLM Configuration
Configure your LLM provider and credentials using a YAML file:
llm:
provider: "openai" # The LLM provider to use (any provider supported by aisuite)
model: "gpt-4" # The specific model to use from the provider
aisuite: # (optional) Credentials for aisuite
openai: # Provider-specific configuration
api_key: "sk-..." # Your API key
Key Components
- Agent: Core class for creating AI agents with personalities and autonomous behavior
- CheckpointManager: Handles saving and loading of agent states and interactions
- Action: Base class for defining custom agent actions
- AgentInteractionManager: Manages and tracks all agent interactions
🤝 Contributing
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create a new branch (
git checkout -b feature/amazing-feature) - Make your changes
- Commit your changes (
git commit -m 'feat: add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
📄 License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
🙏 Acknowledgments
Thanks to all contributors who have helped shape Agentarium 🫶
Project details
Release history Release notifications | RSS feed
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 agentarium-0.3.0.tar.gz.
File metadata
- Download URL: agentarium-0.3.0.tar.gz
- Upload date:
- Size: 25.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa62481917f76c3dd92c0e5a8657e1fffa87432612caa3e4c2f7c958bead591a
|
|
| MD5 |
d20b761b3523fb0eb428097d5c7940c5
|
|
| BLAKE2b-256 |
e8641381ff37e795cb901fc3f734cd251c750c988dd0abafb2250d728d218bfa
|
File details
Details for the file agentarium-0.3.0-py3-none-any.whl.
File metadata
- Download URL: agentarium-0.3.0-py3-none-any.whl
- Upload date:
- Size: 23.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
265fa92900bdc93c4a6fa3f46cf8c5bfec3cad382dfc6675ed01a86575f471aa
|
|
| MD5 |
c2c02979070a9a9afbc788644bdc08a6
|
|
| BLAKE2b-256 |
a9fcec7431caefa6f214458fc966633194402ae5a660caf42dabeb0c71f0f508
|