f51dffd
e8b25ec
5ebbfc3
e8b25ec
| | import streamlit as st
from model import *
article = user_input = st.text_area("Enter the article/ TEXT")
with st.spinner('Generating Summary...'):
output = predict(article)
st.header(f'Summary:\n\n')
st.subheader(output) |