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 69a7825 commit c0d0e13Copy full SHA for c0d0e13
src/api/providers/openai.ts
@@ -95,6 +95,8 @@ export class OpenAiHandler extends BaseProvider implements SingleCompletionHandl
95
const ark = modelUrl.includes(".volces.com")
96
97
// Check if this is GLM-4.6 model with reasoning support
98
+ // GLM-4.6 uses the 'thinking' parameter instead of 'reasoning_effort' for enabling reasoning
99
+ // This is a vendor-specific implementation detail for Z AI's GLM models
100
const isGLM46WithReasoning =
101
modelId.includes("glm-4.6") &&
102
this.options.enableReasoningEffort &&
0 commit comments