ML-Learner / python_backend /src /Agents /models /FormFiller_model.py
VashuTheGreat2's picture
Upload folder using huggingface_hub
c01955c verified
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]