Agent SDK
You can build custom AI agents using the agenticstar-platform SDK. Implement advanced autonomous AI agents with a three-agent architecture featuring Intent, React, and Coordinator agents.
What is Agent SDK?
The AgenticStar Agent SDK is a framework for developing custom agents in Python that run on the platform.
| Item | Value |
|---|---|
| Package | agenticstar-platform |
| Version | v1.1.3 |
| Language | Python 3.12+ |
| Distribution | PyPI |
Quickstart
curl
pip install agenticstar-platform
Python
from agenticstar import Agent
class MyAgent(Agent):
async def run(self, message: str) -> str:
return f"Hello from MyAgent: {message}"
Three-Agent Architecture
| Agent | Role |
|---|---|
| Coordinator | Accept user requests and distribute tasks |
| Intent | Analyze intent and develop plans |
| React | Execute tasks and invoke tools |