This commit is contained in:
Ayush Ojha 2026-01-30 17:05:38 +05:30 committed by GitHub
commit 67bd797d54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,11 +12,7 @@ export function isReasoningTagProvider(provider: string | undefined | null): boo
const normalized = provider.trim().toLowerCase(); const normalized = provider.trim().toLowerCase();
// Check for exact matches or known prefixes/substrings for reasoning providers // Check for exact matches or known prefixes/substrings for reasoning providers
if ( if (normalized === "google-gemini-cli" || normalized === "google-generative-ai") {
normalized === "ollama" ||
normalized === "google-gemini-cli" ||
normalized === "google-generative-ai"
) {
return true; return true;
} }