simple_llama_rs 1.0.0

Rust crate for the Ollama API.
Documentation
1
2
3
4
5
6
7
8
9
// Models module for simple_llama
// Contains model options and configuration

mod client;
mod options;

// Re-export types and functions
pub use client::send_message;
pub use options::ModelOptions;