yashmakan's picture
files added
bf2bf0e
raw
history blame contribute delete
323 Bytes
from typing import Optional
from pydantic import BaseModel, Field
class FetchPreviousChatsRequest(BaseModel):
from_dt: Optional[str] = Field(None, description="fetching chats from a specific datetime.")
class SendNewChatRequest(BaseModel):
text: str = Field(..., description="The text message sent to the AI")