Spaces:
Sleeping
Sleeping
File size: 253 Bytes
c01955c | 1 2 3 4 5 6 7 8 | from pydantic import BaseModel,Field
from typing import List
class FormFillerOutput(BaseModel):
value:str=Field(description="This is the value witch must be filled in that field")
class FormFillerModel(BaseModel):
output:List[FormFillerOutput]
|