sdhanabal1 commited on
Commit
81f76cd
·
1 Parent(s): 9ab7b73

Update spinner text

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -103,7 +103,7 @@ def main() -> None:
103
 
104
  if summarize_button:
105
 
106
- with st.spinner('Summarizing the text...'):
107
  if is_valid_url(tc_text_input):
108
  extract_summary_sentences = summarizer.extractive_summary_from_url(tc_text_input, sentences_length_input)
109
  else:
 
103
 
104
  if summarize_button:
105
 
106
+ with st.spinner('Summarizing the text is in progress...'):
107
  if is_valid_url(tc_text_input):
108
  extract_summary_sentences = summarizer.extractive_summary_from_url(tc_text_input, sentences_length_input)
109
  else: