mentra 0.10.0

An agent runtime for tool-using LLM applications
Documentation
mod command;
mod hooks;
mod policy;
mod run;
/// Container and sandbox environment detection.
pub mod sandbox;

pub use command::{
    CommandOutput, CommandRequest, CommandSpec, ExecOutput, LocalRuntimeExecutor, RuntimeExecutor,
    read_limited_file,
};
pub use hooks::{
    AuditHook, AuditLogHook, HookDecision, PreExecutionContext, PreExecutionHook,
    PreExecutionHooks, RuntimeHook, RuntimeHookEvent, RuntimeHooks, is_transient_provider_error,
    is_transient_runtime_error,
};
pub(crate) use policy::ShellValidation;
pub use policy::{RuntimePolicy, ShellValidationMode};
pub use run::{CancellationFlag, CancellationToken, RunOptions};