summarizer / pages /text.py
saketh092's picture
Upload 11 files
4ea8f5c verified
raw
history blame
199 Bytes
import load
import streamlit as st
text=st.text_input("Enter the text you want to summarize..")
if text:
response=(load.output(text))
for chunk in response:
st.write(chunk.text)