richardorama commited on
Commit
f7d4880
1 Parent(s): 9b7381f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -29,5 +29,13 @@ If convicted, Barrientos faces up to four years in prison. Her next court appea
29
 
30
  ARTICLE = st.sidebar.text_area('Article', DEFAULT_ARTICLE, height=150)
31
 
32
- st.write(summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False))
33
- # [{'summary_text': 'Liana Barrientos, 39, is charged with two counts of "offering a false instrument for filing in the first degree" In total, she has been married 10 times, with nine of her marriages occurring between 1999 and 2002. She is believed to still be married to four men.'}]
 
 
 
 
 
 
 
 
 
29
 
30
  ARTICLE = st.sidebar.text_area('Article', DEFAULT_ARTICLE, height=150)
31
 
32
+ def summarize(txt=ARTICLE):
33
+ st.write(summarizer(txt, max_length=130, min_length=30, do_sample=False))
34
+ # [{'summary_text': 'Liana Barrientos, 39, is charged with two counts of "offering a false instrument for filing in the first degree" In total, she has been married 10 times, with nine of her marriages occurring between 1999 and 2002. She is believed to still be married to four men.'}]
35
+
36
+
37
+ summarize_text = st.sidebar.button('Summarize Text', on_click=summarize)
38
+
39
+ if not summarize_text:
40
+ st.warning('👈 Please enter text!')
41
+