import streamlit as st from model import * article = st.text_input("label goes here") output = predict(article) st.header(f'Summary:\n\n') st.subheader(output)