Skip to main content

Reference Architecture

This section explains the three-agent architecture in detail, based on the samplesdkagent reference implementation of the AgenticStar SDK.

Project Structure

samplesdkagent/
├── agents/
│ ├── coordinator.py
│ ├── intent.py
│ └── react.py
├── tools/
│ └── custom_tool.py
├── config.yaml
└── Dockerfile

Coordinator Agent

Receives requests from users and distributes tasks to the Intent Agent and React Agent.

Intent Agent

Analyzes user intent and develops execution plans.

React Agent

Executes tasks based on the developed plan and invokes tools as needed.