orchestral-runtime 0.3.1

A runtime for reliable, interactive AI agents.
Documentation
mod guarded;
mod guarded_artifact;
mod guarded_exec;
mod guarded_patch;
mod guarded_pty;
mod guarded_search;
mod guarded_session;
mod model_output;
mod patch_parser;
mod support;
pub use self::guarded::{
    guarded_file_read_descriptor, guarded_shell_descriptor,
    guarded_shell_descriptor_with_program_aliases, GuardedFileReadExecutor, GuardedProgramAliases,
    GuardedShellExecutor, GUARDED_SHELL_SANDBOX_PROFILE,
};
pub use self::guarded_artifact::{
    guarded_artifact_read_descriptor, guarded_artifact_read_v2_descriptor,
    GuardedArtifactReadExecutor,
};
pub use self::guarded_exec::{
    approved_host_exec_command_descriptor, guarded_exec_command_descriptor,
    guarded_write_stdin_descriptor, workspace_exec_command_descriptor,
    workspace_write_stdin_descriptor, CommandEnvironmentSnapshot, GuardedExecCommandExecutor,
    GuardedWriteStdinExecutor, GUARDED_EXEC_SANDBOX_PROFILE,
};
pub use self::guarded_patch::{
    guarded_apply_patch_descriptor, guarded_file_edit_descriptor, guarded_file_write_descriptor,
    GuardedApplyPatchExecutor, GuardedFileEditExecutor, GuardedFileWriteExecutor,
};
pub use self::guarded_pty::{
    guarded_pty_close_descriptor, guarded_pty_create_descriptor,
    guarded_pty_create_descriptor_with_program_aliases, guarded_pty_list_descriptor,
    guarded_pty_read_descriptor, guarded_pty_write_descriptor, GuardedPtyCloseExecutor,
    GuardedPtyCreateExecutor, GuardedPtyListExecutor, GuardedPtyReadExecutor,
    GuardedPtyWriteExecutor, GUARDED_PTY_SANDBOX_PROFILE,
};
pub use self::guarded_search::{
    guarded_file_search_descriptor, guarded_text_search_descriptor, GuardedFileSearchExecutor,
    GuardedTextSearchExecutor,
};
pub use self::guarded_session::{guarded_session_read_descriptor, GuardedSessionReadExecutor};