Rag_Production / src /api /schemas.py
mhungtr211
Deploy bản RAG sạch lên Hugging Face
ac7ebac
Raw
History Blame Contribute Delete
176 Bytes
from pydantic import BaseModel
from typing import Optional
class RetrievalInput(BaseModel):
user_input: str
session_id: str
user_id: Optional[str] = "anonymous"