mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 03:15:06 +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
|