behest 0.3.1

A Rust-native cloud agent runtime with typed tools, pluggable memory, queues, and observability.
Documentation
1
2
3
4
5
6
7
//! Artifact store implementations using the `object_store` crate.
//!
//! Provides local filesystem and Amazon S3-compatible backends.

pub mod artifact;

pub use artifact::{DiskArtifactStore, S3ArtifactStore};