Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
pirms 1 gada
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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",
  17. "use_azure_chatgpt": False, # 是否使用azure的chatgpt
  18. "azure_deployment_id": "", # azure 模型部署名称
  19. # Bot触发配置
  20. "single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复
  21. "single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人
  22. "single_chat_reply_suffix": "", # 私聊时自动回复的后缀,\n 可以换行
  23. "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复
  24. "group_chat_reply_prefix": "", # 群聊时自动回复的前缀
  25. "group_chat_reply_suffix": "", # 群聊时自动回复的后缀,\n 可以换行
  26. "group_chat_keyword": [], # 群聊时包含该关键词则会触发机器人回复
  27. "group_at_off": False, # 是否关闭群聊时@bot的触发
  28. "group_name_white_list": ["ChatGPT测试群", "ChatGPT测试群2"], # 开启自动回复的群名称列表
  29. "group_name_keyword_white_list": [], # 开启自动回复的群名称关键词列表
  30. "group_chat_in_one_session": ["ChatGPT测试群"], # 支持会话上下文共享的群名称
  31. "trigger_by_self": False, # 是否允许机器人触发
  32. "image_create_prefix": ["画", "看", "找"], # 开启图片回复的前缀
  33. "concurrency_in_session": 1, # 同一会话最多有多少条消息在处理中,大于1可能乱序
  34. "image_create_size": "256x256", # 图片大小,可选有 256x256, 512x512, 1024x1024
  35. # chatgpt会话参数
  36. "expires_in_seconds": 3600, # 无操作会话的过期时间
  37. "character_desc": "你是ChatGPT, 一个由OpenAI训练的大型语言模型, 你旨在回答并解决人们的任何问题,并且可以使用多种语言与人交流。", # 人格描述
  38. "conversation_max_tokens": 1000, # 支持上下文记忆的最多字符数
  39. # chatgpt限流配置
  40. "rate_limit_chatgpt": 20, # chatgpt的调用频率限制
  41. "rate_limit_dalle": 50, # openai dalle的调用频率限制
  42. # chatgpt api参数 参考https://platform.openai.com/docs/api-reference/chat/create
  43. "temperature": 0.9,
  44. "top_p": 1,
  45. "frequency_penalty": 0,
  46. "presence_penalty": 0,
  47. "request_timeout": 60, # chatgpt请求超时时间,openai接口默认设置为600,对于难问题一般需要较长时间
  48. "timeout": 120, # chatgpt重试超时时间,在这个时间内,将会自动重试
  49. # 语音设置
  50. "speech_recognition": False, # 是否开启语音识别
  51. "group_speech_recognition": False, # 是否开启群组语音识别
  52. "voice_reply_voice": False, # 是否使用语音回复语音,需要设置对应语音合成引擎的api key
  53. "always_reply_voice": False, # 是否一直使用语音回复
  54. "voice_to_text": "openai", # 语音识别引擎,支持openai,baidu,google,azure
  55. "text_to_voice": "baidu", # 语音合成引擎,支持baidu,google,pytts(offline),azure
  56. # baidu 语音api配置, 使用百度语音识别和语音合成时需要
  57. "baidu_app_id": "",
  58. "baidu_api_key": "",
  59. "baidu_secret_key": "",
  60. # 1536普通话(支持简单的英文识别) 1737英语 1637粤语 1837四川话 1936普通话远场
  61. "baidu_dev_pid": "1536",
  62. # azure 语音api配置, 使用azure语音识别和语音合成时需要
  63. "azure_voice_api_key": "",
  64. "azure_voice_region": "japaneast",
  65. # 服务时间限制,目前支持itchat
  66. "chat_time_module": False, # 是否开启服务时间限制
  67. "chat_start_time": "00:00", # 服务开始时间
  68. "chat_stop_time": "24:00", # 服务结束时间
  69. # 翻译api
  70. "translate": "baidu", # 翻译api,支持baidu
  71. # baidu翻译api的配置
  72. "baidu_translate_app_id": "", # 百度翻译api的appid
  73. "baidu_translate_app_key": "", # 百度翻译api的秘钥
  74. # itchat的配置
  75. "hot_reload": False, # 是否开启热重载
  76. # wechaty的配置
  77. "wechaty_puppet_service_token": "", # wechaty的token
  78. # wechatmp的配置
  79. "wechatmp_token": "", # 微信公众平台的Token
  80. "wechatmp_port": 8080, # 微信公众平台的端口,需要端口转发到80或443
  81. "wechatmp_app_id": "", # 微信公众平台的appID
  82. "wechatmp_app_secret": "", # 微信公众平台的appsecret
  83. "wechatmp_aes_key": "", # 微信公众平台的EncodingAESKey,加密模式需要
  84. # wechatcom的通用配置
  85. "wechatcom_corp_id": "", # 企业微信公司的corpID
  86. # wechatcomapp的配置
  87. "wechatcomapp_token": "", # 企业微信app的token
  88. "wechatcomapp_port": 9898, # 企业微信app的服务端口,不需要端口转发
  89. "wechatcomapp_secret": "", # 企业微信app的secret
  90. "wechatcomapp_agent_id": "", # 企业微信app的agent_id
  91. "wechatcomapp_aes_key": "", # 企业微信app的aes_key
  92. # chatgpt指令自定义触发词
  93. "clear_memory_commands": ["#清除记忆"], # 重置会话指令,必须以#开头
  94. # channel配置
  95. "channel_type": "wx", # 通道类型,支持:{wx,wxy,terminal,wechatmp,wechatmp_service,wechatcom_app}
  96. "subscribe_msg": "", # 订阅消息, 支持: wechatmp, wechatmp_service, wechatcom_app
  97. "debug": False, # 是否开启debug模式,开启后会打印更多日志
  98. "appdata_dir": "", # 数据目录
  99. # 插件配置
  100. "plugin_trigger_prefix": "$", # 规范插件提供聊天相关指令的前缀,建议不要和管理员指令前缀"#"冲突
  101. # 知识库平台配置
  102. "use_linkai": False,
  103. "linkai_api_key": "",
  104. "linkai_app_code": ""
  105. }
  106. class Config(dict):
  107. def __init__(self, d=None):
  108. super().__init__()
  109. if d is None:
  110. d = {}
  111. for k, v in d.items():
  112. self[k] = v
  113. # user_datas: 用户数据,key为用户名,value为用户数据,也是dict
  114. self.user_datas = {}
  115. def __getitem__(self, key):
  116. if key not in available_setting:
  117. raise Exception("key {} not in available_setting".format(key))
  118. return super().__getitem__(key)
  119. def __setitem__(self, key, value):
  120. if key not in available_setting:
  121. raise Exception("key {} not in available_setting".format(key))
  122. return super().__setitem__(key, value)
  123. def get(self, key, default=None):
  124. try:
  125. return self[key]
  126. except KeyError as e:
  127. return default
  128. except Exception as e:
  129. raise e
  130. # Make sure to return a dictionary to ensure atomic
  131. def get_user_data(self, user) -> dict:
  132. if self.user_datas.get(user) is None:
  133. self.user_datas[user] = {}
  134. return self.user_datas[user]
  135. def load_user_datas(self):
  136. try:
  137. with open(os.path.join(get_appdata_dir(), "user_datas.pkl"), "rb") as f:
  138. self.user_datas = pickle.load(f)
  139. logger.info("[Config] User datas loaded.")
  140. except FileNotFoundError as e:
  141. logger.info("[Config] User datas file not found, ignore.")
  142. except Exception as e:
  143. logger.info("[Config] User datas error: {}".format(e))
  144. self.user_datas = {}
  145. def save_user_datas(self):
  146. try:
  147. with open(os.path.join(get_appdata_dir(), "user_datas.pkl"), "wb") as f:
  148. pickle.dump(self.user_datas, f)
  149. logger.info("[Config] User datas saved.")
  150. except Exception as e:
  151. logger.info("[Config] User datas error: {}".format(e))
  152. config = Config()
  153. def load_config():
  154. global config
  155. config_path = "./config.json"
  156. if not os.path.exists(config_path):
  157. logger.info("配置文件不存在,将使用config-template.json模板")
  158. config_path = "./config-template.json"
  159. config_str = read_file(config_path)
  160. logger.debug("[INIT] config str: {}".format(config_str))
  161. # 将json字符串反序列化为dict类型
  162. config = Config(json.loads(config_str))
  163. # override config with environment variables.
  164. # 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.
  165. for name, value in os.environ.items():
  166. name = name.lower()
  167. if name in available_setting:
  168. logger.info("[INIT] override config by environ args: {}={}".format(name, value))
  169. try:
  170. config[name] = eval(value)
  171. except:
  172. if value == "false":
  173. config[name] = False
  174. elif value == "true":
  175. config[name] = True
  176. else:
  177. config[name] = value
  178. if config.get("debug", False):
  179. logger.setLevel(logging.DEBUG)
  180. logger.debug("[INIT] set log level to DEBUG")
  181. logger.info("[INIT] load config: {}".format(config))
  182. config.load_user_datas()
  183. def get_root():
  184. return os.path.dirname(os.path.abspath(__file__))
  185. def read_file(path):
  186. with open(path, mode="r", encoding="utf-8") as f:
  187. return f.read()
  188. def conf():
  189. return config
  190. def get_appdata_dir():
  191. data_path = os.path.join(get_root(), conf().get("appdata_dir", ""))
  192. if not os.path.exists(data_path):
  193. logger.info("[INIT] data path not exists, create it: {}".format(data_path))
  194. os.makedirs(data_path)
  195. return data_path
  196. def subscribe_msg():
  197. trigger_prefix = conf().get("single_chat_prefix", [""])[0]
  198. msg = conf().get("subscribe_msg", "")
  199. return msg.format(trigger_prefix=trigger_prefix)