mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-15 19:22:24 +08:00
fix: 消息忽略规则失效 (#854)
This commit is contained in:
parent
47e281fb61
commit
c9c8603ccc
|
@ -1,6 +1,8 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import mirai
|
||||
import mirai.models
|
||||
import mirai.models.message
|
||||
|
||||
from ...core import app
|
||||
|
||||
|
@ -63,6 +65,7 @@ class ContentFilterStage(stage.PipelineStage):
|
|||
"""请求llm前处理消息
|
||||
只要有一个不通过就不放行,只放行 PASS 的消息
|
||||
"""
|
||||
|
||||
if not self.ap.pipeline_cfg.data['income-msg-check']:
|
||||
return entities.StageProcessResult(
|
||||
result_type=entities.ResultType.CONTINUE,
|
||||
|
@ -145,8 +148,10 @@ class ContentFilterStage(stage.PipelineStage):
|
|||
|
||||
contain_non_text = False
|
||||
|
||||
text_components = [mirai.Plain, mirai.models.message.Source]
|
||||
|
||||
for me in query.message_chain:
|
||||
if not isinstance(me, mirai.Plain):
|
||||
if type(me) not in text_components:
|
||||
contain_non_text = True
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user