From 3912dff1124712537aaeb8b8da8f1a3ae9ba3f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 14 Jun 2026 17:13:12 +0400 Subject: [PATCH] =?UTF-8?q?fix(llm):=20verify=3DFalse=20=E2=80=94=20=D1=81?= =?UTF-8?q?=D0=B5=D1=80=D1=82=D0=B8=D1=84=D0=B8=D0=BA=D0=B0=D1=82=20aillm.?= =?UTF-8?q?ru=20=D0=B8=D1=81=D1=82=D1=91=D0=BA=20Jun=2014=2007:00=20GMT?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit notAfter=Jun 14 07:00:43 2026 GMT (сегодня утром) --- site/llm_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/llm_client.py b/site/llm_client.py index 98672e3..d641e21 100644 --- a/site/llm_client.py +++ b/site/llm_client.py @@ -49,7 +49,7 @@ def ask(prompt: str, model: str = None, max_tokens: int = 8000) -> dict: } try: - with httpx.Client(http2=True, timeout=120) as client: + with httpx.Client(http2=True, timeout=120, verify=False) as client: resp = client.post(api_url, json=payload, headers=headers) resp.raise_for_status() data = resp.json()