summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJared Van Bortel <jared@nomic.ai>2024-03-02 12:27:26 -0500
committerGitHub <noreply@github.com>2024-03-02 12:27:26 -0500
commit4d4d2366fc9c54d4a275065cfe9299c6cf7c5b78 (patch)
tree1701bdbf6e59c802648c509ce1e64ad8ad848f53 /examples
parentc7a0ad8ec9ebb5ddb1c1c80c82f2ee041c525d47 (diff)
convert : automatically fall back to HfVocab if tokenizer.model doesn't exist (#5821)
Diffstat (limited to 'examples')
-rw-r--r--examples/infill/infill.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/infill/infill.cpp b/examples/infill/infill.cpp
index d4b8729d..91c39c5a 100644
--- a/examples/infill/infill.cpp
+++ b/examples/infill/infill.cpp
@@ -378,10 +378,10 @@ int main(int argc, char ** argv) {
if (params.interactive) {
const char *control_message;
if (params.multiline_input) {
- control_message = " - To return control to LLaMa, end your input with '\\'.\n"
+ control_message = " - To return control to LLaMA, end your input with '\\'.\n"
" - To return control without starting a new line, end your input with '/'.\n";
} else {
- control_message = " - Press Return to return control to LLaMa.\n"
+ control_message = " - Press Return to return control to LLaMA.\n"
" - To return control without starting a new line, end your input with '/'.\n"
" - If you want to submit another line, end your input with '\\'.\n";
}