* chore: Folder rearrangement * chore: Remove unused deps, and add mypy step in CI for graph-service * fix: Mypy errors * fix: linter * fix mypy * fix mypy * chore: Update docker setup * chore: Reduce graph service image size * chore: Install graph service deps on CI * remove cache from typecheck * chore: install graph-service deps on typecheck action * update graph service mypy direction * feat: Add release service image step * chore: Update depot configuration * chore: Update release image job to run on releases * chore: Test depot multiplatform build * update release action tag * chore: Update action to be in accordance with zep image publish * test * test * revert * chore: Update python slim image used in service docker * chore: Remove unused endpoints and dtos
8 lines
281 B
Python
8 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')
|