Spaces:
Runtime error
Runtime error
File size: 283 Bytes
f1e08af a4f4f24 f1e08af a4f4f24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
from summarize import bart_summarize
# Create a text field
text = st.text_input("Enter text here")
# Create a button
button = st.button("Click here")
# get text from text field and print it
if button:
summary = bart_summarize(text)
st.write(summary) |