This commit is contained in:
Tianyu Zhang 2026-01-30 16:43:11 +01:00 committed by GitHub
commit d8c59080dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,10 +25,11 @@ export function isReasoningTagProvider(provider: string | undefined | null): boo
return true; return true;
} }
// Handle Minimax (M2.1 is chatty/reasoning-like) // NOTE: MiniMax was previously included here but removed because:
if (normalized.includes("minimax")) { // 1. MiniMax models don't reliably output <think>/<final> tags
return true; // 2. enforceFinalTag=true causes all content to be stripped → "(no output)"
} // 3. MiniMax's reasoning is handled differently (not via text stream tags)
// See: https://github.com/openclaw/openclaw/issues/4499
return false; return false;
} }