opi-agent 0.5.0

General-purpose agent runtime with tool calling and session management
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>,
}