您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
lanvent 82ec440b45 banwords: support reply filter 1年前
..
.gitignore plugin: add banwords plugin 1年前
README.md banwords: support reply filter 1年前
WordsSearch.py plugin: add banwords plugin 1年前
__init__.py feat: add installp/uninstallp command 1年前
banwords.py banwords: support reply filter 1年前
banwords.txt.template plugin: add banwords plugin 1年前
config.json.template banwords: support reply filter 1年前

README.md

插件描述

简易的敏感词插件,暂不支持分词,请自行导入词库到插件文件夹中的banwords.txt,每行一个词,一个参考词库是1

使用前将config.json.template复制为config.json,并自行配置。

目前插件对消息的默认处理行为有如下两种:

  • ignore : 无视这条消息。
  • replace : 将消息中的敏感词替换成”*“,并回复违规。
    "action": "replace",  
    "reply_filter": true,
    "reply_action": "ignore"

在以上配置项中:

  • action: 对用户消息的默认处理行为
  • reply_filter: 是否对ChatGPT的回复也进行敏感词过滤
  • reply_action: 如果开启了回复过滤,对回复的默认处理行为

致谢

搜索功能实现来自https://github.com/toolgood/ToolGood.Words