richardorama commited on
Commit
ba296f2
·
verified ·
1 Parent(s): 1cbfec0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,11 +29,11 @@ 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
  def summarize(txt):
33
- st.write(txt)
34
  st.write('--------------------------------------------------------------')
35
  st.write(summarizer(txt, max_length=130, min_length=30, do_sample=False))
36
- # [{'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.'}]
37
 
38
 
39
  summarize_text = st.sidebar.button('Summarize Text', on_click=summarize(ARTICLE))
 
29
 
30
  ARTICLE = st.sidebar.text_area('Article', DEFAULT_ARTICLE, height=150)
31
 
32
+
33
  def summarize(txt):
34
+ st.write(txt[:100])
35
  st.write('--------------------------------------------------------------')
36
  st.write(summarizer(txt, max_length=130, min_length=30, do_sample=False))
 
37
 
38
 
39
  summarize_text = st.sidebar.button('Summarize Text', on_click=summarize(ARTICLE))