kth-qa / schema.py
erseux's picture
new huggingface structure
cc0bd0f
from typing import List
from pydantic import BaseModel
class Question(BaseModel):
question: str
class Answer(BaseModel):
answer: str
urls: List[str]