karthickg12 commited on
Commit
46b181f
1 Parent(s): 3578d07

Update app.py

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