From 4c38a9c467b61b7d2edcdaaf3b2f2d4a0a38d526 Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Wed, 29 Apr 2026 00:04:37 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Auto-deploy:=20BotVPS=20atualiza?= =?UTF-8?q?do=20em=2029/04/2026=2000:04:37?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llm_providers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llm_providers.py b/llm_providers.py index 00a2d12..d88a82e 100644 --- a/llm_providers.py +++ b/llm_providers.py @@ -34,8 +34,8 @@ LLM_PROVIDERS = { "openrouter": { "name": "OpenRouter", "type": "api", - "models": ["qwen/qwen-2.5-72b-instruct", "google/gemini-2.0-flash-001"], - "default": "qwen/qwen-2.5-72b-instruct", + "models": ["google/gemini-2.0-flash-001", "qwen/qwen-2.5-72b-instruct", "deepseek/deepseek-chat"], + "default": "google/gemini-2.0-flash-001", "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": "openrouter", "model": "qwen/qwen-2.5-72b-instruct"}, + "planner": {"provider": "openrouter", "model": "google/gemini-2.0-flash-001"}, "executor": {"provider": "ollama", "model": "llama3.2:1b"} })