oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Pluggable file backends for deep agent filesystem tools.
//!
//! See [Backends](https://docs.langchain.com/oss/python/deepagents/backends).
//!
//! - **Default**: When no backend is set, FS tools use the workspace root from config/context (same as [WorkspaceBackend]).
//! - [WorkspaceBackend]: Local disk under a root directory (sandboxed).
//! - [StoreBackend]: Files stored in [crate::tools::ToolStore] (e.g. InMemoryStore); durable across threads.
//! - [CompositeBackend]: Routes requests by path prefix to different backends (longest-prefix match). Used for [long-term memory](https://docs.langchain.com/oss/python/deepagents/long-term-memory) by routing e.g. `/memories/` to [StoreBackend].

mod composite;
mod store;
mod workspace;

pub use crate::tools::{EditResult, FileBackend, FileInfo, GrepMatch, WriteResult};
pub use composite::CompositeBackend;
pub use store::StoreBackend;
pub use workspace::WorkspaceBackend;