agent_stream_kit/
lib.rs

1//! Agent Stream Kit - A framework for building and managing agents in Rust
2//!
3//! This crate provides a set of tools and abstractions to create, configure, and run agents
4//! in a stream-based architecture. It includes support for defining agent behaviors, managing
5//! agent flows, handling agent input and output.
6
7mod agent;
8mod askit;
9mod board_agent;
10mod config;
11mod context;
12mod definition;
13mod error;
14mod flow;
15mod message;
16mod output;
17mod registry;
18mod runtime;
19mod value;
20
21// Re-export the crate under its canonical name for proc-macros.
22pub extern crate self as agent_stream_kit;
23pub use inventory;
24
25pub use agent::{
26    Agent, AgentStatus, AsAgent, AsAgentData, HasAgentData, agent_new, new_agent_boxed,
27};
28pub use askit::{ASKit, ASKitEvent, ASKitObserver};
29pub use config::{AgentConfigs, AgentConfigsMap};
30pub use context::AgentContext;
31pub use definition::{
32    AgentConfigEntry, AgentDefaultConfigs, AgentDefinition, AgentDefinitions,
33    AgentDisplayConfigEntry,
34};
35pub use error::AgentError;
36pub use flow::{AgentFlow, AgentFlowEdge, AgentFlowNode, AgentFlows};
37pub use output::AgentOutput;
38pub use registry::AgentRegistration;
39pub use value::{AgentValue, AgentValueMap};
40
41// re-export async_trait
42pub use async_trait::async_trait;