espionox 0.1.42

A library for creating multi-agent workflows in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod agents;
pub mod errors;
pub mod language_models;
pub mod telemetry;
#[cfg(feature = "tools")]
pub mod tools;

pub mod prelude {
    pub use crate::{
        agents::{
            error::AgentResult,
            memory::{Message, MessageRole, MessageStack},
            Agent,
        },
        language_models::completions::{CompletionModel, CompletionProvider, ModelParameters},
    };
}