mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-17 11:07:11 +08:00
fix(vision): bump vision timeout from 60s to 180s to avoid premature failures
This commit is contained in:
@@ -643,7 +643,7 @@ class MimoBot(Bot, OpenAICompatibleBot):
|
||||
headers = self._build_headers()
|
||||
resp = requests.post(
|
||||
f"{self.api_base}/chat/completions",
|
||||
headers=headers, json=payload, timeout=60,
|
||||
headers=headers, json=payload, timeout=180,
|
||||
)
|
||||
if resp.status_code != 200:
|
||||
return {"error": True, "message": f"HTTP {resp.status_code}: {resp.text[:300]}"}
|
||||
|
||||
Reference in New Issue
Block a user