fix(llm): _LOCAL_OVERRIDES Check fehlte in _route_model — jetzt korrekt eingefuegt

This commit is contained in:
Cursor 2026-03-21 12:22:16 +01:00
parent eac6492fa0
commit 204fe8fe36
2 changed files with 2 additions and 0 deletions

View file

@ -215,6 +215,8 @@ def _route_model(question: str) -> str:
q = question.lower()
if any(t in q for t in _DEEP_TRIGGERS):
return "deep_research"
if any(t in q for t in _LOCAL_OVERRIDES):
return MODEL_LOCAL
if any(t in q for t in _WEB_TRIGGERS):
return MODEL_ONLINE
return MODEL_LOCAL