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