Explorar o código

simple : update name of executable to llama-simple (#8885)

This commit updates the name of the executable in README.md from
`simple` to `llama-simple`.
Daniel Bevenius hai 1 ano
pai
achega
5f4dcb1e60
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/simple/README.md

+ 1 - 1
examples/simple/README.md

@@ -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"
 
 ...