Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

LLama.cpp rust bindings

License

NotificationsYou must be signed in to change notification settings

mdrokz/rust-llama.cpp

Repository files navigation

DocsCrates.io

LLama.cpp rust bindings.

The rust bindings are mostly based onhttps://github.com/go-skynet/go-llama.cpp/

Building Locally

Note: This repository uses git submodules to keep track ofLLama.cpp.

Clone the repository locally:

git clone --recurse-submodules https://github.com/mdrokz/rust-llama.cpp
cargo build

Usage

[dependencies]llama_cpp_rs ="0.3.0"
use llama_cpp_rs::{    options::{ModelOptions,PredictOptions},LLama,};fnmain(){let model_options =ModelOptions::default();let llama =LLama::new("../wizard-vicuna-13B.ggmlv3.q4_0.bin".into(),&model_options,).unwrap();let predict_options =PredictOptions{token_callback:Some(Box::new(|token|{println!("token1: {}", token);true})),        ..Default::default()};    llama.predict("what are the national animals of india".into(),             predict_options,).unwrap();}

Examples

The examples contain dockerfiles to run them

seeexamples

TODO

  • Implement support for cublas,openBLAS & OpenCL#7
  • Implement support for GPU (Metal)
  • Add some test cases
  • Support for fetching models through http & S3
  • Sync with latest master & support GGUF
  • Add some proper examples#7

LICENSE

MIT

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp