diff --git a/public/index.html b/public/index.html index 20ffc6d0b..703e648a9 100644 --- a/public/index.html +++ b/public/index.html @@ -1983,12 +1983,12 @@ -
+
diff --git a/src/endpoints/backends/chat-completions.js b/src/endpoints/backends/chat-completions.js index 914bf0d28..f9407a9d8 100644 --- a/src/endpoints/backends/chat-completions.js +++ b/src/endpoints/backends/chat-completions.js @@ -288,7 +288,6 @@ async function sendMakerSuiteRequest(request, response) { const model = String(request.body.model); const stream = Boolean(request.body.stream); - const showThoughts = Boolean(request.body.include_reasoning); const isThinking = model.includes('thinking'); const generationConfig = { @@ -337,12 +336,6 @@ async function sendMakerSuiteRequest(request, response) { body.systemInstruction = prompt.system_instruction; } - if (isThinking && showThoughts) { - generationConfig.thinkingConfig = { - includeThoughts: true, - }; - } - return body; }