wesichain-agent 0.2.0

Rust-native LLM agents & chains with resumable ReAct workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod action;
mod agent;
mod executor;
mod factory;
mod tool;

pub use action::{ActionAgent, AgentAction, AgentFinish, AgentStep};
#[allow(deprecated)]
pub use agent::ToolCallingAgent;
pub use executor::AgentExecutor;
pub use factory::create_tool_calling_agent;
pub use tool::ToolRegistry;
pub use wesichain_core::Tool;