3 releases

0.1.3 Jul 13, 2024
0.1.2 Jul 10, 2024
0.1.1 Jul 10, 2024
0.1.0 Jul 10, 2024

#809 in Machine learning

Download history 128/week @ 2024-07-04 158/week @ 2024-07-11 6/week @ 2024-07-18 3/week @ 2024-07-25

125 downloads per month

MIT license

9KB
121 lines

Kazama

Ollama Client in Rust 🦀

🤖 Rust client library for interacting with the Ollama API, enabling operations like chat completions, model pulls, embeddings generation, model listing, and model pushes.

Features:

  • Chat Completion: chat_completion(model, content, role)
  • Model Pull: pull_model(name, stream_mode)
  • Generate Embeddings: gen_embeddings(model, prompt)
  • List Models: list_models()
  • Push Models: push_models(name, stream_mode)

Usage:

use kazama::{chat_completion, pull_model, gen_embeddings, list_models, push_models};

#[tokio::main]
async fn main() {
    // Example: Chat Completion
    chat_completion("model_name", "Hello!", "user").await.expect("Failed to complete chat");

    // Example: Model Pull
    pull_model("model_name", false).await.expect("Failed to pull model");

    // Example: Generate Embeddings
    gen_embeddings("model_name", "Generate embeddings from this prompt").await.expect("Failed to generate embeddings");

    // Example: List Models
    list_models().await.expect("Failed to list models");

    // Example: Push Models
    push_models("model_name", true).await.expect("Failed to push model");
}

For detailed API documentation, refer here. Acknowledgement for icon: https://www.artstation.com/artwork/n0q6Ye

Dependencies

~6–17MB
~247K SLoC