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.
1 parent b829cab commit 95cddfdCopy full SHA for 95cddfd
common/chat.cpp
@@ -282,9 +282,6 @@ static common_chat_msg common_chat_parse_generic(const std::string & input) {
282
json data = json::parse(input);
283
common_chat_msg result;
284
result.role = "assistant";
285
- if (data.contains("thoughts")) {
286
- result.reasoning_content = data["thoughts"];
287
- }
288
if (data.contains("tool_calls")) {
289
for (const auto & tool_call : data["tool_calls"]) {
290
result.tool_calls.push_back({
0 commit comments