Spaces:
Running
Running
File size: 259 Bytes
e9d730a |
1 2 3 4 5 6 7 8 9 |
# src/models/base.py
from pydantic import BaseModel
from datetime import datetime
from typing import Optional, List, Dict
class ChatMetadata(BaseModel):
"""Base metadata model for chat-related responses"""
conversation_id: str
timestamp: datetime |