fix(minecraft): remove hardcoded return in isCerebrasBaseURL that prevented reasoning from being sent to all LLM providers

This commit is contained in:
Rin
2026-02-18 11:14:44 +08:00
committed by Neko Ayaka
parent fdb0d26b4d
commit 2202154b1d
@@ -27,7 +27,6 @@ export class LLMAgent {
constructor(private config: LLMConfig) { }
private isCerebrasBaseURL(baseURL: string): boolean {
return true // TODO: REMOVE ME
const normalized = baseURL.toLowerCase()
return normalized.includes('cerebras.ai') || normalized.includes('cerebras.com')
}