13 lines
241 B
Python
Raw Permalink Normal View History

2025-12-04 09:52:39 +08:00
from datetime import datetime
from typing import List
from pydantic import BaseModel
class MatchResult(BaseModel):
timestamp: datetime
source_chat: str
matched_words: List[str]
contexts: List[str]
message_preview: str