エージェントSDK
agenticstar-platform SDK を使用してカスタム AI エージェントを構築できます。Intent・React・Coordinator の3エージェントアーキテクチャで、高度な自律型 AI エージェントを実装します。
エージェントSDK とは
AgenticStar のエージェント SDK は、プラットフォーム上で動作するカスタムエージェントを Python で開発するためのフレームワークです。
| 項目 | 値 |
|---|---|
| パッケージ | agenticstar-platform |
| バージョン | v1.1.3 |
| 言語 | Python 3.12+ |
| 配布 | PyPI |
クイックスタート
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}"
3エージェントアーキテクチャ
| エージェント | 役割 |
|---|---|
| Coordinator | ユーザーリクエストの受付・タスク分配 |
| Intent | 意図の解析・プラン策定 |
| React | タスクの実行・ツール呼び出し |