Update predict.py

这个提交包含在:
binary-husky
2023-03-21 21:24:38 +08:00
提交者 GitHub
父节点 8ce9266733
当前提交 0382ae2c72

查看文件

@@ -89,7 +89,7 @@ def predict(inputs, top_p, temperature, chatbot=[], history=[], system_prompt=''
response = requests.post(API_URL, headers=headers, proxies=proxies,
json=payload, stream=True, timeout=15)
except:
chatbot[-1] = ((chatbot[-1][0], 'Requests Timeout, Network Error.'))
chatbot[-1] = ((chatbot[-1][0], 'Request timeout, network error. please check proxy settings in config.py.'))
yield chatbot, history, "Requests Timeout"
raise TimeoutError