mirror of
https://github.com/getzep/graphiti.git
synced 2025-07-27 10:56:43 +00:00
9 lines
281 B
Python
9 lines
281 B
Python
![]() |
from pydantic import BaseModel, Field
|
||
|
|
||
|
from graph_service.dto.common import Message
|
||
|
|
||
|
|
||
|
class AddMessagesRequest(BaseModel):
|
||
|
group_id: str = Field(..., description='The group id of the messages to add')
|
||
|
messages: list[Message] = Field(..., description='The messages to add')
|