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
Bring your towel and join one of the fastest growing data communities. Welcome to our second-generation open source orchestration platform, a completely rethought approach to dataflow automation.