ai-lib 0.4.0

A unified AI SDK for Rust providing a single interface for multiple AI providers with hybrid architecture
Documentation
1
2
3
4
5
6
7
// This example demonstrates a simple function-calling loop using a mock transport or adapter.
// For documentation purposes this is synchronous-ish; in real apps run inside tokio runtime.

fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("See README for a documented example. This file is a placeholder.");
    Ok(())
}