mullama 0.3.0

Comprehensive Rust bindings for llama.cpp with memory-safe API and advanced features
1
2
3
4
5
6
7
8
9
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("Mullama FFI test");

    // This would test the actual FFI implementation
    // For now, we'll just verify the API compiles correctly
    println!("API compiles correctly");

    Ok(())
}