You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

328 lines
14KB

  1. # encoding:utf-8
  2. import json
  3. import logging
  4. import os
  5. import pickle
  6. from common.log import logger
  7. # 将所有可用的配置项写在字典里, 请使用小写字母
  8. # 此处的配置值无实际意义,程序不会读取此处的配置,仅用于提示格式,请将配置加入到config.json中
  9. available_setting = {
  10. # openai api配置
  11. "open_ai_api_key": "", # openai api key
  12. # openai apibase,当use_azure_chatgpt为true时,需要设置对应的api base
  13. "open_ai_api_base": "https://api.openai.com/v1",
  14. "proxy": "", # openai使用的代理
  15. # chatgpt模型, 当use_azure_chatgpt为true时,其名称为Azure上model deployment名称
  16. "model": "gpt-3.5-turbo", # 还支持 gpt-4, gpt-4-turbo, wenxin, xunfei, qwen
  17. "use_azure_chatgpt": False, # 是否使用azure的chatgpt
  18. "azure_deployment_id": "", # azure 模型部署名称
  19. "azure_api_version": "", # azure api版本
  20. # Bot触发配置
  21. "single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复
  22. "single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人
  23. "single_chat_reply_suffix": "", # 私聊时自动回复的后缀,\n 可以换行
  24. "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复
  25. "group_chat_reply_prefix": "", # 群聊时自动回复的前缀
  26. "group_chat_reply_suffix": "", # 群聊时自动回复的后缀,\n 可以换行
  27. "group_chat_keyword": [], # 群聊时包含该关键词则会触发机器人回复
  28. "group_at_off": False, # 是否关闭群聊时@bot的触发
  29. "group_name_white_list": ["ChatGPT测试群", "ChatGPT测试群2"], # 开启自动回复的群名称列表
  30. "group_name_keyword_white_list": [], # 开启自动回复的群名称关键词列表
  31. "group_chat_in_one_session": ["ChatGPT测试群"], # 支持会话上下文共享的群名称
  32. "nick_name_black_list": [], # 用户昵称黑名单
  33. "group_welcome_msg": "", # 配置新人进群固定欢迎语,不配置则使用随机风格欢迎
  34. "trigger_by_self": False, # 是否允许机器人触发
  35. "text_to_image": "dall-e-2", # 图片生成模型,可选 dall-e-2, dall-e-3
  36. # Azure OpenAI dall-e-3 配置
  37. "dalle3_image_style": "vivid", # 图片生成dalle3的风格,可选有 vivid, natural
  38. "dalle3_image_quality": "hd", # 图片生成dalle3的质量,可选有 standard, hd
  39. # Azure OpenAI DALL-E API 配置, 当use_azure_chatgpt为true时,用于将文字回复的资源和Dall-E的资源分开.
  40. "azure_openai_dalle_api_base": "", # [可选] azure openai 用于回复图片的资源 endpoint,默认使用 open_ai_api_base
  41. "azure_openai_dalle_api_key": "", # [可选] azure openai 用于回复图片的资源 key,默认使用 open_ai_api_key
  42. "azure_openai_dalle_deployment_id":"", # [可选] azure openai 用于回复图片的资源 deployment id,默认使用 text_to_image
  43. "image_proxy": True, # 是否需要图片代理,国内访问LinkAI时需要
  44. "image_create_prefix": ["画", "看", "找"], # 开启图片回复的前缀
  45. "concurrency_in_session": 1, # 同一会话最多有多少条消息在处理中,大于1可能乱序
  46. "image_create_size": "256x256", # 图片大小,可选有 256x256, 512x512, 1024x1024 (dall-e-3默认为1024x1024)
  47. "group_chat_exit_group": False,
  48. # chatgpt会话参数
  49. "expires_in_seconds": 3600, # 无操作会话的过期时间
  50. # 人格描述
  51. "character_desc": "你是ChatGPT, 一个由OpenAI训练的大型语言模型, 你旨在回答并解决人们的任何问题,并且可以使用多种语言与人交流。",
  52. "conversation_max_tokens": 1000, # 支持上下文记忆的最多字符数
  53. # chatgpt限流配置
  54. "rate_limit_chatgpt": 20, # chatgpt的调用频率限制
  55. "rate_limit_dalle": 50, # openai dalle的调用频率限制
  56. # chatgpt api参数 参考https://platform.openai.com/docs/api-reference/chat/create
  57. "temperature": 0.9,
  58. "top_p": 1,
  59. "frequency_penalty": 0,
  60. "presence_penalty": 0,
  61. "request_timeout": 180, # chatgpt请求超时时间,openai接口默认设置为600,对于难问题一般需要较长时间
  62. "timeout": 120, # chatgpt重试超时时间,在这个时间内,将会自动重试
  63. # Baidu 文心一言参数
  64. "baidu_wenxin_model": "eb-instant", # 默认使用ERNIE-Bot-turbo模型
  65. "baidu_wenxin_api_key": "", # Baidu api key
  66. "baidu_wenxin_secret_key": "", # Baidu secret key
  67. # 讯飞星火API
  68. "xunfei_app_id": "", # 讯飞应用ID
  69. "xunfei_api_key": "", # 讯飞 API key
  70. "xunfei_api_secret": "", # 讯飞 API secret
  71. # claude 配置
  72. "claude_api_cookie": "",
  73. "claude_uuid": "",
  74. # claude api key
  75. "claude_api_key":"",
  76. # 通义千问API, 获取方式查看文档 https://help.aliyun.com/document_detail/2587494.html
  77. "qwen_access_key_id": "",
  78. "qwen_access_key_secret": "",
  79. "qwen_agent_key": "",
  80. "qwen_app_id": "",
  81. "qwen_node_id": "", # 流程编排模型用到的id,如果没有用到qwen_node_id,请务必保持为空字符串
  82. # 阿里灵积模型api key
  83. "dashscope_api_key": "",
  84. # Google Gemini Api Key
  85. "gemini_api_key": "",
  86. # wework的通用配置
  87. "wework_smart": True, # 配置wework是否使用已登录的企业微信,False为多开
  88. # 语音设置
  89. "speech_recognition": True, # 是否开启语音识别
  90. "group_speech_recognition": False, # 是否开启群组语音识别
  91. "voice_reply_voice": False, # 是否使用语音回复语音,需要设置对应语音合成引擎的api key
  92. "always_reply_voice": False, # 是否一直使用语音回复
  93. "voice_to_text": "openai", # 语音识别引擎,支持openai,baidu,google,azure
  94. "text_to_voice": "openai", # 语音合成引擎,支持openai,baidu,google,pytts(offline),azure,elevenlabs,edge(online)
  95. "text_to_voice_model": "tts-1",
  96. "tts_voice_id": "alloy",
  97. # baidu 语音api配置, 使用百度语音识别和语音合成时需要
  98. "baidu_app_id": "",
  99. "baidu_api_key": "",
  100. "baidu_secret_key": "",
  101. # 1536普通话(支持简单的英文识别) 1737英语 1637粤语 1837四川话 1936普通话远场
  102. "baidu_dev_pid": 1536,
  103. # azure 语音api配置, 使用azure语音识别和语音合成时需要
  104. "azure_voice_api_key": "",
  105. "azure_voice_region": "japaneast",
  106. # elevenlabs 语音api配置
  107. "xi_api_key": "", #获取ap的方法可以参考https://docs.elevenlabs.io/api-reference/quick-start/authentication
  108. "xi_voice_id": "", #ElevenLabs提供了9种英式、美式等英语发音id,分别是“Adam/Antoni/Arnold/Bella/Domi/Elli/Josh/Rachel/Sam”
  109. # 服务时间限制,目前支持itchat
  110. "chat_time_module": False, # 是否开启服务时间限制
  111. "chat_start_time": "00:00", # 服务开始时间
  112. "chat_stop_time": "24:00", # 服务结束时间
  113. # 翻译api
  114. "translate": "baidu", # 翻译api,支持baidu
  115. # baidu翻译api的配置
  116. "baidu_translate_app_id": "", # 百度翻译api的appid
  117. "baidu_translate_app_key": "", # 百度翻译api的秘钥
  118. # itchat的配置
  119. "hot_reload": False, # 是否开启热重载
  120. # wechaty的配置
  121. "wechaty_puppet_service_token": "", # wechaty的token
  122. # wechatmp的配置
  123. "wechatmp_token": "", # 微信公众平台的Token
  124. "wechatmp_port": 8080, # 微信公众平台的端口,需要端口转发到80或443
  125. "wechatmp_app_id": "", # 微信公众平台的appID
  126. "wechatmp_app_secret": "", # 微信公众平台的appsecret
  127. "wechatmp_aes_key": "", # 微信公众平台的EncodingAESKey,加密模式需要
  128. # wechatcom的通用配置
  129. "wechatcom_corp_id": "", # 企业微信公司的corpID
  130. # wechatcomapp的配置
  131. "wechatcomapp_token": "", # 企业微信app的token
  132. "wechatcomapp_port": 9898, # 企业微信app的服务端口,不需要端口转发
  133. "wechatcomapp_secret": "", # 企业微信app的secret
  134. "wechatcomapp_agent_id": "", # 企业微信app的agent_id
  135. "wechatcomapp_aes_key": "", # 企业微信app的aes_key
  136. # 飞书配置
  137. "feishu_port": 80, # 飞书bot监听端口
  138. "feishu_app_id": "", # 飞书机器人应用APP Id
  139. "feishu_app_secret": "", # 飞书机器人APP secret
  140. "feishu_token": "", # 飞书 verification token
  141. "feishu_bot_name": "", # 飞书机器人的名字
  142. # 钉钉配置
  143. "dingtalk_client_id": "", # 钉钉机器人Client ID
  144. "dingtalk_client_secret": "", # 钉钉机器人Client Secret
  145. # chatgpt指令自定义触发词
  146. "clear_memory_commands": ["#清除记忆"], # 重置会话指令,必须以#开头
  147. # channel配置
  148. "channel_type": "wx", # 通道类型,支持:{wx,wxy,terminal,wechatmp,wechatmp_service,wechatcom_app}
  149. "subscribe_msg": "", # 订阅消息, 支持: wechatmp, wechatmp_service, wechatcom_app
  150. "debug": False, # 是否开启debug模式,开启后会打印更多日志
  151. "appdata_dir": "", # 数据目录
  152. # 插件配置
  153. "plugin_trigger_prefix": "$", # 规范插件提供聊天相关指令的前缀,建议不要和管理员指令前缀"#"冲突
  154. # 是否使用全局插件配置
  155. "use_global_plugin_config": False,
  156. "max_media_send_count": 3, # 单次最大发送媒体资源的个数
  157. "media_send_interval": 1, # 发送图片的事件间隔,单位秒
  158. # 智谱AI 平台配置
  159. "zhipu_ai_api_key": "",
  160. "zhipu_ai_api_base": "https://open.bigmodel.cn/api/paas/v4",
  161. "moonshot_api_key": "",
  162. "moonshot_base_url":"https://api.moonshot.cn/v1/chat/completions",
  163. # LinkAI平台配置
  164. "use_linkai": False,
  165. "linkai_api_key": "",
  166. "linkai_app_code": "",
  167. "linkai_api_base": "https://api.link-ai.tech", # linkAI服务地址
  168. }
  169. class Config(dict):
  170. def __init__(self, d=None):
  171. super().__init__()
  172. if d is None:
  173. d = {}
  174. for k, v in d.items():
  175. self[k] = v
  176. # user_datas: 用户数据,key为用户名,value为用户数据,也是dict
  177. self.user_datas = {}
  178. def __getitem__(self, key):
  179. if key not in available_setting:
  180. raise Exception("key {} not in available_setting".format(key))
  181. return super().__getitem__(key)
  182. def __setitem__(self, key, value):
  183. if key not in available_setting:
  184. raise Exception("key {} not in available_setting".format(key))
  185. return super().__setitem__(key, value)
  186. def get(self, key, default=None):
  187. try:
  188. return self[key]
  189. except KeyError as e:
  190. return default
  191. except Exception as e:
  192. raise e
  193. # Make sure to return a dictionary to ensure atomic
  194. def get_user_data(self, user) -> dict:
  195. if self.user_datas.get(user) is None:
  196. self.user_datas[user] = {}
  197. return self.user_datas[user]
  198. def load_user_datas(self):
  199. try:
  200. with open(os.path.join(get_appdata_dir(), "user_datas.pkl"), "rb") as f:
  201. self.user_datas = pickle.load(f)
  202. logger.info("[Config] User datas loaded.")
  203. except FileNotFoundError as e:
  204. logger.info("[Config] User datas file not found, ignore.")
  205. except Exception as e:
  206. logger.info("[Config] User datas error: {}".format(e))
  207. self.user_datas = {}
  208. def save_user_datas(self):
  209. try:
  210. with open(os.path.join(get_appdata_dir(), "user_datas.pkl"), "wb") as f:
  211. pickle.dump(self.user_datas, f)
  212. logger.info("[Config] User datas saved.")
  213. except Exception as e:
  214. logger.info("[Config] User datas error: {}".format(e))
  215. config = Config()
  216. def load_config():
  217. global config
  218. config_path = "./config.json"
  219. if not os.path.exists(config_path):
  220. logger.info("配置文件不存在,将使用config-template.json模板")
  221. config_path = "./config-template.json"
  222. config_str = read_file(config_path)
  223. logger.debug("[INIT] config str: {}".format(config_str))
  224. # 将json字符串反序列化为dict类型
  225. config = Config(json.loads(config_str))
  226. # override config with environment variables.
  227. # Some online deployment platforms (e.g. Railway) deploy project from github directly. So you shouldn't put your secrets like api key in a config file, instead use environment variables to override the default config.
  228. for name, value in os.environ.items():
  229. name = name.lower()
  230. if name in available_setting:
  231. logger.info("[INIT] override config by environ args: {}={}".format(name, value))
  232. try:
  233. config[name] = eval(value)
  234. except:
  235. if value == "false":
  236. config[name] = False
  237. elif value == "true":
  238. config[name] = True
  239. else:
  240. config[name] = value
  241. if config.get("debug", False):
  242. logger.setLevel(logging.DEBUG)
  243. logger.debug("[INIT] set log level to DEBUG")
  244. logger.info("[INIT] load config: {}".format(config))
  245. config.load_user_datas()
  246. def get_root():
  247. return os.path.dirname(os.path.abspath(__file__))
  248. def read_file(path):
  249. with open(path, mode="r", encoding="utf-8") as f:
  250. return f.read()
  251. def conf():
  252. return config
  253. def get_appdata_dir():
  254. data_path = os.path.join(get_root(), conf().get("appdata_dir", ""))
  255. if not os.path.exists(data_path):
  256. logger.info("[INIT] data path not exists, create it: {}".format(data_path))
  257. os.makedirs(data_path)
  258. return data_path
  259. def subscribe_msg():
  260. trigger_prefix = conf().get("single_chat_prefix", [""])[0]
  261. msg = conf().get("subscribe_msg", "")
  262. return msg.format(trigger_prefix=trigger_prefix)
  263. # global plugin config
  264. plugin_config = {}
  265. def write_plugin_config(pconf: dict):
  266. """
  267. 写入插件全局配置
  268. :param pconf: 全量插件配置
  269. """
  270. global plugin_config
  271. for k in pconf:
  272. plugin_config[k.lower()] = pconf[k]
  273. def pconf(plugin_name: str) -> dict:
  274. """
  275. 根据插件名称获取配置
  276. :param plugin_name: 插件名称
  277. :return: 该插件的配置项
  278. """
  279. return plugin_config.get(plugin_name.lower())
  280. # 全局配置,用于存放全局生效的状态
  281. global_config = {
  282. "admin_users": []
  283. }