mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-20 13:47:15 +08:00
Merge branch 'master' into claude-3.5-sonnet
This commit is contained in:
@@ -24,7 +24,9 @@ class GoogleGeminiBot(Bot):
|
|||||||
self.api_key = conf().get("gemini_api_key")
|
self.api_key = conf().get("gemini_api_key")
|
||||||
# 复用文心的token计算方式
|
# 复用文心的token计算方式
|
||||||
self.sessions = SessionManager(BaiduWenxinSession, model=conf().get("model") or "gpt-3.5-turbo")
|
self.sessions = SessionManager(BaiduWenxinSession, model=conf().get("model") or "gpt-3.5-turbo")
|
||||||
|
self.model = conf().get("model") or "gemini-pro"
|
||||||
|
if self.model == "gemini":
|
||||||
|
self.model = "gemini-pro"
|
||||||
def reply(self, query, context: Context = None) -> Reply:
|
def reply(self, query, context: Context = None) -> Reply:
|
||||||
try:
|
try:
|
||||||
if context.type != ContextType.TEXT:
|
if context.type != ContextType.TEXT:
|
||||||
@@ -35,7 +37,7 @@ class GoogleGeminiBot(Bot):
|
|||||||
session = self.sessions.session_query(query, session_id)
|
session = self.sessions.session_query(query, session_id)
|
||||||
gemini_messages = self._convert_to_gemini_messages(self.filter_messages(session.messages))
|
gemini_messages = self._convert_to_gemini_messages(self.filter_messages(session.messages))
|
||||||
genai.configure(api_key=self.api_key)
|
genai.configure(api_key=self.api_key)
|
||||||
model = genai.GenerativeModel('gemini-pro')
|
model = genai.GenerativeModel(self.model)
|
||||||
response = model.generate_content(gemini_messages)
|
response = model.generate_content(gemini_messages)
|
||||||
reply_text = response.text
|
reply_text = response.text
|
||||||
self.sessions.session_reply(reply_text, session_id)
|
self.sessions.session_reply(reply_text, session_id)
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class Bridge(object):
|
|||||||
self.btype["chat"] = const.QWEN
|
self.btype["chat"] = const.QWEN
|
||||||
if model_type in [const.QWEN_TURBO, const.QWEN_PLUS, const.QWEN_MAX]:
|
if model_type in [const.QWEN_TURBO, const.QWEN_PLUS, const.QWEN_MAX]:
|
||||||
self.btype["chat"] = const.QWEN_DASHSCOPE
|
self.btype["chat"] = const.QWEN_DASHSCOPE
|
||||||
if model_type in [const.GEMINI]:
|
if model_type and model_type.startswith("gemini"):
|
||||||
self.btype["chat"] = const.GEMINI
|
self.btype["chat"] = const.GEMINI
|
||||||
if model_type in [const.ZHIPU_AI]:
|
if model_type in [const.ZHIPU_AI]:
|
||||||
self.btype["chat"] = const.ZHIPU_AI
|
self.btype["chat"] = const.ZHIPU_AI
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ class ChatChannel(Channel):
|
|||||||
logger.info("[chat_channel]receive group at")
|
logger.info("[chat_channel]receive group at")
|
||||||
if not conf().get("group_at_off", False):
|
if not conf().get("group_at_off", False):
|
||||||
flag = True
|
flag = True
|
||||||
|
self.name = self.name if self.name is not None else "" # 部分渠道self.name可能没有赋值
|
||||||
pattern = f"@{re.escape(self.name)}(\u2005|\u0020)"
|
pattern = f"@{re.escape(self.name)}(\u2005|\u0020)"
|
||||||
subtract_res = re.sub(pattern, r"", content)
|
subtract_res = re.sub(pattern, r"", content)
|
||||||
if isinstance(context["msg"].at_list, list):
|
if isinstance(context["msg"].at_list, list):
|
||||||
|
|||||||
@@ -163,7 +163,7 @@ class DingTalkChanel(ChatChannel, dingtalk_stream.ChatbotHandler):
|
|||||||
elif cmsg.ctype == ContextType.PATPAT:
|
elif cmsg.ctype == ContextType.PATPAT:
|
||||||
logger.debug("[DingTalk]receive patpat msg: {}".format(cmsg.content))
|
logger.debug("[DingTalk]receive patpat msg: {}".format(cmsg.content))
|
||||||
elif cmsg.ctype == ContextType.TEXT:
|
elif cmsg.ctype == ContextType.TEXT:
|
||||||
logger.debug("[DingTalk]receive patpat msg: {}".format(cmsg.content))
|
logger.debug("[DingTalk]receive text msg: {}".format(cmsg.content))
|
||||||
else:
|
else:
|
||||||
logger.debug("[DingTalk]receive other msg: {}".format(cmsg.content))
|
logger.debug("[DingTalk]receive other msg: {}".format(cmsg.content))
|
||||||
context = self._compose_context(cmsg.ctype, cmsg.content, isgroup=True, msg=cmsg)
|
context = self._compose_context(cmsg.ctype, cmsg.content, isgroup=True, msg=cmsg)
|
||||||
|
|||||||
@@ -49,6 +49,7 @@ class DingTalkMessage(ChatMessage):
|
|||||||
if self.is_group:
|
if self.is_group:
|
||||||
self.from_user_id = event.conversation_id
|
self.from_user_id = event.conversation_id
|
||||||
self.actual_user_id = event.sender_id
|
self.actual_user_id = event.sender_id
|
||||||
|
self.is_at = True
|
||||||
else:
|
else:
|
||||||
self.from_user_id = event.sender_id
|
self.from_user_id = event.sender_id
|
||||||
self.actual_user_id = event.sender_id
|
self.actual_user_id = event.sender_id
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ QWEN = "qwen" # 旧版通义模型
|
|||||||
QWEN_DASHSCOPE = "dashscope" # 通义新版sdk和api key
|
QWEN_DASHSCOPE = "dashscope" # 通义新版sdk和api key
|
||||||
|
|
||||||
|
|
||||||
GEMINI = "gemini"
|
GEMINI = "gemini" # gemini-1.0-pro
|
||||||
ZHIPU_AI = "glm-4"
|
ZHIPU_AI = "glm-4"
|
||||||
MOONSHOT = "moonshot"
|
MOONSHOT = "moonshot"
|
||||||
MiniMax = "minimax"
|
MiniMax = "minimax"
|
||||||
@@ -51,16 +51,19 @@ LINKAI_35 = "linkai-3.5"
|
|||||||
LINKAI_4_TURBO = "linkai-4-turbo"
|
LINKAI_4_TURBO = "linkai-4-turbo"
|
||||||
LINKAI_4o = "linkai-4o"
|
LINKAI_4o = "linkai-4o"
|
||||||
|
|
||||||
|
GEMINI_PRO = "gemini-1.0-pro"
|
||||||
|
GEMINI_15_flash = "gemini-1.5-flash"
|
||||||
|
GEMINI_15_PRO = "gemini-1.5-pro"
|
||||||
|
|
||||||
MODEL_LIST = [
|
MODEL_LIST = [
|
||||||
GPT35, GPT35_0125, GPT35_1106, "gpt-3.5-turbo-16k",
|
GPT35, GPT35_0125, GPT35_1106, "gpt-3.5-turbo-16k",
|
||||||
GPT_4o, GPT4_TURBO, GPT4_TURBO_PREVIEW, GPT4_TURBO_01_25, GPT4_TURBO_11_06, GPT4, GPT4_32k, GPT4_06_13, GPT4_32k_06_13,
|
GPT_4o, GPT4_TURBO, GPT4_TURBO_PREVIEW, GPT4_TURBO_01_25, GPT4_TURBO_11_06, GPT4, GPT4_32k, GPT4_06_13, GPT4_32k_06_13,
|
||||||
WEN_XIN, WEN_XIN_4,
|
WEN_XIN, WEN_XIN_4,
|
||||||
XUNFEI, GEMINI, ZHIPU_AI, MOONSHOT,
|
XUNFEI, ZHIPU_AI, MOONSHOT, MiniMax,
|
||||||
|
GEMINI, GEMINI_PRO, GEMINI_15_flash, GEMINI_15_PRO,
|
||||||
"claude", "claude-3-haiku", "claude-3-sonnet", "claude-3-opus", "claude-3-opus-20240229", "claude-3.5-sonnet",
|
"claude", "claude-3-haiku", "claude-3-sonnet", "claude-3-opus", "claude-3-opus-20240229", "claude-3.5-sonnet",
|
||||||
"moonshot-v1-8k", "moonshot-v1-32k", "moonshot-v1-128k",
|
"moonshot-v1-8k", "moonshot-v1-32k", "moonshot-v1-128k",
|
||||||
QWEN, QWEN_TURBO, QWEN_PLUS, QWEN_MAX,
|
QWEN, QWEN_TURBO, QWEN_PLUS, QWEN_MAX,
|
||||||
MiniMax,
|
|
||||||
LINKAI_35, LINKAI_4_TURBO, LINKAI_4o
|
LINKAI_35, LINKAI_4_TURBO, LINKAI_4o
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ available_setting = {
|
|||||||
"open_ai_api_base": "https://api.openai.com/v1",
|
"open_ai_api_base": "https://api.openai.com/v1",
|
||||||
"proxy": "", # openai使用的代理
|
"proxy": "", # openai使用的代理
|
||||||
# chatgpt模型, 当use_azure_chatgpt为true时,其名称为Azure上model deployment名称
|
# chatgpt模型, 当use_azure_chatgpt为true时,其名称为Azure上model deployment名称
|
||||||
"model": "gpt-3.5-turbo", # 支持ChatGPT、Claude、Gemini、文心一言、通义千问、Kimi、讯飞星火、智谱、LinkAI等模型,模型具体名称详见common/const.py文件列出的模型
|
"model": "gpt-3.5-turbo", # 可选择: gpt-4o, gpt-4-turbo, claude-3-sonnet, wenxin, moonshot, qwen-turbo, xunfei, glm-4, minimax, gemini等模型,全部可选模型详见common/const.py文件
|
||||||
"bot_type": "", # 可选配置,使用兼容openai格式的三方服务时候,需填"chatGPT"。bot具体名称详见common/const.py文件列出的bot_type,如不填根据model名称判断,
|
"bot_type": "", # 可选配置,使用兼容openai格式的三方服务时候,需填"chatGPT"。bot具体名称详见common/const.py文件列出的bot_type,如不填根据model名称判断,
|
||||||
"use_azure_chatgpt": False, # 是否使用azure的chatgpt
|
"use_azure_chatgpt": False, # 是否使用azure的chatgpt
|
||||||
"azure_deployment_id": "", # azure 模型部署名称
|
"azure_deployment_id": "", # azure 模型部署名称
|
||||||
@@ -96,7 +96,7 @@ available_setting = {
|
|||||||
"voice_reply_voice": False, # 是否使用语音回复语音,需要设置对应语音合成引擎的api key
|
"voice_reply_voice": False, # 是否使用语音回复语音,需要设置对应语音合成引擎的api key
|
||||||
"always_reply_voice": False, # 是否一直使用语音回复
|
"always_reply_voice": False, # 是否一直使用语音回复
|
||||||
"voice_to_text": "openai", # 语音识别引擎,支持openai,baidu,google,azure
|
"voice_to_text": "openai", # 语音识别引擎,支持openai,baidu,google,azure
|
||||||
"text_to_voice": "openai", # 语音合成引擎,支持openai,baidu,google,pytts(offline),azure,elevenlabs,edge(online)
|
"text_to_voice": "openai", # 语音合成引擎,支持openai,baidu,google,pytts(offline),ali,azure,elevenlabs,edge(online)
|
||||||
"text_to_voice_model": "tts-1",
|
"text_to_voice_model": "tts-1",
|
||||||
"tts_voice_id": "alloy",
|
"tts_voice_id": "alloy",
|
||||||
# baidu 语音api配置, 使用百度语音识别和语音合成时需要
|
# baidu 语音api配置, 使用百度语音识别和语音合成时需要
|
||||||
@@ -242,7 +242,7 @@ def drag_sensitive(config):
|
|||||||
conf_dict_copy = copy.deepcopy(conf_dict)
|
conf_dict_copy = copy.deepcopy(conf_dict)
|
||||||
for key in conf_dict_copy:
|
for key in conf_dict_copy:
|
||||||
if "key" in key or "secret" in key:
|
if "key" in key or "secret" in key:
|
||||||
if isinstance(key, str):
|
if isinstance(conf_dict_copy[key], str):
|
||||||
conf_dict_copy[key] = conf_dict_copy[key][0:3] + "*" * 5 + conf_dict_copy[key][-3:]
|
conf_dict_copy[key] = conf_dict_copy[key][0:3] + "*" * 5 + conf_dict_copy[key][-3:]
|
||||||
return json.dumps(conf_dict_copy, indent=4)
|
return json.dumps(conf_dict_copy, indent=4)
|
||||||
|
|
||||||
@@ -250,7 +250,7 @@ def drag_sensitive(config):
|
|||||||
config_copy = copy.deepcopy(config)
|
config_copy = copy.deepcopy(config)
|
||||||
for key in config:
|
for key in config:
|
||||||
if "key" in key or "secret" in key:
|
if "key" in key or "secret" in key:
|
||||||
if isinstance(key, str):
|
if isinstance(config_copy[key], str):
|
||||||
config_copy[key] = config_copy[key][0:3] + "*" * 5 + config_copy[key][-3:]
|
config_copy[key] = config_copy[key][0:3] + "*" * 5 + config_copy[key][-3:]
|
||||||
return config_copy
|
return config_copy
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ services:
|
|||||||
security_opt:
|
security_opt:
|
||||||
- seccomp:unconfined
|
- seccomp:unconfined
|
||||||
environment:
|
environment:
|
||||||
|
TZ: 'Asia/Shanghai'
|
||||||
OPEN_AI_API_KEY: 'YOUR API KEY'
|
OPEN_AI_API_KEY: 'YOUR API KEY'
|
||||||
MODEL: 'gpt-3.5-turbo'
|
MODEL: 'gpt-3.5-turbo'
|
||||||
PROXY: ''
|
PROXY: ''
|
||||||
|
|||||||
@@ -35,6 +35,10 @@
|
|||||||
"solitaire": {
|
"solitaire": {
|
||||||
"url": "https://github.com/Wang-zhechao/solitaire.git",
|
"url": "https://github.com/Wang-zhechao/solitaire.git",
|
||||||
"desc": "机器人微信接龙插件"
|
"desc": "机器人微信接龙插件"
|
||||||
|
},
|
||||||
|
"HighSpeedTicket": {
|
||||||
|
"url": "https://github.com/He0607/HighSpeedTicket.git",
|
||||||
|
"desc": "高铁(火车)票查询插件"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user