Pydantic minimal Model example

from pydantic import BaseModel, Field

class MyModel(BaseModel):
    variable1: float = Field(default=1.5, help="TODO enter your description here")
    variable2: str = Field(default="foobar", help="TODO enter your description here")