agentsdk 0.10.0

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

pub use agent::{
    AgentBuilder, AgentOptions, CompletionAction, PostToolAction, PreToolAction, ToolErrorAction,
};
pub use history::{FileHistoryPlugin, History, MemoryHistoryPlugin};
pub use plugin::{AgentPlugin, PluginContext, PluginToolCall};
pub use retry::RetryAction;