hackrx / models.py
asdfghcwrej6u's picture
Upload 6 files
7de37f7 verified
raw
history blame contribute delete
187 Bytes
from pydantic import BaseModel
from typing import List
class QueryRequest(BaseModel):
documents: str
questions: List[str]
class QueryResponse(BaseModel):
answers: List[str]