karthickg12 commited on
Commit
3578d07
·
verified ·
1 Parent(s): 3908c6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,11 +10,11 @@ with col2:
10
  y=st.button("Text Summarization")
11
 
12
  if x:
13
- t=st.text_area("Enter the Text")
14
  if t:
15
  st.write(pipe(t))
16
  if y:
17
- t1=st.text_area("Enter the Text for Summarization")
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