diff options
Diffstat (limited to 'examples/retrieval/README.md')
-rw-r--r-- | examples/retrieval/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/retrieval/README.md b/examples/retrieval/README.md index 2b2595c4..bc5f22e2 100644 --- a/examples/retrieval/README.md +++ b/examples/retrieval/README.md @@ -15,7 +15,7 @@ https://github.com/ggerganov/llama.cpp/pull/6193 `retrieval` example can be tested as follows: ```bash -make -j && ./retrieval --model ./models/bge-base-en-v1.5-f16.gguf --top-k 3 --context-file README.md --context-file License --chunk-size 100 --chunk-separator . +make -j && ./llama-retrieval --model ./models/bge-base-en-v1.5-f16.gguf --top-k 3 --context-file README.md --context-file License --chunk-size 100 --chunk-separator . ``` This chunks and embeds all given files and starts a loop requesting query inputs: |