tiycore 0.2.3

Unified LLM API and stateful Agent runtime in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Agent module for stateful conversation handling.

#[allow(clippy::module_inception)]
mod agent;
mod state;
mod types;

pub use agent::{
    agent_loop, agent_loop_continue, run_agent_loop, run_agent_loop_continue, Agent, AgentError,
    AgentEventStream, SubscriberId,
};
pub use state::{AgentState, AgentStateSnapshot};
pub use types::*;