Преглед изворни кода

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 пре 1 година
родитељ
комит
5f4dcb1e60
1 измењених фајлова са 1 додато и 1 уклоњено
  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"
 
 ...