ReMe/memory_scope/scheme/message.py
2024-06-21 11:39:37 +08:00

9 lines
324 B
Python

from pydantic import Field, BaseModel
class Message(BaseModel):
role: str = Field(..., description="The role of the message sender (user, assistant, system)")
content: str = Field(..., description="The body of the message")
time_created: int = Field("", description="Timestamp when the message was created")