import streamlit as st from llmware.models import ModelCatalog st.title("🎈 My new app") st.write( "Let's start building! For help and inspiration, head over to [docs.streamlit.io](https://docs.streamlit.io/)." ) model = ModelCatalog().load_model("bling-answer-tool") response = model.inference("My son is 21 years old.\nHow old is my son?") st.write("\nresponse: ", response)