Skip to content

Commit

Permalink
docs: update llm-chain-llama-sys README.md
Browse files Browse the repository at this point in the history
This commit updates the README.md file for the llm-chain-llama-sys crate
to reflect the correct name of the crate.

The motivation for this is that the readme on crates.io might be confusing
at the moment:
https://crates.io/crates/llm-chain-llama-sys

Signed-off-by: Daniel Bevenius <[email protected]>
  • Loading branch information
danbev committed Feb 27, 2024
1 parent bb57935 commit 450faf8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/llm-chain-llama-sys/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# llama-sys
# llm-chain-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:
llm-chain-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 llm-chain-llama-sys, simply add the following to your Cargo.toml file:

```toml
[dependencies]
llama-sys = "0.1.0"
llm-chain-llama-sys = "0.1.0"
```

```rust
use llama_sys::\*;
use llm-chain-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.
Note that llm-chain-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, llm-chain-llama-sys is the way to go.

## Updating llama.cpp submodule
To update the llama.cpp submodule, run the following command:
Expand Down

0 comments on commit 450faf8

Please sign in to comment.