Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
saketh092
/
summarizer
like
0
Configuration error
App
Files
Files
Community
2219e94
summarizer
/
pages
/
text.py
saketh092
Upload 11 files
4ea8f5c
verified
7 months ago
raw
Copy download link
history
blame
Safe
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)