Browse Source

Default close tool plugin.

master
6vision 3 months ago
parent
commit
55ca652ad8
1 changed files with 9 additions and 5 deletions
  1. +9
    -5
      plugins/tool/tool.py

+ 9
- 5
plugins/tool/tool.py View File

@@ -21,11 +21,15 @@ from plugins import *
class Tool(Plugin): class Tool(Plugin):
def __init__(self): def __init__(self):
super().__init__() super().__init__()
self.handlers[Event.ON_HANDLE_CONTEXT] = self.on_handle_context

self.app = self._reset_app()

logger.info("[tool] inited")
try:
self.handlers[Event.ON_HANDLE_CONTEXT] = self.on_handle_context
self.app = self._reset_app()
if not self.tool_config.get("tools"):
raise Exception("config.json not found")
logger.info("[tool] inited")
except Exception as e:
logger.warn("[tool] init failed, ignore ")
raise e


def get_help_text(self, verbose=False, **kwargs): def get_help_text(self, verbose=False, **kwargs):
help_text = "这是一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力。" help_text = "这是一个能让chatgpt联网,搜索,数字运算的插件,将赋予强大且丰富的扩展能力。"


Loading…
Cancel
Save