Hello <@ULVA73B9P>, how do I specify where a param...
# ask-marvin
j
Hello @Marvin, how do I specify where a parameter is ordered/positioned in the UI when using a Pydantic Model to define the parameters schema? Right now it's not following the same order as they are in the Pydantic class. For example:
Copy code
class GoogleAdsFetchDataParams(BaseModel):
    jobs: list[Jobs] = Field(
        ...,
        description="List of jobs to run",
    )
    days_back: int = Field(
        default=90,
        description="Number of days back to fetch data for",
    )
    start_date: str | None = Field(
        default=None,
        description="Start date to fetch data for",
    )
    end_date: str | None = Field(
        default=None,
        description="End date to fetch data for",
    )
This orders it as : • Jobs • End Date • Days Back • Start date