From a28d9befbc4b3ee1e8cde7ea20877f35193a69c5 Mon Sep 17 00:00:00 2001 From: ochafik Date: Sun, 2 Feb 2025 02:06:08 +0000 Subject: [PATCH] rm msg.thoughts (that's for later / R1) --- common/common.h | 1 - tests/test-chat.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/common/common.h b/common/common.h index 858d2807e..b208d0c7e 100644 --- a/common/common.h +++ b/common/common.h @@ -623,7 +623,6 @@ struct common_chat_msg { std::string role; std::string content; std::vector tool_calls; - std::string thoughts = ""; std::string tool_plan = ""; }; diff --git a/tests/test-chat.cpp b/tests/test-chat.cpp index 2c20b437a..9956c1f1f 100644 --- a/tests/test-chat.cpp +++ b/tests/test-chat.cpp @@ -22,7 +22,6 @@ static common_chat_msg msg_from_json(const json & message) { "assistant", "", {}, - /* .thoughts = */ "", /* .tool_plan = */ "", }; if (message.contains("content") && !message.at("content").is_null()) {