behest 0.5.8

A Rust-native cloud agent runtime with typed tools, pluggable memory, queues, and observability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Concrete provider adapters.

#[cfg(feature = "anthropic")]
pub mod anthropic {
    //! Anthropic provider adapter.

    pub use behest_adapter_anthropic::*;
}

#[cfg(feature = "openai")]
pub mod openai {
    //! OpenAI-compatible provider adapters.

    pub use behest_adapter_openai::*;
}