agentsdk 0.11.0

A lean, OpenAI-compatible AI SDK for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod agent;
pub mod hil;
pub mod history;
pub mod messages;
pub mod plugin;
pub mod retry;
pub mod sandbox;
pub mod tools;

pub use agent::{AgentBuilder, AgentOptions, CompletionAction, PostToolAction, PreToolAction};
pub use history::{FileHistoryPlugin, History, MemoryHistoryPlugin};
pub use plugin::{AgentPlugin, PluginContext, PluginToolCall};
pub use retry::RetryAction;
pub use sandbox::{Sandbox, SandboxError, SandboxOutput, SandboxProvider, Unsandboxed};