from pydantic import BaseModel
from typing import List

class RespuestaPython(BaseModel):
    respuesta: str
    documento: List[str]