From 4166c6f0efcafd95b6b5cd3901131e1fe2f0dc94 Mon Sep 17 00:00:00 2001 From: ed0ss Date: Thu, 25 Jun 2026 12:01:06 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20=D1=81=D0=BC=D0=B5=D0=BD=D0=B0=20LLM?= =?UTF-8?q?=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D0=B8=20=D0=BD=D0=B0=20openro?= =?UTF-8?q?uter/owl-alpha?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- backend/app/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c141588..d837284 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ | **Векторная БД** | Qdrant (точки с эмбеддингами) | | **Кэш** | Redis | | **Эмбеддинги** | `nvidia/llama-nemotron-embed-vl-1b-v2:free` через OpenRouter | -| **LLM** | `poolside/laguna-m.1:free` через OpenRouter | +| **LLM** | `openrouter/owl-alpha` через OpenRouter | | **Ingress** | Traefik v3.7 | | **Оркестрация** | Kubernetes (k0s v1.36.1) | | **CI** | GitLab CI (Forgejo) | diff --git a/backend/app/config.py b/backend/app/config.py index 4e71d1a..60b0e7d 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -12,7 +12,7 @@ class Settings(BaseSettings): openrouter_api_key: str = "" openrouter_embedding_model: str = "nvidia/llama-nemotron-embed-vl-1b-v2:free" - openrouter_llm_model: str = "poolside/laguna-m.1:free" + openrouter_llm_model: str = "openrouter/owl-alpha" jwt_secret: str = "change-me-in-production" jwt_algorithm: str = "HS256"