fix: minimax request timeout (#2185)

pull/2191/head
takatost 2 years ago committed by GitHub
parent 76c52300a2
commit 043517717e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -78,7 +78,7 @@ class MinimaxChatCompletion(object):
try:
response = post(
url=url, data=dumps(body), headers=headers, stream=stream, timeout=10)
url=url, data=dumps(body), headers=headers, stream=stream, timeout=(10, 300))
except Exception as e:
raise InternalServerError(e)

@ -84,7 +84,7 @@ class MinimaxChatCompletionPro(object):
try:
response = post(
url=url, data=dumps(body), headers=headers, stream=stream, timeout=10)
url=url, data=dumps(body), headers=headers, stream=stream, timeout=(10, 300))
except Exception as e:
raise InternalServerError(e)

Loading…
Cancel
Save