feat: increase read timeout of OpenAI Compatible API, Ollama, Nvidia LLM (#3538)

This commit is contained in:
takatost 2024-04-17 09:25:50 +08:00 committed by GitHub
parent 38ca3b29b5
commit 9b8861e3e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View File

@ -131,7 +131,7 @@ class NVIDIALargeLanguageModel(OAIAPICompatLargeLanguageModel):
endpoint_url, endpoint_url,
headers=headers, headers=headers,
json=data, json=data,
timeout=(10, 60) timeout=(10, 300)
) )
if response.status_code != 200: if response.status_code != 200:
@ -232,7 +232,7 @@ class NVIDIALargeLanguageModel(OAIAPICompatLargeLanguageModel):
endpoint_url, endpoint_url,
headers=headers, headers=headers,
json=data, json=data,
timeout=(10, 60), timeout=(10, 300),
stream=stream stream=stream
) )

View File

@ -201,7 +201,7 @@ class OllamaLargeLanguageModel(LargeLanguageModel):
endpoint_url, endpoint_url,
headers=headers, headers=headers,
json=data, json=data,
timeout=(10, 60), timeout=(10, 300),
stream=stream stream=stream
) )

View File

@ -138,7 +138,7 @@ class OAIAPICompatLargeLanguageModel(_CommonOAI_API_Compat, LargeLanguageModel):
endpoint_url, endpoint_url,
headers=headers, headers=headers,
json=data, json=data,
timeout=(10, 60) timeout=(10, 300)
) )
if response.status_code != 200: if response.status_code != 200:
@ -334,7 +334,7 @@ class OAIAPICompatLargeLanguageModel(_CommonOAI_API_Compat, LargeLanguageModel):
endpoint_url, endpoint_url,
headers=headers, headers=headers,
json=data, json=data,
timeout=(10, 60), timeout=(10, 300),
stream=stream stream=stream
) )