mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +08:00
11 lines
218 B
Python
11 lines
218 B
Python
import pydantic.v1 as pydantic
|
|
|
|
from ...platform.types import message as platform_message
|
|
|
|
|
|
class RuleJudgeResult(pydantic.BaseModel):
|
|
|
|
matching: bool = False
|
|
|
|
replacement: platform_message.MessageChain = None
|