diff --git a/src/utils/model-utils.ts b/src/utils/model-utils.ts deleted file mode 100644 index fff0ae942e..0000000000 --- a/src/utils/model-utils.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Determines if reasoning content should be skipped for a given model - * Currently skips reasoning for Grok-4 models since they only display "thinking" without useful information - */ -export function shouldSkipReasoningForModel(modelId?: string): boolean { - if (!modelId) { - return false - } - return modelId.includes("grok-4") -}