🚀 Auto-deploy: BotVPS atualizado em 29/04/2026 00:13:07

This commit is contained in:
2026-04-29 00:13:07 +00:00
parent 46808e845f
commit 2a5ed0d715

View File

@@ -34,8 +34,8 @@ LLM_PROVIDERS = {
"openrouter": {
"name": "OpenRouter",
"type": "api",
"models": ["google/gemini-2.0-flash-001", "qwen/qwen-2.5-72b-instruct", "deepseek/deepseek-chat"],
"default": "google/gemini-2.0-flash-001",
"models": ["liquid/lfm-2.5-1.2b-instruct", "google/gemini-2.0-flash-001", "deepseek/deepseek-chat"],
"default": "liquid/lfm-2.5-1.2b-instruct",
"endpoint": "https://openrouter.ai/api/v1"
},
"ollama": {
@@ -55,7 +55,7 @@ def get_orchestrator_config() -> dict:
"""Retorna config do orchestrator."""
cfg = get_config()
return cfg.get("orchestrator", {
"planner": {"provider": "gemini", "model": "gemini-1.5-flash"},
"planner": {"provider": "openrouter", "model": "liquid/lfm-2.5-1.2b-instruct"},
"executor": {"provider": "ollama", "model": "llama3.2:1b"}
})