Generate forms from pydantic model or json schema

I am developing in a machine learning library and we have several treatments, each having a large number of options. We validate the options with a json schema.
We would like to generate streamlit dashboards from the json schema such that the user can configure the options and save them.
I am aware of GitHub - LukasMasuch/streamlit-pydantic: πŸͺ„ Auto-generate Streamlit UI from Pydantic Models and Dataclasses. , which could work since we could generate pydantic models from the json schema. But this library seems inactive since mid 2023.
I have also seen a post : Build a Streamlit Form Generator app to avoid writing code by hand that uses streamlit-pydantic, but it is from last 2022.
Would you recommend using this library or are you aware of an equivalent which is active? Or is the generation of streamlit form from json schema or pydantic model considered as a deprecated approach? Thanks