ollama-rs 0.3.5

A Rust library for interacting with the Ollama API
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Modules related to generation tasks.
///
/// This file aggregates various submodules that handle different aspects
/// of generation tasks, including chat, completion, embeddings, images,
/// options, parameters, and tools.
pub mod chat;
pub mod completion;
pub mod embeddings;
pub mod images;
pub mod parameters;
pub mod tools;