mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 06:55:57 +08:00
fix: minimax request timeout (#2185)
This commit is contained in:
parent
76c52300a2
commit
043517717e
@ -78,7 +78,7 @@ class MinimaxChatCompletion(object):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
response = post(
|
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:
|
except Exception as e:
|
||||||
raise InternalServerError(e)
|
raise InternalServerError(e)
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ class MinimaxChatCompletionPro(object):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
response = post(
|
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:
|
except Exception as e:
|
||||||
raise InternalServerError(e)
|
raise InternalServerError(e)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user