ambi 0.3.1

A flexible, multi-backend, customizable AI agent framework, entirely based on Rust.
Documentation
1
2
3
4
5
6
7
8
// src/config/mod.rs

//! The root configuration parameters for defining framework behaviors.

/// Agent-specific configuration structures.
pub mod agent;

pub use agent::{AgentConfig, EvictionStrategy};