From 6afbe640f29264fc6bd3ec1b0a3be4613efc31a1 Mon Sep 17 00:00:00 2001 From: Repinoid Date: Tue, 26 May 2026 21:24:20 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20DEEPSEEK=5FBASE=20=E2=86=92=20DEFAULT=5F?= =?UTF-8?q?BASE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- elmer/diagnose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elmer/diagnose.py b/elmer/diagnose.py index 150f7ed..bbc90c5 100644 --- a/elmer/diagnose.py +++ b/elmer/diagnose.py @@ -9,7 +9,7 @@ DEFAULT_MODEL = "gpt-oss-20b" class Diagnoser: """Отправляет данные в DeepSeek и возвращает диагноз.""" - def __init__(self, api_key: str, model: str = DEFAULT_MODEL, base_url: str = DEEPSEEK_BASE): + def __init__(self, api_key: str, model: str = DEFAULT_MODEL, base_url: str = DEFAULT_BASE): self.api_key = api_key self.model = model self.base_url = base_url.rstrip("/")