opi-agent 0.1.0

General-purpose agent runtime with tool calling and transport abstraction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! General-purpose agent runtime with tool calling and transport abstraction.
//!
//! Provides the foundation for building specialized agents with pluggable
//! tool systems and communication transports.

pub mod state;
pub mod tool;
pub mod transport;

pub use state::AgentState;
pub use tool::{Error, Tool};
pub use transport::Transport;