Skip to content

Commit c3174f9

Browse files
authored
chore(deps): bump llama-cpp to 'a0bbcdd9b6b83eeeda6f1216088f42c33d464e38' (#9079)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
1 parent 2b12875 commit c3174f9

5 files changed

Lines changed: 2 additions & 5 deletions

File tree

backend/backend.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ message ToolFormatMarkers {
472472
string id_field = 16; // e.g., "id"
473473
bool fun_name_is_key = 17;
474474
bool tools_array_wrapped = 18;
475-
bool uses_python_dicts = 19;
475+
reserved 19;
476476

477477
// Reasoning markers
478478
string reasoning_start = 20; // e.g., "<think>"

backend/cpp/llama-cpp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
LLAMA_VERSION?=5744d7ec430e2f875a393770195fda530560773f
2+
LLAMA_VERSION?=a0bbcdd9b6b83eeeda6f1216088f42c33d464e38
33
LLAMA_REPO?=https://github.com/ggerganov/llama.cpp
44

55
CMAKE_ARGS?=

backend/cpp/llama-cpp/grpc-server.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2687,7 +2687,6 @@ class BackendServiceImpl final : public backend::Backend::Service {
26872687
tf->set_id_field(ap.tools.format.id_field);
26882688
tf->set_fun_name_is_key(ap.tools.format.fun_name_is_key);
26892689
tf->set_tools_array_wrapped(ap.tools.format.tools_array_wrapped);
2690-
tf->set_uses_python_dicts(ap.tools.format.uses_python_dicts);
26912690
tf->set_function_field(ap.tools.format.function_field);
26922691

26932692
tf->set_gen_id_field(ap.tools.format.gen_id_field);

core/config/gguf.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ func DetectThinkingSupportFromBackend(ctx context.Context, cfg *ModelConfig, bac
143143
IDField: tf.IdField,
144144
FunNameIsKey: tf.FunNameIsKey,
145145
ToolsArrayWrapped: tf.ToolsArrayWrapped,
146-
UsesPythonDicts: tf.UsesPythonDicts,
147146
FunctionField: tf.FunctionField,
148147
ParameterOrder: tf.ParameterOrder,
149148
GenIDField: tf.GenIdField,

pkg/functions/parse.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ type ToolFormatMarkers struct {
149149
IDField string
150150
FunNameIsKey bool
151151
ToolsArrayWrapped bool
152-
UsesPythonDicts bool
153152
FunctionField string
154153
ParameterOrder []string
155154

0 commit comments

Comments
 (0)