]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
simple : update name of executable to llama-simple (#8885)
authorDaniel Bevenius <redacted>
Tue, 6 Aug 2024 14:44:35 +0000 (16:44 +0200)
committerGitHub <redacted>
Tue, 6 Aug 2024 14:44:35 +0000 (16:44 +0200)
This commit updates the name of the executable in README.md from
`simple` to `llama-simple`.

examples/simple/README.md

index 49e24501cc02b817affcdfaffe5e82872ebac6ee..0ff3425359a415c70a648e7e882304a22f9a5350 100644 (file)
@@ -3,7 +3,7 @@
 The purpose of this example is to demonstrate a minimal usage of llama.cpp for generating text with a given prompt.
 
 ```bash
-./simple -m ./models/llama-7b-v2/ggml-model-f16.gguf -p "Hello my name is"
+./llama-simple -m ./models/llama-7b-v2/ggml-model-f16.gguf -p "Hello my name is"
 
 ...