simple_llama_rs 1.0.3

Rust crate for the Ollama API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Models module for simple_llama_rs
// Contains model options and configuration

mod client;
mod copy_info;
mod delete_info;
mod options;
mod pull_info;

// Re-export types and functions
pub use client::{copy_model, delete_model, pull_model, send_message};
pub use copy_info::CopyInfo;
pub use delete_info::DeleteInfo;
pub use options::ModelOptions;
pub use pull_info::PullInfo;