We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7acc150 + 9110841 commit c9e1ad7Copy full SHA for c9e1ad7
1 file changed
src/lib/providers/model-settings.ts
@@ -73,6 +73,12 @@ export function getModelVariants(model: string): OpenCodeSettings['variants'] {
73
high: { reasoning: { enabled: true, effort: 'high' } },
74
};
75
}
76
+ if (model.startsWith('x-ai/grok-4')) {
77
+ return {
78
+ 'non-reasoning': { reasoning: { enabled: false } },
79
+ reasoning: { reasoning: { enabled: true } },
80
+ };
81
+ }
82
return undefined;
83
84
0 commit comments