Spaces:
Build error
Build error
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) |