Bläddra i källkod

godcmd: load clear_memory_commands

master
lanvent 1 år sedan
förälder
incheckning
186e18fe94
2 ändrade filer med 10 tillägg och 3 borttagningar
  1. +1
    -1
      config.py
  2. +9
    -2
      plugins/godcmd/godcmd.py

+ 1
- 1
config.py Visa fil

@@ -77,7 +77,7 @@ available_setting = {
"wechaty_puppet_service_token": "", # wechaty的token

# chatgpt指令自定义触发词
"clear_memory_commands": ['#清除记忆'], # 重置会话指令
"clear_memory_commands": ['#清除记忆'], # 重置会话指令,必须以#开头

# channel配置
"channel_type": "wx", # 通道类型,支持wx,wxy和terminal


+ 9
- 2
plugins/godcmd/godcmd.py Visa fil

@@ -7,7 +7,7 @@ from typing import Tuple
from bridge.bridge import Bridge
from bridge.context import ContextType
from bridge.reply import Reply, ReplyType
from config import load_config
from config import conf, load_config
import plugins
from plugins import *
from common import const
@@ -126,7 +126,14 @@ class Godcmd(Plugin):
else:
with open(config_path,"r") as f:
gconf=json.load(f)
custom_commands = conf().get("clear_memory_commands", [])
for custom_command in custom_commands:
if custom_command and custom_command.startswith("#"):
custom_command = custom_command[1:]
if custom_command and custom_command not in COMMANDS["reset"]["alias"]:
COMMANDS["reset"]["alias"].append(custom_command)

self.password = gconf["password"]
self.admin_users = gconf["admin_users"] # 预存的管理员账号,这些账号不需要认证 TODO: 用户名每次都会变,目前不可用
self.isrunning = True # 机器人是否运行中


Laddar…
Avbryt
Spara