From: Daniel Bevenius Date: Tue, 6 Aug 2024 14:44:35 +0000 (+0200) Subject: simple : update name of executable to llama-simple (#8885) X-Git-Tag: upstream/0.0.4488~954 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=5f4dcb1e60bbfe936b45778dad177a5b9a09b066;p=pkg%2Fggml%2Fsources%2Fllama.cpp 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`. --- diff --git a/examples/simple/README.md b/examples/simple/README.md index 49e24501..0ff34253 100644 --- a/examples/simple/README.md +++ b/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" ...