Skip to main content

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.

ItemValue
Packageagenticstar-platform
Versionv1.1.3
LanguagePython 3.12+
DistributionPyPI

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

AgentRole
CoordinatorAccept user requests and distribute tasks
IntentAnalyze intent and develop plans
ReactExecute tasks and invoke tools