fix:kunlun deepseek

This commit is contained in:
gongwenxin
2025-08-13 10:20:15 +08:00
parent 2aa94b6e83
commit ed77da19b6
3 changed files with 920633 additions and 1 deletions
@@ -85,7 +85,7 @@ class LLMService:
logger.debug(f"LLM API Request Payload:\n{json.dumps(payload, indent=2, ensure_ascii=False)}")
try:
response = requests.post(f"{self.base_url}/chat/completions", headers=self.headers, json=payload, timeout=60)
response = requests.post(f"{self.base_url}/chat/completions", headers=self.headers, json=payload, timeout=60,verify=False)
response.raise_for_status() # 如果HTTP状态码表示错误,则抛出异常
response_data = response.json()