From 5dd06c6dce202e9defa924dcf3cd5a0fb95f386f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 14 Jun 2026 07:53:53 +0400 Subject: [PATCH] =?UTF-8?q?Revert=20"fix(llm):=20DeepSeek=20=D0=BD=D0=B0?= =?UTF-8?q?=D0=BF=D1=80=D1=8F=D0=BC=D1=83=D1=8E=20(api.deepseek.com)=20?= =?UTF-8?q?=D0=B2=D0=BC=D0=B5=D1=81=D1=82=D0=BE=20LiteLLM"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit b6492f2241626f06dc90a1a17e5ac5b70c87ac82. --- site/llm_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/llm_client.py b/site/llm_client.py index c5f4789..98672e3 100644 --- a/site/llm_client.py +++ b/site/llm_client.py @@ -17,8 +17,8 @@ import httpx # ── Конфигурация ──────────────────────────────────────────────── -DEFAULT_URL = "https://api.deepseek.com/v1/chat/completions" -DEFAULT_MODEL = "deepseek-chat" +DEFAULT_URL = "https://api.aillm.ru/v1/chat/completions" +DEFAULT_MODEL = "gpt-oss-120b" def ask(prompt: str, model: str = None, max_tokens: int = 8000) -> dict: