Is there any documentation on how the prefect UI c...
# prefect-ui
d
Is there any documentation on how the prefect UI converts pydantic models to forms? I have a complex configuration set up and it would be nice to know expected behavior without just using trial-and-error on all the different approaches.
1
j
Hi Daniel. Thanks for the suggestion for documentation! We don't have anything that sets that out but I can see a use for it. If it helps the ui source code is here and should give an idea on how things are converted. (It is complex and we hope to simplify it but it's a complex task!) Also worth noting that you can opt in to enforce your parameter schemas for deployments to avoid the creation of flow runs with parameters that are incompatible with deployed flows.
d
Thank you!