From a5f7dec011fbca28dbf2e56ad52654cb6f9270bc Mon Sep 17 00:00:00 2001 From: goldfishh Date: Wed, 29 Mar 2023 01:07:46 +0800 Subject: [PATCH 01/11] =?UTF-8?q?plugin(tool):=20=E6=96=B0=E5=A2=9Etool?= =?UTF-8?q?=E6=8F=92=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/tool/README.md | 53 +++++++++++++++++++++++ plugins/tool/__init__.py | 0 plugins/tool/tool.py | 93 ++++++++++++++++++++++++++++++++++++++++ requirements.txt | 3 +- 4 files changed, 148 insertions(+), 1 deletion(-) create mode 100644 plugins/tool/README.md create mode 100644 plugins/tool/__init__.py create mode 100644 plugins/tool/tool.py diff --git a/plugins/tool/README.md b/plugins/tool/README.md new file mode 100644 index 0000000..8e2166d --- /dev/null +++ b/plugins/tool/README.md @@ -0,0 +1,53 @@ +## 插件描述 +一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力 +### 本插件所有工具同步存放至专用仓库:[chatgpt-tool-hub](https://github.com/goldfishh/chatgpt-tool-hub) + + +## 使用说明 +使用该插件后将默认使用4个工具, 无需额外配置长期生效: +### 1. python_repl +###### python解释器,使用它来解释执行python指令 + +### 2. requests +###### 往往用来获取某个网站具体内容 + +### 3. terminal +###### 在你运行的电脑里执行shell命令 + +### 4. meteo-weather +###### 回答你有关天气的询问, 本工具使用了[meteo open api](https://open-meteo.com/) + + +## 使用本插件对话(prompt)技巧 +### 1. 有指引的询问 +#### 例如: +- 总结这个链接的内容 https://www.36kr.com/p/2186160784654466 +- 使用Terminal执行curl cip.cc +- 借助python_repl和meteo-weather获取深圳天气情况 + +### 2. 使用搜索引擎工具 +- 如果有这个工具就能让chatgpt在不理解某个问题时去使用 + + +## 其他插件 +###### 除上述以外还有其他插件,比如搜索联网、数学运算、百科、新闻需要获取api-key, +###### 由于这些插件使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 + + +## config 配置说明 +###### 一个例子 +```json +{ + "tools": ["wikipedia"], + "kwargs": { + "top_k_results": 2 + } +} +``` +- `tools`:本插件初始化时加载的工具, 目前可选集:["wikipedia", "wolfram-alpha", "google-search", "news-api"] +- `kwargs`:工具执行时的配置,一般在这里存放api-key + + +## 备注 +- 请不要使用本插件做危害他人的事情,请自行判断本插件输出内容的真实性 +- 未来一段时间我会实现一些有意思的工具,比如stable diffusion 中文prompt翻译、cv方向的模型推理,欢迎有想法的朋友关注,一起扩展这个项目 diff --git a/plugins/tool/__init__.py b/plugins/tool/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py new file mode 100644 index 0000000..229e1fa --- /dev/null +++ b/plugins/tool/tool.py @@ -0,0 +1,93 @@ +import json +import os + +from chatgpt_tool_hub.apps import load_app +from chatgpt_tool_hub.apps.app import App + +import plugins +from bridge.context import ContextType +from bridge.reply import Reply, ReplyType +from common.log import logger +from config import conf +from plugins import * + + +@plugins.register(name="tool", desc="Arming your ChatGPT bot with various tools", version="0.1", author="goldfishh", desire_priority=0) +class Tool(Plugin): + def __init__(self): + super().__init__() + self.handlers[Event.ON_HANDLE_CONTEXT] = self.on_handle_context + os.environ["OPENAI_API_KEY"] = conf().get("open_ai_api_key", "") + os.environ["PROXY"] = conf().get("proxy", "") + + self.app = self._reset_app() + + logger.info("[tool] inited") + + def get_help_text(self, **kwargs): + help_text = "这是一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力" + return help_text + + def on_handle_context(self, e_context: EventContext): + if e_context['context'].type != ContextType.TEXT: + return + + content = e_context['context'].content + content_list = e_context['context'].content.split(maxsplit=1) + + if not content or len(content_list) < 1: + e_context.action = EventAction.CONTINUE + return + + logger.debug("[tool] on_handle_context. content: %s" % content) + reply = Reply() + reply.type = ReplyType.TEXT + + # todo: 有些工具必须要api-key,需要修改config文件,所以这里没有实现query增删tool的功能 + if content.startswith("$tool"): + if len(content_list) == 1: + logger.debug("[tool]: get help") + reply.content = self.get_help_text() + e_context['reply'] = reply + e_context.action = EventAction.BREAK_PASS + return + elif len(content_list) > 1: + if content_list[1].strip() == "reset": + logger.debug("[tool]: reset config") + self._reset_app() + reply.content = "重置工具成功" + e_context['reply'] = reply + e_context.action = EventAction.BREAK_PASS + return + elif content_list[1].startswith("reset"): + logger.debug("[tool]: remind") + reply.content = "你随机挑一个方式,提醒用户如果想重置tool插件,reset之后不要加任何字符" + e_context['reply'] = reply + e_context.action = EventAction.BREAK + return + logger.debug("[tool]: just-go") + + # chatgpt-tool-hub will reply you with many tools + # todo: I don't know how to pass someone session into this ask method yet + reply.content = self.app.ask(content_list[1]) + e_context['reply'] = reply + e_context.action = EventAction.BREAK_PASS + return + + def _read_json(self) -> dict: + curdir = os.path.dirname(__file__) + config_path = os.path.join(curdir, "config.json") + tool_config = { + "tools": [], + "kwargs": {} + } + if not os.path.exists(config_path): + return tool_config + else: + with open(config_path, "r") as f: + tool_config = json.load(f) + return tool_config + + def _reset_app(self) -> App: + tool_config = self._read_json() + return load_app(tools_list=tool_config.get("tools"), **tool_config.get("kwargs")) diff --git a/requirements.txt b/requirements.txt index ba2d26e..a12b647 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,4 +13,5 @@ wechaty>=0.10.7 wechaty_puppet>=0.4.23 chardet>=5.1.0 SpeechRecognition -tiktoken>=0.3.2 \ No newline at end of file +tiktoken>=0.3.2 +chatgpt_tool_hub>=0.2.2 \ No newline at end of file From f5f8033d4d2eb2f184c62c7d7194b052964d989c Mon Sep 17 00:00:00 2001 From: goldfishh Date: Wed, 29 Mar 2023 09:27:46 +0800 Subject: [PATCH 02/11] plugin tool: big fix --- plugins/tool/README.md | 3 ++- plugins/tool/tool.py | 35 ++++++++++++++++++++++++++++------- 2 files changed, 30 insertions(+), 8 deletions(-) diff --git a/plugins/tool/README.md b/plugins/tool/README.md index 8e2166d..e91e2e3 100644 --- a/plugins/tool/README.md +++ b/plugins/tool/README.md @@ -1,5 +1,6 @@ ## 插件描述 -一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力 +一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力 +使用该插件需在对话内容前加$tool ### 本插件所有工具同步存放至专用仓库:[chatgpt-tool-hub](https://github.com/goldfishh/chatgpt-tool-hub) diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index 229e1fa..e66b891 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -5,14 +5,16 @@ from chatgpt_tool_hub.apps import load_app from chatgpt_tool_hub.apps.app import App import plugins +from bridge.bridge import Bridge from bridge.context import ContextType from bridge.reply import Reply, ReplyType +from common import const from common.log import logger from config import conf from plugins import * -@plugins.register(name="tool", desc="Arming your ChatGPT bot with various tools", version="0.1", author="goldfishh", desire_priority=0) +@plugins.register(name="tool", desc="Arming your ChatGPT bot with various tools", version="0.2", author="goldfishh", desire_priority=0) class Tool(Plugin): def __init__(self): super().__init__() @@ -32,6 +34,10 @@ class Tool(Plugin): if e_context['context'].type != ContextType.TEXT: return + # 暂时不支持未来扩展的bot + if Bridge().get_bot_type("chat") not in (const.CHATGPT, const.OPEN_AI, const.CHATGPTONAZURE): + return + content = e_context['context'].content content_list = e_context['context'].content.split(maxsplit=1) @@ -54,24 +60,39 @@ class Tool(Plugin): elif len(content_list) > 1: if content_list[1].strip() == "reset": logger.debug("[tool]: reset config") - self._reset_app() + self.app = self._reset_app() reply.content = "重置工具成功" e_context['reply'] = reply e_context.action = EventAction.BREAK_PASS return elif content_list[1].startswith("reset"): logger.debug("[tool]: remind") - reply.content = "你随机挑一个方式,提醒用户如果想重置tool插件,reset之后不要加任何字符" + reply.content = "请你随机用一种聊天风格,提醒用户:如果想重置tool插件,reset之后不要加任何字符" e_context['reply'] = reply e_context.action = EventAction.BREAK return - logger.debug("[tool]: just-go") + + query = content_list[1].strip() + + # Don't modify bot name + all_sessions = Bridge().get_bot("chat").sessions + user_session = all_sessions.session_query(query, e_context['context']['session_id']) # chatgpt-tool-hub will reply you with many tools - # todo: I don't know how to pass someone session into this ask method yet - reply.content = self.app.ask(content_list[1]) + logger.debug("[tool]: just-go") + try: + _reply = self.app.ask(content_list[1], user_session) + e_context.action = EventAction.BREAK_PASS + except ValueError as e: + logger.exception(e) + logger.error(str(e)) + + _reply = "请你随机用一种聊天风格,提醒用户:这个问题你无法处理" + reply.type = ReplyType.ERROR + e_context.action = EventAction.BREAK + reply.content = _reply + e_context['reply'] = reply - e_context.action = EventAction.BREAK_PASS return def _read_json(self) -> dict: From 0b5fd27cd8233fa601f8bb5c6094c5c1880562d2 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Thu, 30 Mar 2023 00:19:18 +0800 Subject: [PATCH 03/11] fix get_session error --- bot/session_manager.py | 2 +- plugins/tool/tool.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/session_manager.py b/bot/session_manager.py index 1114730..0e20cd7 100644 --- a/bot/session_manager.py +++ b/bot/session_manager.py @@ -50,7 +50,7 @@ class SessionManager(object): ''' if session_id not in self.sessions: self.sessions[session_id] = self.sessioncls(session_id, system_prompt, **self.session_args) - elif system_prompt is not None: # 如果有新的system_prompt,更新并重置session + elif system_prompt is not None: # 如果有新的system_prompt,更新并重置session self.sessions[session_id].set_system_prompt(system_prompt) session = self.sessions[session_id] return session diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index e66b891..12ec6a3 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -76,7 +76,7 @@ class Tool(Plugin): # Don't modify bot name all_sessions = Bridge().get_bot("chat").sessions - user_session = all_sessions.session_query(query, e_context['context']['session_id']) + user_session = all_sessions.session_query(query, e_context['context']['session_id']).messages # chatgpt-tool-hub will reply you with many tools logger.debug("[tool]: just-go") From 0597ba20d297284efccfd8dc9ecd247f5ef06bf9 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Thu, 30 Mar 2023 01:38:08 +0800 Subject: [PATCH 04/11] minor change --- plugins/tool/tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index 12ec6a3..9b1d21d 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -81,7 +81,7 @@ class Tool(Plugin): # chatgpt-tool-hub will reply you with many tools logger.debug("[tool]: just-go") try: - _reply = self.app.ask(content_list[1], user_session) + _reply = self.app.ask(query, user_session) e_context.action = EventAction.BREAK_PASS except ValueError as e: logger.exception(e) From 461777cad3fd9836c063dec38e3efc75616ad267 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Thu, 30 Mar 2023 08:02:17 +0800 Subject: [PATCH 05/11] fix: plugin tool: add reply to session --- plugins/tool/tool.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index 9b1d21d..8761407 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -83,6 +83,7 @@ class Tool(Plugin): try: _reply = self.app.ask(query, user_session) e_context.action = EventAction.BREAK_PASS + all_sessions.session_reply(_reply, e_context['context']['session_id']) except ValueError as e: logger.exception(e) logger.error(str(e)) @@ -90,8 +91,8 @@ class Tool(Plugin): _reply = "请你随机用一种聊天风格,提醒用户:这个问题你无法处理" reply.type = ReplyType.ERROR e_context.action = EventAction.BREAK - reply.content = _reply + reply.content = _reply e_context['reply'] = reply return From bf02a59aec83531e68ce22427baf309f8e6c658d Mon Sep 17 00:00:00 2001 From: goldfishh Date: Thu, 30 Mar 2023 23:58:04 +0800 Subject: [PATCH 06/11] minor change --- plugins/tool/tool.py | 5 +++-- requirements.txt | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index 8761407..ee5b359 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -88,9 +88,10 @@ class Tool(Plugin): logger.exception(e) logger.error(str(e)) - _reply = "请你随机用一种聊天风格,提醒用户:这个问题你无法处理" + e_context['context'].content = "这个问题tool插件暂时无法处理" reply.type = ReplyType.ERROR - e_context.action = EventAction.BREAK + e_context.action = EventAction.CONTINUE + return reply.content = _reply e_context['reply'] = reply diff --git a/requirements.txt b/requirements.txt index a12b647..fe6aebf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ wechaty_puppet>=0.4.23 chardet>=5.1.0 SpeechRecognition tiktoken>=0.3.2 -chatgpt_tool_hub>=0.2.2 \ No newline at end of file +chatgpt_tool_hub>=0.2.3 \ No newline at end of file From 8da362d6fed43f8a854af392a35ccb127b7285d6 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Fri, 31 Mar 2023 00:26:23 +0800 Subject: [PATCH 07/11] plugin(tool) update doc --- plugins/tool/README.md | 13 +++++++------ requirements.txt | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/plugins/tool/README.md b/plugins/tool/README.md index e91e2e3..5061520 100644 --- a/plugins/tool/README.md +++ b/plugins/tool/README.md @@ -17,17 +17,17 @@ ### 4. meteo-weather ###### 回答你有关天气的询问, 本工具使用了[meteo open api](https://open-meteo.com/) - +注:该工具需提供时间,地点信息,且获取的数据不一定准确 ## 使用本插件对话(prompt)技巧 ### 1. 有指引的询问 #### 例如: - 总结这个链接的内容 https://www.36kr.com/p/2186160784654466 -- 使用Terminal执行curl cip.cc -- 借助python_repl和meteo-weather获取深圳天气情况 +- 使用Terminal执行curl cip.cc +- 使用python查询今天日期 ### 2. 使用搜索引擎工具 -- 如果有这个工具就能让chatgpt在不理解某个问题时去使用 +- 如果有搜索工具就能让chatgpt获取到你的未传达清楚的上下文信息,chatgpt不知道你的地理位置,现在时间等,所以不可能给你正确回答 ## 其他插件 @@ -35,7 +35,7 @@ ###### 由于这些插件使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 -## config 配置说明 +## config.json 配置说明 ###### 一个例子 ```json { @@ -45,10 +45,11 @@ } } ``` +该文件不创建也能使用本tool - `tools`:本插件初始化时加载的工具, 目前可选集:["wikipedia", "wolfram-alpha", "google-search", "news-api"] - `kwargs`:工具执行时的配置,一般在这里存放api-key ## 备注 -- 请不要使用本插件做危害他人的事情,请自行判断本插件输出内容的真实性 +- 虽然我会有意加入一些限制,但请不要使用本插件做危害他人的事情,请提前了解清楚某些内容是否会违反相关规定,建议提前做好过滤 - 未来一段时间我会实现一些有意思的工具,比如stable diffusion 中文prompt翻译、cv方向的模型推理,欢迎有想法的朋友关注,一起扩展这个项目 diff --git a/requirements.txt b/requirements.txt index fe6aebf..3a7186d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ wechaty_puppet>=0.4.23 chardet>=5.1.0 SpeechRecognition tiktoken>=0.3.2 -chatgpt_tool_hub>=0.2.3 \ No newline at end of file +chatgpt_tool_hub>=0.2.5 \ No newline at end of file From f49806558e3501ccb5d3aaaeba826a321b3e38b8 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Fri, 31 Mar 2023 00:53:31 +0800 Subject: [PATCH 08/11] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dreadme=E9=83=A8?= =?UTF-8?q?=E5=88=86=E6=9C=89=E8=AF=AF=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/tool/README.md | 14 +++++++------- requirements.txt | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/plugins/tool/README.md b/plugins/tool/README.md index 5061520..4f19dba 100644 --- a/plugins/tool/README.md +++ b/plugins/tool/README.md @@ -1,6 +1,6 @@ ## 插件描述 一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力 -使用该插件需在对话内容前加$tool +使用该插件需在触发机器人回复条件时,在对话内容前加$tool ### 本插件所有工具同步存放至专用仓库:[chatgpt-tool-hub](https://github.com/goldfishh/chatgpt-tool-hub) @@ -19,7 +19,7 @@ ###### 回答你有关天气的询问, 本工具使用了[meteo open api](https://open-meteo.com/) 注:该工具需提供时间,地点信息,且获取的数据不一定准确 -## 使用本插件对话(prompt)技巧 +## 使用本工具对话(prompt)技巧 ### 1. 有指引的询问 #### 例如: - 总结这个链接的内容 https://www.36kr.com/p/2186160784654466 @@ -27,12 +27,12 @@ - 使用python查询今天日期 ### 2. 使用搜索引擎工具 -- 如果有搜索工具就能让chatgpt获取到你的未传达清楚的上下文信息,chatgpt不知道你的地理位置,现在时间等,所以不可能给你正确回答 +- 如果有搜索工具就能让chatgpt获取到你的未传达清楚的上下文信息,chatgpt不知道你的地理位置,现在时间等,所以不可能给你正确回答 -## 其他插件 -###### 除上述以外还有其他插件,比如搜索联网、数学运算、百科、新闻需要获取api-key, -###### 由于这些插件使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 +## 其他工具 +###### 除上述以外还有其他工具,比如搜索联网、数学运算、百科、新闻需要获取api-key, +###### 由于这些工具使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 ## config.json 配置说明 @@ -45,7 +45,7 @@ } } ``` -该文件不创建也能使用本tool +不创建该文件也能使用本tool - `tools`:本插件初始化时加载的工具, 目前可选集:["wikipedia", "wolfram-alpha", "google-search", "news-api"] - `kwargs`:工具执行时的配置,一般在这里存放api-key diff --git a/requirements.txt b/requirements.txt index 3a7186d..13465f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ wechaty_puppet>=0.4.23 chardet>=5.1.0 SpeechRecognition tiktoken>=0.3.2 -chatgpt_tool_hub>=0.2.5 \ No newline at end of file +chatgpt_tool_hub>=0.3.0 \ No newline at end of file From 71d288f5503d19eb4cf66ee882c807e12d52fbb0 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Sat, 1 Apr 2023 01:32:03 +0800 Subject: [PATCH 09/11] fix docs, break context --- plugins/tool/README.md | 30 ++++++++++++++++-------------- plugins/tool/tool.py | 10 +++++----- 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/plugins/tool/README.md b/plugins/tool/README.md index 4f19dba..4d4ea46 100644 --- a/plugins/tool/README.md +++ b/plugins/tool/README.md @@ -7,19 +7,19 @@ ## 使用说明 使用该插件后将默认使用4个工具, 无需额外配置长期生效: ### 1. python_repl -###### python解释器,使用它来解释执行python指令 +###### python解释器,使用它来解释执行python指令,可以配合你想要chatgpt生成的代码输出结果或执行事务 ### 2. requests -###### 往往用来获取某个网站具体内容 +###### 往往用来获取某个网站具体内容,结果可能会被反爬策略影响 ### 3. terminal -###### 在你运行的电脑里执行shell命令 +###### 在你运行的电脑里执行shell命令,可以配合你想要chatgpt生成的代码使用,给予自然语言控制手段 ### 4. meteo-weather -###### 回答你有关天气的询问, 本工具使用了[meteo open api](https://open-meteo.com/) -注:该工具需提供时间,地点信息,且获取的数据不一定准确 +###### 回答你有关天气的询问, 需要获取时间、地点上下文信息,本工具使用了[meteo open api](https://open-meteo.com/) +注:该工具需提供时间,地点信息,获取的数据不保证准确性 -## 使用本工具对话(prompt)技巧 +## 使用本插件对话(prompt)技巧 ### 1. 有指引的询问 #### 例如: - 总结这个链接的内容 https://www.36kr.com/p/2186160784654466 @@ -27,16 +27,18 @@ - 使用python查询今天日期 ### 2. 使用搜索引擎工具 -- 如果有搜索工具就能让chatgpt获取到你的未传达清楚的上下文信息,chatgpt不知道你的地理位置,现在时间等,所以不可能给你正确回答 +- 如果有搜索工具就能让chatgpt获取到你的未传达清楚的上下文信息,比如chatgpt不知道你的地理位置,现在时间等,所以无法查询到天气 ## 其他工具 -###### 除上述以外还有其他工具,比如搜索联网、数学运算、百科、新闻需要获取api-key, -###### 由于这些工具使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 - - +###### 除上述以外还有其他工具,比如搜索联网、数学运算、新闻需要获取api-key, +###### 由于这些工具使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 + +### 5. wikipedia +###### 可以回答你想要知道确切的人事物 + ## config.json 配置说明 -###### 一个例子 +###### 默认工具无需配置,其它工具需手动配置,一个例子: ```json { "tools": ["wikipedia"], @@ -45,9 +47,9 @@ } } ``` -不创建该文件也能使用本tool +注:config.json文件非必须,未创建仍能使用本tool - `tools`:本插件初始化时加载的工具, 目前可选集:["wikipedia", "wolfram-alpha", "google-search", "news-api"] -- `kwargs`:工具执行时的配置,一般在这里存放api-key +- `kwargs`:工具执行时的配置,一般在这里存放api-key,或搜索引擎等输出的条数 ## 备注 diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index ee5b359..a5baa94 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -14,7 +14,7 @@ from config import conf from plugins import * -@plugins.register(name="tool", desc="Arming your ChatGPT bot with various tools", version="0.2", author="goldfishh", desire_priority=0) +@plugins.register(name="tool", desc="Arming your ChatGPT bot with various tools", version="0.3", author="goldfishh", desire_priority=0) class Tool(Plugin): def __init__(self): super().__init__() @@ -67,8 +67,8 @@ class Tool(Plugin): return elif content_list[1].startswith("reset"): logger.debug("[tool]: remind") - reply.content = "请你随机用一种聊天风格,提醒用户:如果想重置tool插件,reset之后不要加任何字符" - e_context['reply'] = reply + e_context['context'].content = "请你随机用一种聊天风格,提醒用户:如果想重置tool插件,reset之后不要加任何字符" + e_context.action = EventAction.BREAK return @@ -88,9 +88,9 @@ class Tool(Plugin): logger.exception(e) logger.error(str(e)) - e_context['context'].content = "这个问题tool插件暂时无法处理" + e_context['context'].content = "请你随机用一种聊天风格,提醒用户:这个问题tool插件暂时无法处理" reply.type = ReplyType.ERROR - e_context.action = EventAction.CONTINUE + e_context.action = EventAction.BREAK return reply.content = _reply From 7835379f8fe731619edb658c6603bcc783d9b3eb Mon Sep 17 00:00:00 2001 From: goldfishh Date: Sun, 2 Apr 2023 22:33:31 +0800 Subject: [PATCH 10/11] plugin(tool) add a config.json template and fix something --- plugins/tool/README.md | 17 ++++++++++------- plugins/tool/config.json.template | 8 ++++++++ plugins/tool/tool.py | 2 +- requirements.txt | 2 +- 4 files changed, 20 insertions(+), 9 deletions(-) create mode 100644 plugins/tool/config.json.template diff --git a/plugins/tool/README.md b/plugins/tool/README.md index 4d4ea46..19763b3 100644 --- a/plugins/tool/README.md +++ b/plugins/tool/README.md @@ -6,7 +6,7 @@ ## 使用说明 使用该插件后将默认使用4个工具, 无需额外配置长期生效: -### 1. python_repl +### 1. python ###### python解释器,使用它来解释执行python指令,可以配合你想要chatgpt生成的代码输出结果或执行事务 ### 2. requests @@ -22,7 +22,7 @@ ## 使用本插件对话(prompt)技巧 ### 1. 有指引的询问 #### 例如: -- 总结这个链接的内容 https://www.36kr.com/p/2186160784654466 +- 总结这个链接的内容 https://github.com/goldfishh/chatgpt-tool-hub - 使用Terminal执行curl cip.cc - 使用python查询今天日期 @@ -33,7 +33,8 @@ ## 其他工具 ###### 除上述以外还有其他工具,比如搜索联网、数学运算、新闻需要获取api-key, ###### 由于这些工具使用方法暂时还在整理中,如果你不熟悉请不要尝试使用这些工具 - +#### [申请方法](https://github.com/goldfishh/chatgpt-tool-hub/blob/master/docs/apply_optional_tool.md) + ### 5. wikipedia ###### 可以回答你想要知道确切的人事物 @@ -43,13 +44,15 @@ { "tools": ["wikipedia"], "kwargs": { - "top_k_results": 2 + "top_k_results": 2, + "no_default": false, + "model_name": "gpt-3.5-turbo" } } ``` -注:config.json文件非必须,未创建仍能使用本tool -- `tools`:本插件初始化时加载的工具, 目前可选集:["wikipedia", "wolfram-alpha", "google-search", "news-api"] -- `kwargs`:工具执行时的配置,一般在这里存放api-key,或搜索引擎等输出的条数 +注:config.json文件非必须,未创建仍可使用本tool +- `tools`:本插件初始化时加载的工具, 目前可选集:["wikipedia", "wolfram-alpha", "bing-search", "google-search", "news"],其中后4个工具需要申请服务api +- `kwargs`:工具执行时的配置,一般在这里存放api-key,或环境配置,no_default用于配置是否默认使用4个工具,如果为false则仅使用tools列表工具 ## 备注 diff --git a/plugins/tool/config.json.template b/plugins/tool/config.json.template new file mode 100644 index 0000000..6415288 --- /dev/null +++ b/plugins/tool/config.json.template @@ -0,0 +1,8 @@ +{ + "tools": ["python", "requests", "terminal", "meteo-weather"], + "kwargs": { + "top_k_results": 2, + "no_default": false, + "model_name": "gpt-3.5-turbo" + } +} \ No newline at end of file diff --git a/plugins/tool/tool.py b/plugins/tool/tool.py index a5baa94..7b5ac5a 100644 --- a/plugins/tool/tool.py +++ b/plugins/tool/tool.py @@ -84,7 +84,7 @@ class Tool(Plugin): _reply = self.app.ask(query, user_session) e_context.action = EventAction.BREAK_PASS all_sessions.session_reply(_reply, e_context['context']['session_id']) - except ValueError as e: + except Exception as e: logger.exception(e) logger.error(str(e)) diff --git a/requirements.txt b/requirements.txt index 13465f3..a9ef7c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ wechaty_puppet>=0.4.23 chardet>=5.1.0 SpeechRecognition tiktoken>=0.3.2 -chatgpt_tool_hub>=0.3.0 \ No newline at end of file +chatgpt_tool_hub>=0.3.4 \ No newline at end of file From 761fb20dd9476690909d9a78eee8195709d86b78 Mon Sep 17 00:00:00 2001 From: goldfishh Date: Mon, 3 Apr 2023 09:01:51 +0800 Subject: [PATCH 11/11] plugin(tool) fix type error in old python ver --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a9ef7c2..e90ed5b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ wechaty_puppet>=0.4.23 chardet>=5.1.0 SpeechRecognition tiktoken>=0.3.2 -chatgpt_tool_hub>=0.3.4 \ No newline at end of file +chatgpt_tool_hub>=0.3.5 \ No newline at end of file