Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -10,11 +10,11 @@ with col2:
|
|
10 |
y=st.button("Text Summarization")
|
11 |
|
12 |
if x:
|
13 |
-
t=st.
|
14 |
if t:
|
15 |
st.write(pipe(t))
|
16 |
if y:
|
17 |
-
t1=st.
|
18 |
if t1:
|
19 |
st.write(summarizer(t1))
|
20 |
|
|
|
10 |
y=st.button("Text Summarization")
|
11 |
|
12 |
if x:
|
13 |
+
t=st.text_input("Enter the Text")
|
14 |
if t:
|
15 |
st.write(pipe(t))
|
16 |
if y:
|
17 |
+
t1=st.text_input("Enter the Text for Summarization")
|
18 |
if t1:
|
19 |
st.write(summarizer(t1))
|
20 |
|