ambi 0.3.6

A flexible, multi-backend, customizable AI agent framework, entirely based on Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/llm/providers.rs

//! Concrete implementations of network APIs and local inference engines.

/// Local Llama.cpp inference engine implementation.
#[cfg(feature = "llama-cpp")]
pub mod llama_cpp;

/// OpenAI API and compatible network service implementations.
#[cfg(feature = "openai-api")]
pub mod openai_api;