From 2a5ed0d715ea7c70af2e8ac142ba31b6cb88d4f9 Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Wed, 29 Apr 2026 00:13:07 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Auto-deploy:=20BotVPS=20atualiza?= =?UTF-8?q?do=20em=2029/04/2026=2000:13:07?= 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 74af4ba..0c5eef8 100644 --- a/llm_providers.py +++ b/llm_providers.py @@ -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"} })