chimera-core 0.1.0

Shared traits, types, and transport for the chimera AI agent SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod action;
mod backend;
mod config;
mod error;
mod event;
mod session;
mod transport;

pub use action::*;
pub use backend::*;
pub use config::*;
pub use error::*;
pub use event::*;
pub use session::*;
pub use transport::*;

pub type Result<T> = std::result::Result<T, AgentError>;