mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 19:57:04 +08:00
11 lines
203 B
Python
11 lines
203 B
Python
import pydantic
|
|
|
|
from ...platform.types import message as platform_message
|
|
|
|
|
|
class RuleJudgeResult(pydantic.BaseModel):
|
|
|
|
matching: bool = False
|
|
|
|
replacement: platform_message.MessageChain = None
|