agent-orchestrator-sdk 0.1.1

Rust SDK for orchestrating LLM-powered agents, shared task execution, and teammate coordination
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod agent_loop;
pub mod compaction;
pub mod context;
pub mod events;
pub mod handle;
pub mod hooks;
pub mod memory;
pub mod registry;
pub mod subagent;
pub mod team;
pub mod team_lead;
pub mod teammate;

pub use agent_loop::AgentLoop;
pub use subagent::{SubAgentDef, SubAgentRegistry, SubAgentResult, SubAgentRunner};
pub use team::AgentTeam;
pub use team_lead::TeamLead;