Files
LangBot/pkg/pipeline/resprule/entities.py
T
2025-06-30 21:47:40 +08:00

10 lines
202 B
Python

import pydantic
from ...platform.types import message as platform_message
class RuleJudgeResult(pydantic.BaseModel):
matching: bool = False
replacement: platform_message.MessageChain = None