File size: 277 Bytes
67f8819
 
7ce0fac
67f8819
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Pydantic schemas for API request/response validation."""

from api.schemas.chat import (
    ChatRequest,
    ChatResponse,
    Message,
    TaskSummary,
    ChatError
)

__all__ = [
    "ChatRequest",
    "ChatResponse",
    "Message",
    "TaskSummary",
    "ChatError"
]