Crates.io | llama-cpp-4 |
lib.rs | llama-cpp-4 |
version | 0.1.85 |
source | src |
created_at | 2024-10-27 23:00:10.867498 |
updated_at | 2024-11-08 18:56:52.533738 |
description | llama.cpp bindings for Rust |
homepage | |
repository | https://github.com/eugenehp/llama-cpp-rs/tree/v4 |
max_upload_size | |
id | 1425095 |
size | 144,767 |
A wrapper around the llama-cpp library for rust, including new Sampler API from llama-cpp.
It is tightly coupled llama.cpp and mimics its API as closly as possible while being safe in order to stay up to date, including the new Sampler API.
This uses bindgen to build the bindings to llama.cpp. This means that you need to have clang installed on your system.
If this is a problem for you, open an issue, and we can look into including the bindings.
See bindgen for more information.
This crate is not safe. There is absolutly ways to misuse the llama.cpp API provided to create UB, please create an issue if you spot one. Do not use this code for tasks where UB is not acceptable.
This is not a simple library to use. In an ideal world a nice abstraction would be written on top of this crate to provide an ergonomic API - the benefits of this crate over raw bindings is safety (and not much of it as that) and not much else.
We compensate for this shortcoming (we hope) by providing lots of examples and good documentation. Testing is a work in progress.
Contributions are welcome. Please open an issue before starting work on a non-trivial PR.