refactor: Delete src/utils/model-utils.ts

This commit is contained in:
Hannes Rudolph 2025-11-19 18:08:53 -07:00
parent b8b6ddc14b
commit b150cd4f44

View file

@ -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")
}