How to use ml app build using streamlit in web page
In your python file (probably called app.py) you can insert any Python code that you normally would insert. So if you can use ml app build via python today, then you can use the exact same code in Streamlit.
A little hint though is to use the st.cache
annotation on the function that trains your model or the function that uses your model.
I am not an expert. But my guess is that you would use ml app build outside streamlit and then the model produced is used in your Streamlit app.
Thanks