Spaces:
Sleeping
Sleeping
Add Streamlit app file for Hugging Face Space
Browse files- streamlit_app.py +26 -0
streamlit_app.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# streamlit_app.py
|
2 |
+
import streamlit as st
|
3 |
+
import requests
|
4 |
+
|
5 |
+
st.set_page_config(page_title="Text Summarizer", layout="centered")
|
6 |
+
|
7 |
+
st.title("📝 Text Summarization App")
|
8 |
+
|
9 |
+
input_text = st.text_area("Enter text to summarize", height=200)
|
10 |
+
|
11 |
+
if st.button("Summarize"):
|
12 |
+
if input_text.strip() == "":
|
13 |
+
st.warning("Please enter some text.")
|
14 |
+
else:
|
15 |
+
try:
|
16 |
+
response = requests.post(
|
17 |
+
"http://localhost:8080/predict",
|
18 |
+
params={"text": input_text}
|
19 |
+
)
|
20 |
+
if response.status_code == 200:
|
21 |
+
st.subheader("Summary")
|
22 |
+
st.success(response.text)
|
23 |
+
else:
|
24 |
+
st.error("Failed to summarize. Try again.")
|
25 |
+
except Exception as e:
|
26 |
+
st.error(f"Error: {e}")
|