chore: смена LLM модели на openrouter/owl-alpha
Some checks are pending
CI / lint-backend (push) Waiting to run
CI / lint-frontend (push) Waiting to run
CI / build-backend (push) Blocked by required conditions
CI / build-frontend (push) Blocked by required conditions

This commit is contained in:
ed0ss 2026-06-25 12:01:06 +03:00
parent 5f6ad253de
commit 4166c6f0ef
2 changed files with 2 additions and 2 deletions

View file

@ -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) |

View file

@ -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"