A lightweight, event-driven Python framework for building and orchestrating multi-agent systems.
Project description
Agenticle
Agenticle is a lightweight, event-driven Python framework for building and orchestrating multi-agent systems. It provides simple yet powerful abstractions to create individual agents, equip them with tools, and make them collaborate in groups to solve complex tasks.
Core Features
- Modular Agents: Define autonomous agents with distinct roles, tools, and configurations.
- Simple Tool Integration: Easily wrap any Python function into a
Toolthat agents can use. - Collaborative Groups: Orchestrate multiple agents in a
Group, enabling them to delegate tasks to each other. - Flexible Communication Patterns: Control how agents interact within a group using modes like
broadcastormanager_delegation. - Event-Driven & Streamable: The entire execution process is a stream of
Eventobjects, providing full transparency and making it easy to build real-time UIs and logs. - Prompt Templating: Customize agent behavior using Jinja2 templates for system prompts.
Installation
Clone the repository and install the package in editable mode:
git clone https://github.com/A03HCY/AgentFrame.git
cd Agenticle
pip install -e .
Quick Start
1. Creating a Single Agent
You can easily create a standalone agent and equip it with tools.
from agenticle import Agent, Tool, Endpoint
# Define a simple function to be used as a tool
def get_current_weather(location: str):
"""Gets the current weather for a specified location."""
return f"Weather in {location}: 15 degrees Celsius, sunny."
# Create an endpoint configuration
openai_endpoint = Endpoint(
api_key='YOUR_API_KEY',
base_url='YOUR_API_BASE_URL'
)
# Create a tool from the function
weather_tool = Tool(get_current_weather)
# Create an agent
weather_agent = Agent(
name="Weather_Specialist",
description="Specializes in fetching weather information for a given city.",
input_parameters=[{"name": "city"}],
tools=[weather_tool],
endpoint=openai_endpoint,
model_id='your-model-id',
target_lang='English' # Specify the output language
)
# Run the agent and stream events
event_stream = weather_agent.run(stream=True, city="Beijing")
for event in event_stream:
print(event)
2. Building a Multi-Agent Team (Group)
The true power of Agenticle lies in making agents collaborate. Here's how to build a "Travel Agency" team where a manager delegates tasks to specialists.
from agenticle import Agent, Group, Tool, Endpoint
# (Define get_current_weather, find_tourist_attractions, etc.)
# (Create weather_agent, search_agent, etc.)
# Create a manager agent that has no tools of its own
planner_agent = Agent(
name="Planner_Manager",
description="A smart planner that breaks down complex travel requests and delegates tasks to the appropriate specialist.",
input_parameters=[{"name": "user_request"}],
tools=[], # The manager delegates, it doesn't work
endpoint=openai_endpoint,
model_id='your-model-id'
)
# A shared tool available to all agents in the group
shared_flight_tool = Tool(get_flight_info)
# Assemble the team in "manager_delegation" mode
travel_agency = Group(
name="Travel_Agency",
agents=[planner_agent, weather_agent, search_agent],
manager_agent_name="Planner_Manager",
shared_tools=[shared_flight_tool],
mode='manager_delegation' # Only the manager can call other agents
)
# Run the entire group on a complex query
user_query = "I want to travel to Beijing. How is the weather, what are the famous attractions, and can you check flight info?"
event_stream = travel_agency.run(stream=True, user_request=user_query)
for event in event_stream:
print(event)
Key Concepts
Agent
The Agent is the fundamental actor in the system. It is initialized with:
name: A unique identifier.description: High-level mission objective.input_parameters: The schema for its main task input.tools: A list ofToolobjects it can use.endpoint&model_id: Configuration for the LLM it should use.
Group
A Group coordinates a list of Agent instances. Key parameters:
agents: The list of agents in the group.manager_agent_name: The name of the agent that acts as the entry point for tasks.shared_tools: A list ofToolobjects that all agents in the group can access, in addition to their own.mode:'broadcast'(default): Every agent can call every other agent in the group.'manager_delegation': Only the manager agent can call other agents. Specialist agents can only use their own tools and the shared tools.
Understanding the Event Stream
When you run an agent or group with stream=True, the framework returns an iterator of Event objects. Each event provides a real-time glimpse into the agent's execution cycle. This is incredibly useful for building UIs, logging, or debugging.
Each Event has a source (e.g., Agent:Weather_Specialist), a type, and a payload. Here are the key event types you will encounter:
start: Fired once when the agent's task begins.- Payload: The initial input parameters given to the agent.
step: Marks the beginning of a new "Think-Act" cycle.- Payload: Contains the
current_stepnumber.
- Payload: Contains the
reasoning_stream: A continuous stream of the agent's thought process as it decides what to do next.- Payload: A
contentchunk from the LLM's reasoning.
- Payload: A
content_stream: A stream of the final answer content, if the LLM decides to respond directly without calling a tool.- Payload: A
contentchunk of the final answer.
- Payload: A
decision: Fired when the agent has made a firm decision to call a tool or another agent.- Payload: Contains the
tool_nameandtool_argsfor the call.
- Payload: Contains the
tool_result: Fired after a tool has been executed.- Payload: Contains the
tool_nameand theoutputreturned by the tool.
- Payload: Contains the
end: The final event, signaling that the task is complete.- Payload: Contains the
final_answeror anerrormessage if the task failed.
- Payload: Contains the
error: Fired if a critical error occurs that terminates the process.- Payload: An error
message.
- Payload: An error
Advanced: Customizing Agent Behavior with Prompts
Agenticle uses a powerful prompt templating system based on Jinja2 to define the core behavior and reasoning process of an agent. The default prompt is located at agenticle/prompts/default_agent_prompt.md, which instructs the agent to follow a Think-Act cycle.
You can customize this behavior by creating your own prompt template and passing its file path to the Agent constructor.
Default Prompt (default_agent_prompt.md)
The default template establishes a "Cognitive Framework" for the agent, guiding it to:
- OBSERVE: Review the objective and current state.
- THINK: Assess information, plan the next step, and select a tool or expert agent.
- ACT: Externalize its thought process and execute the chosen action.
This structured approach ensures transparent and logical decision-making.
Using a Custom Prompt Template
To override the default behavior, simply provide the path to your custom .md template file when creating an agent:
my_custom_prompt_path = "path/to/your/custom_prompt.md"
custom_agent = Agent(
name="Custom_Agent",
# ... other parameters
prompt_template_path=my_custom_prompt_path
)
This allows you to completely redefine the agent's operational guidelines, personality, or even its reasoning structure.
Template Variables
When creating a custom prompt, you can use the following Jinja2 variables, which are passed to the template automatically:
{{ agent_name }}: The name of the agent.{{ agent_description }}: The high-level mission description for the agent.{{ target_language }}: The desired output language for the agent's responses (e.g., 'English', 'Simplified Chinese').{{ plain_tools }}: A list of standardToolobjects available to the agent. These are regular Python functions.{{ agent_tools }}: A list of tools that are actually other agents. This allows you to show them differently in the prompt, for instance, as "Expert Agents".{{ tools }}: The complete list of all tools (bothplain_toolsandagent_tools).
You can iterate over these tool lists in your template to dynamically display the agent's capabilities, like this:
--- FOUNDATIONAL TOOLS ---
{% for tool in plain_tools %}
**- {{ tool.name }}({% for p in tool.parameters %}{{ p.name }}: {{ p.get('annotation', 'any')}}{% if not loop.last %}, {% endif %}{% endfor %})**
*Function*: {{ tool.description | indent(4) }}
{% endfor %}
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 agenticle-0.1.0.tar.gz.
File metadata
- Download URL: agenticle-0.1.0.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6edca295bfc26382518da72e94c379176d367c042ba6c9df23718ec5b37db7dc
|
|
| MD5 |
958e544492b2292947b789e43432e3e3
|
|
| BLAKE2b-256 |
3eda0bcf3e3dd8e270c41ff418cfe8064cd7e9423a476790a7c2f726c69d2726
|
File details
Details for the file agenticle-0.1.0-py3-none-any.whl.
File metadata
- Download URL: agenticle-0.1.0-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54e74aa2d43e87f1d683118dad357470247f9a705d6c2599f6ced9078c7a97a2
|
|
| MD5 |
d86729e4b716f0dd8ca64a42ca49d818
|
|
| BLAKE2b-256 |
81fc974cbcd7b14fff0112a8b691a6aa89b4fb1596158a0790c3099cba69fda5
|