BOT- 百度问心一言
{
"model": "wenxin",
"baidu_wenxin_api_key":" ",
"baidu_wenxin_secret_key":" ",
}
bot – 讯飞星火
pip install websocket-client==1.2.0
{
"model": "xunfei",
"xunfei_app_id":" ",
"xunfei_api_key":" ",
"xunfei_api_secret":" "
}
常见错误
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with ‘OpenSSL 1.0.2k-fips 26 Jan 2017’. See: https://github.com/urllib3/urllib3/issues/2168
解决方案
pip uninstall urllib3
pip install urllib3==1.26.15
FileNotFoundError: [Errno 2] No such file or directory: ‘./config-template.json’
app.py 中增加如下代码
os.chdir('/www/wwwroot/chatgpt')
print("切换当前目录:"+os.getcwd())