File size: 234 Bytes
f51dffd
 
e8b25ec
 
 
 
5ebbfc3
 
 
 
 
 
e8b25ec
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)