MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / ChatMessage

Class ChatMessage

backend/app/models/chat.py:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 SYSTEM = "system"
10
11class ChatMessage(BaseModel):
12 id: Optional[str] = None
13 role: MessageRole
14 content: str
15 timestamp: datetime = datetime.utcnow()
16 metadata: Optional[Dict] = None
17
18class ChatResponse(BaseModel):
19 message: ChatMessage

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected