File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1381,11 +1381,11 @@ static void common_chat_parse_gpt_oss(common_chat_msg_parser & builder) {
1381
1381
builder.add_tool_call (name, " " , args);
1382
1382
} else if (auto res = builder.try_consume_regex (browser_tool_call_regex)) {
1383
1383
auto code = builder.consume_rest ();
1384
- LOG_DBG (" builtin tool call to python code: %s" , code.c_str ());
1384
+ LOG_INF (" builtin tool call to python code: %s" , code.c_str ());
1385
1385
} else if (auto res = builder.try_consume_regex (python_tool_call_regex)) {
1386
1386
auto name = builder.str (res->groups [0 ]);
1387
1387
auto args = builder.consume_rest ();
1388
- LOG_DBG (" builtin tool call to browser.%s %s" , name.c_str (), args.c_str ());
1388
+ LOG_INF (" builtin tool call to browser.%s %s" , name.c_str (), args.c_str ());
1389
1389
} else {
1390
1390
throw common_chat_msg_parse_exception (" expected function call, got: " + consume_until_start ());
1391
1391
}
You can’t perform that action at this time.
0 commit comments