ambi 0.1.0

A flexible, multi-backend, customizable AI agent framework, entirely based on Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod core;
pub mod formatter;
pub mod history;
pub mod message;
pub mod tool;

pub use core::Agent;
pub use history::ChatHistory;
pub use message::Message;
pub use tool::{DynTool, Tool, ToolDefinition, ToolManager};