opi_agent/lib.rs
1//! General-purpose agent runtime with tool calling and transport abstraction.
2//!
3//! Provides the foundation for building specialized agents with pluggable
4//! tool systems and communication transports.
5
6pub mod state;
7pub mod tool;
8pub mod transport;
9
10pub use state::AgentState;
11pub use tool::{Error, Tool};
12pub use transport::Transport;