From b150cd4f44bc4c3d8322992a79de8cc5091d909b Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Wed, 19 Nov 2025 18:08:53 -0700 Subject: [PATCH] refactor: Delete src/utils/model-utils.ts --- src/utils/model-utils.ts | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/utils/model-utils.ts 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") -}