efederici commited on
Commit
970a813
1 Parent(s): aa513d4
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -140,18 +140,13 @@ def main():
140
  "num_return_sequences": 1,
141
  }
142
 
143
- input_text = st.text_area("Enter an Italian news text", DEFAULT_TEXT, height=500)
144
 
145
  if st.button("Generate summary"):
146
 
147
  with st.spinner("Generating summary ..."):
148
- if debug:
149
- from time import sleep
150
-
151
- sleep(2)
152
- response = """Trafugata in Svizzera, venduta a miliardari collezionisti senza scrupoli, oppure nascosta da Cosa Nostra chissà dove ed esibita come simbolo di potere durante summit tra mafiosi. Dopo oltre mezzo secolo quel che è certo è che anche a Natale 2020 la “Natività” di Caravaggio, una delle opere più preziose rubate e mai più ritrovate, non potrà essere ammirata da nessuno."""
153
- else:
154
- response = generator.summarize(MODEL, input_text, params)
155
 
156
  st.header("Summary:")
157
  st.markdown(response)
 
140
  "num_return_sequences": 1,
141
  }
142
 
143
+ input_text = st.text_area("Enter an Italian news text", DEFAULT_TEXT, height=450)
144
 
145
  if st.button("Generate summary"):
146
 
147
  with st.spinner("Generating summary ..."):
148
+
149
+ response = generator.summarize(MODEL, input_text, params)
 
 
 
 
 
150
 
151
  st.header("Summary:")
152
  st.markdown(response)