We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
llama_add_bos_token
1 parent 8bbf093 commit 409e2d3Copy full SHA for 409e2d3
Makefile
@@ -8,7 +8,7 @@ DETECT_LIBS?=true
8
# llama.cpp versions
9
GOLLAMA_REPO?=https://github.com/go-skynet/go-llama.cpp
10
GOLLAMA_VERSION?=2b57a8ae43e4699d3dc5d1496a1ccd42922993be
11
-CPPLLAMA_VERSION?=5fd89a70ead34d1a17015ddecad05aaa2490ca46
+CPPLLAMA_VERSION?=4b9afbbe9037f8a2d659097c0c7d9fce32c6494c
12
13
# go-rwkv version
14
RWKV_REPO?=https://github.com/donomii/go-rwkv.cpp
backend/cpp/llama/grpc-server.cpp
@@ -480,7 +480,7 @@ struct llama_server_context
480
481
n_ctx = llama_n_ctx(ctx);
482
483
- add_bos_token = llama_should_add_bos_token(model);
+ add_bos_token = llama_add_bos_token(model);
484
485
return true;
486
}
0 commit comments