Mr-TD commited on
Commit
df350fa
·
verified ·
1 Parent(s): 2a4567a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -71,8 +71,8 @@ col1, col2 = st.columns(2)
71
  col1.title('Input')
72
  col1.container(height=500, border=True).text_area("", option, height=1000)
73
  if col1.button("Summarize"):
74
- #with st.spinner('Wait for it...'):
75
- summary_output = summarize_text(option)
76
 
77
 
78
  col2.title('Output')
 
71
  col1.title('Input')
72
  col1.container(height=500, border=True).text_area("", option, height=1000)
73
  if col1.button("Summarize"):
74
+ with st.spinner('Wait for it...'):
75
+ summary_output = summarize_text(option)
76
 
77
 
78
  col2.title('Output')