26 releases (8 breaking)
0.13.0 | Nov 15, 2023 |
---|---|
0.12.3 | Jun 27, 2023 |
0.12.0 | May 31, 2023 |
#913 in Machine learning
80 downloads per month
Used in llm-chain-llama
1MB
22K
SLoC
llama-sys
llama-sys is a set of bindgen generated wrappers for llama.cpp. This crate provides a low-level interface to llama.cpp, allowing you to use it in your Rust projects. To use llama-sys, simply add the following to your Cargo.toml file:
[dependencies]
llama-sys = "0.1.0"
use llama_sys::\*;
Note that llama-sys provides a lower-level interface than llm-chain-llama, and may be more difficult to use. However, if you need fine-grained control over llama.cpp, llama-sys is the way to go.