Spaces:
Paused
Paused
File size: 167 Bytes
c1300fe | 1 2 3 4 5 6 7 8 9 10 | from pydantic import BaseModel
from typing import Literal
class ChatMessage(BaseModel):
role: Literal["user", "assistant", "system"]
content: str
|