opi-agent 0.4.0

General-purpose agent runtime with tool calling and transport abstraction
Documentation
1
2
3
4
5
6
7
//! Agent state management.

#[derive(Debug, Default)]
pub struct AgentState {
    pub messages: Vec<serde_json::Value>,
    pub tool_results: Vec<serde_json::Value>,
}