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.

188 lines
7.1KB

  1. # encoding:utf-8
  2. import json
  3. import os
  4. from common.log import logger
  5. import pickle
  6. # 将所有可用的配置项写在字典里, 请使用小写字母
  7. available_setting = {
  8. # openai api配置
  9. "open_ai_api_key": "", # openai api key
  10. # openai apibase,当use_azure_chatgpt为true时,需要设置对应的api base
  11. "open_ai_api_base": "https://api.openai.com/v1",
  12. "proxy": "", # openai使用的代理
  13. # chatgpt模型, 当use_azure_chatgpt为true时,其名称为Azure上model deployment名称
  14. "model": "gpt-3.5-turbo",
  15. "use_azure_chatgpt": False, # 是否使用azure的chatgpt
  16. # Bot触发配置
  17. "single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复
  18. "single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人
  19. "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复
  20. "group_chat_reply_prefix": "", # 群聊时自动回复的前缀
  21. "group_chat_keyword": [], # 群聊时包含该关键词则会触发机器人回复
  22. "group_at_off": False, # 是否关闭群聊时@bot的触发
  23. "group_name_white_list": ["ChatGPT测试群", "ChatGPT测试群2"], # 开启自动回复的群名称列表
  24. "group_name_keyword_white_list": [], # 开启自动回复的群名称关键词列表
  25. "group_chat_in_one_session": ["ChatGPT测试群"], # 支持会话上下文共享的群名称
  26. "trigger_by_self": False, # 是否允许机器人触发
  27. "image_create_prefix": ["画", "看", "找"], # 开启图片回复的前缀
  28. # chatgpt会话参数
  29. "expires_in_seconds": 3600, # 无操作会话的过期时间
  30. "character_desc": "你是ChatGPT, 一个由OpenAI训练的大型语言模型, 你旨在回答并解决人们的任何问题,并且可以使用多种语言与人交流。", # 人格描述
  31. "conversation_max_tokens": 1000, # 支持上下文记忆的最多字符数
  32. # chatgpt限流配置
  33. "rate_limit_chatgpt": 20, # chatgpt的调用频率限制
  34. "rate_limit_dalle": 50, # openai dalle的调用频率限制
  35. # chatgpt api参数 参考https://platform.openai.com/docs/api-reference/chat/create
  36. "temperature": 0.9,
  37. "top_p": 1,
  38. "frequency_penalty": 0,
  39. "presence_penalty": 0,
  40. # 语音设置
  41. "speech_recognition": False, # 是否开启语音识别
  42. "group_speech_recognition": False, # 是否开启群组语音识别
  43. "voice_reply_voice": False, # 是否使用语音回复语音,需要设置对应语音合成引擎的api key
  44. "always_reply_voice": False, # 是否一直使用语音回复
  45. "voice_to_text": "openai", # 语音识别引擎,支持openai,google,azure
  46. "text_to_voice": "baidu", # 语音合成引擎,支持baidu,google,pytts(offline),azure
  47. # baidu 语音api配置, 使用百度语音识别和语音合成时需要
  48. "baidu_app_id": "",
  49. "baidu_api_key": "",
  50. "baidu_secret_key": "",
  51. # 1536普通话(支持简单的英文识别) 1737英语 1637粤语 1837四川话 1936普通话远场
  52. "baidu_dev_pid": "1536",
  53. # azure 语音api配置, 使用azure语音识别和语音合成时需要
  54. "azure_voice_api_key": "",
  55. "azure_voice_region": "japaneast",
  56. # 服务时间限制,目前支持itchat
  57. "chat_time_module": False, # 是否开启服务时间限制
  58. "chat_start_time": "00:00", # 服务开始时间
  59. "chat_stop_time": "24:00", # 服务结束时间
  60. # itchat的配置
  61. "hot_reload": False, # 是否开启热重载
  62. # wechaty的配置
  63. "wechaty_puppet_service_token": "", # wechaty的token
  64. # wechatmp的配置
  65. "wechatmp_token": "", # 微信公众平台的Token
  66. # chatgpt指令自定义触发词
  67. "clear_memory_commands": ['#清除记忆'], # 重置会话指令
  68. # channel配置
  69. "channel_type": "wx", # 通道类型,支持:{wx,wxy,terminal,wechatmp}
  70. }
  71. class Config(dict):
  72. def __init__(self, d:dict={}):
  73. super().__init__(d)
  74. # user_datas: 用户数据,key为用户名,value为用户数据,也是dict
  75. self.user_datas = {}
  76. def __getitem__(self, key):
  77. if key not in available_setting:
  78. raise Exception("key {} not in available_setting".format(key))
  79. return super().__getitem__(key)
  80. def __setitem__(self, key, value):
  81. if key not in available_setting:
  82. raise Exception("key {} not in available_setting".format(key))
  83. return super().__setitem__(key, value)
  84. def get(self, key, default=None):
  85. try:
  86. return self[key]
  87. except KeyError as e:
  88. return default
  89. except Exception as e:
  90. raise e
  91. # Make sure to return a dictionary to ensure atomic
  92. def get_user_data(self, user) -> dict:
  93. if self.user_datas.get(user) is None:
  94. self.user_datas[user] = {}
  95. return self.user_datas[user]
  96. def load_user_datas(self):
  97. try:
  98. with open('user_datas.pkl', 'rb') as f:
  99. self.user_datas = pickle.load(f)
  100. logger.info("[Config] User datas loaded.")
  101. except FileNotFoundError as e:
  102. logger.info("[Config] User datas file not found, ignore.")
  103. except Exception as e:
  104. logger.info("[Config] User datas error: {}".format(e))
  105. self.user_datas = {}
  106. def save_user_datas(self):
  107. try:
  108. with open('user_datas.pkl', 'wb') as f:
  109. pickle.dump(self.user_datas, f)
  110. logger.info("[Config] User datas saved.")
  111. except Exception as e:
  112. logger.info("[Config] User datas error: {}".format(e))
  113. config = Config()
  114. def load_config():
  115. global config
  116. config_path = "./config.json"
  117. if not os.path.exists(config_path):
  118. logger.info('配置文件不存在,将使用config-template.json模板')
  119. config_path = "./config-template.json"
  120. config_str = read_file(config_path)
  121. logger.debug("[INIT] config str: {}".format(config_str))
  122. # 将json字符串反序列化为dict类型
  123. config = Config(json.loads(config_str))
  124. # override config with environment variables.
  125. # 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.
  126. for name, value in os.environ.items():
  127. name = name.lower()
  128. if name in available_setting:
  129. logger.info(
  130. "[INIT] override config by environ args: {}={}".format(name, value))
  131. try:
  132. config[name] = eval(value)
  133. except:
  134. if value == "false":
  135. config[name] = False
  136. elif value == "true":
  137. config[name] = True
  138. else:
  139. config[name] = value
  140. logger.info("[INIT] load config: {}".format(config))
  141. config.load_user_datas()
  142. def get_root():
  143. return os.path.dirname(os.path.abspath(__file__))
  144. def read_file(path):
  145. with open(path, mode='r', encoding='utf-8') as f:
  146. return f.read()
  147. def conf():
  148. return config