revert some excessive changes

This commit is contained in:
Xuan Son Nguyen
2026-08-21 22:56:42 +02:00
parent 03eb25f393
commit 173d7e804e
12 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -7052,7 +7052,7 @@ static void test_reasoning_budget_message_per_request() {
if (!llama_params.contains("reasoning_budget_message")) {
throw std::runtime_error("reasoning_budget_message missing from llama_params (thinking_end_tag may be empty for this template)");
}
std::string got = llama_params["reasoning_budget_message"];
std::string got = llama_params["reasoning_budget_message"].get<std::string>();
if (got != per_request_message) {
throw std::runtime_error("Expected reasoning_budget_message='" + per_request_message + "', got '" + got + "'");
}