8cb8290
1
2
3
4
5
6
7
8
9
10
11
from typing import List from pydantic import BaseModel class Question(BaseModel): question: str class Answer(BaseModel): answer: str urls: List[str]