mentra 0.5.0

An agent runtime for tool-using LLM applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod command;
mod hooks;
mod policy;
mod run;

pub use command::{
    CommandOutput, CommandRequest, CommandSpec, ExecOutput, LocalRuntimeExecutor, RuntimeExecutor,
    read_limited_file,
};
pub use hooks::{
    AuditHook, AuditLogHook, RuntimeHook, RuntimeHookEvent, RuntimeHooks,
    is_transient_provider_error, is_transient_runtime_error,
};
pub use policy::RuntimePolicy;
pub use run::{CancellationFlag, CancellationToken, RunOptions};