mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
9 lines
No EOL
323 B
Python
9 lines
No EOL
323 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") |