QChatGPT/config-template.py
2022-12-09 15:43:59 +08:00

59 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import logging
# Mirai的配置
# 请到配置mirai的步骤中的教程查看每个字段的信息
# host: 运行mirai的主机地址
# port: 运行mirai的主机端口
# verifyKey: mirai-api-http的verifyKey
# qq: 机器人的QQ号
mirai_http_api_config = {
"host": "",
"port": 8080,
"verifyKey": "",
"qq": 0
}
# MySQL数据库的配置
# host: 数据库地址
# port: 数据库端口
# user: 数据库用户名
# password: 数据库密码
# database: 数据库名
mysql_config = {
"host": "",
"port": 3306,
"user": "",
"password": "",
"database": ""
}
# OpenAI的配置
# api_key: OpenAI的API Key
openai_config = {
"api_key": "",
}
# OpenAI的completion API的参数
# 不了解的话请不要修改具体请查看OpenAI的文档
completion_api_params = {
"model": "text-davinci-003",
"temperature": 0.8,
"max_tokens": 200,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0.6,
}
# 消息处理的超时时间
process_message_timeout = 20
# 消息处理超时重试次数
retry_times = 3
# 每个会话的过期时间
# 默认值20分钟
session_expire_time = 60 * 20
# 日志级别
logging_level = logging.INFO