mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-21 14:17:11 +08:00
Merge branch 'master' of github.com:zhayujie/chatgpt-on-wechat
This commit is contained in:
@@ -23,7 +23,6 @@ Demo made by [Visionn](https://www.wangpc.cc/)
|
|||||||
SaaS服务、私有化部署、稳定托管接入 等多种模式。
|
SaaS服务、私有化部署、稳定托管接入 等多种模式。
|
||||||
>
|
>
|
||||||
> 目前已在私域运营、智能客服、企业效率助手等场景积累了丰富的 AI 解决方案, 在电商、文教、健康、新消费等各行业沉淀了 AI 落地的最佳实践,致力于打造助力中小企业拥抱 AI 的一站式平台。
|
> 目前已在私域运营、智能客服、企业效率助手等场景积累了丰富的 AI 解决方案, 在电商、文教、健康、新消费等各行业沉淀了 AI 落地的最佳实践,致力于打造助力中小企业拥抱 AI 的一站式平台。
|
||||||
|
|
||||||
企业服务和商用咨询可联系产品顾问:
|
企业服务和商用咨询可联系产品顾问:
|
||||||
|
|
||||||
<img width="240" src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/product-manager-qrcode.jpg">
|
<img width="240" src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/product-manager-qrcode.jpg">
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ class ReplyType(Enum):
|
|||||||
VIDEO_URL = 5 # 视频URL
|
VIDEO_URL = 5 # 视频URL
|
||||||
FILE = 6 # 文件
|
FILE = 6 # 文件
|
||||||
CARD = 7 # 微信名片,仅支持ntchat
|
CARD = 7 # 微信名片,仅支持ntchat
|
||||||
InviteRoom = 8 # 邀请好友进群
|
INVITE_ROOM = 8 # 邀请好友进群
|
||||||
INFO = 9
|
INFO = 9
|
||||||
ERROR = 10
|
ERROR = 10
|
||||||
TEXT_ = 11 # 强制文本
|
TEXT_ = 11 # 强制文本
|
||||||
|
|||||||
@@ -233,7 +233,6 @@ class WechatChannel(ChatChannel):
|
|||||||
logger.info("[WX] sendImage url={}, receiver={}".format(img_url, receiver))
|
logger.info("[WX] sendImage url={}, receiver={}".format(img_url, receiver))
|
||||||
elif reply.type == ReplyType.IMAGE: # 从文件读取图片
|
elif reply.type == ReplyType.IMAGE: # 从文件读取图片
|
||||||
image_storage = reply.content
|
image_storage = reply.content
|
||||||
image_storage.seek(0)
|
|
||||||
itchat.send_image(image_storage, toUserName=receiver)
|
itchat.send_image(image_storage, toUserName=receiver)
|
||||||
logger.info("[WX] sendImage, receiver={}".format(receiver))
|
logger.info("[WX] sendImage, receiver={}".format(receiver))
|
||||||
elif reply.type == ReplyType.FILE: # 新增文件回复类型
|
elif reply.type == ReplyType.FILE: # 新增文件回复类型
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ class PluginManager:
|
|||||||
try:
|
try:
|
||||||
self.current_plugin_path = plugin_path
|
self.current_plugin_path = plugin_path
|
||||||
if plugin_path in self.loaded:
|
if plugin_path in self.loaded:
|
||||||
if self.loaded[plugin_path] == None:
|
if plugin_name.upper() != 'GODCMD':
|
||||||
logger.info("reload module %s" % plugin_name)
|
logger.info("reload module %s" % plugin_name)
|
||||||
self.loaded[plugin_path] = importlib.reload(sys.modules[import_path])
|
self.loaded[plugin_path] = importlib.reload(sys.modules[import_path])
|
||||||
dependent_module_names = [name for name in sys.modules.keys() if name.startswith(import_path + ".")]
|
dependent_module_names = [name for name in sys.modules.keys() if name.startswith(import_path + ".")]
|
||||||
@@ -141,7 +141,9 @@ class PluginManager:
|
|||||||
failed_plugins = []
|
failed_plugins = []
|
||||||
for name, plugincls in self.plugins.items():
|
for name, plugincls in self.plugins.items():
|
||||||
if plugincls.enabled:
|
if plugincls.enabled:
|
||||||
if name not in self.instances:
|
if 'GODCMD' in self.instances and name == 'GODCMD':
|
||||||
|
continue
|
||||||
|
# if name not in self.instances:
|
||||||
try:
|
try:
|
||||||
instance = plugincls()
|
instance = plugincls()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ class Tool(Plugin):
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
# 全局配置相关
|
# 全局配置相关
|
||||||
"log": True, # tool 日志开关
|
"log": False, # tool 日志开关
|
||||||
"debug": kwargs.get("debug", False), # 输出更多日志
|
"debug": kwargs.get("debug", False), # 输出更多日志
|
||||||
"no_default": kwargs.get("no_default", False), # 不要默认的工具,只加载自己导入的工具
|
"no_default": kwargs.get("no_default", False), # 不要默认的工具,只加载自己导入的工具
|
||||||
"think_depth": kwargs.get("think_depth", 2), # 一个问题最多使用多少次工具
|
"think_depth": kwargs.get("think_depth", 2), # 一个问题最多使用多少次工具
|
||||||
|
|||||||
Reference in New Issue
Block a user