behest 0.5.9

A Rust-native cloud agent runtime with typed tools, pluggable memory, queues, and observability.
Documentation
1
2
3
4
5
6
7
8
//! Re-export of the high-level context factory API, which now lives
//! in [`behest_context`]. This module is preserved for facade
//! compatibility; prefer `use behest_context::*` directly in new code.

pub use behest_context::{
    ContextAdapter, ContextFactory, ContextInput, ContextOutput, ContextResult, FunctionAdapter,
    StaticAdapter,
};