zhayujie 9ef8e1be3f feat: move loading config method to base class | 1 year ago | |
---|---|---|
.. | ||
lib | 1 year ago | |
.gitignore | 1 year ago | |
README.md | 1 year ago | |
__init__.py | 1 year ago | |
banwords.py | 1 year ago | |
banwords.txt.template | 1 year ago | |
config.json.template | 1 year ago |
简易的敏感词插件,暂不支持分词,请自行导入词库到插件文件夹中的banwords.txt
,每行一个词,一个参考词库是1。
使用前将config.json.template
复制为config.json
,并自行配置。
目前插件对消息的默认处理行为有如下两种:
ignore
: 无视这条消息。replace
: 将消息中的敏感词替换成”*“,并回复违规。 "action": "replace",
"reply_filter": true,
"reply_action": "ignore"
在以上配置项中:
action
: 对用户消息的默认处理行为reply_filter
: 是否对ChatGPT的回复也进行敏感词过滤reply_action
: 如果开启了回复过滤,对回复的默认处理行为