ambi 0.2.1

A flexible, multi-backend, customizable AI agent framework, entirely based on Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(feature = "llama-cpp")]

pub(crate) mod callback;
pub(crate) mod command;
pub(crate) mod dispatch;
pub(crate) mod engine;
pub(crate) mod entropy;
pub(crate) mod inference;
pub(crate) mod session;
pub(crate) mod thread;

pub use engine::LlamaEngine;