QChatGPT/config-template.py

27 lines
411 B
Python
Raw Normal View History

2022-12-07 16:48:32 +08:00
mirai_http_api_config = {
"host": "",
"verifyKey": "",
"qq": 0
}
mysql_config = {
"host": "",
"port": 3306,
"user": "",
"password": "",
"database": ""
}
openai_config = {
"api_key": "",
}
completion_api_params = {
2022-12-07 22:27:05 +08:00
"model": "text-davinci-003",
"temperature": 0.9,
"max_tokens": 1024,
"top_p": 1,
"frequency_penalty": 0.4,
"presence_penalty": 0.3,
}