CASLL commited on
Commit
4ef4b50
1 Parent(s): 8181415

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -9,6 +9,8 @@ model = st.radio(
9
  "Selecione um modelo",
10
  ["mT5", "Pegasus", "BART"])
11
 
 
 
12
  if st.button("Enviar"):
13
  st.write(Summarizer(link=videoURL, model=model))
14
 
 
9
  "Selecione um modelo",
10
  ["mT5", "Pegasus", "BART"])
11
 
12
+ model = str(model)
13
+
14
  if st.button("Enviar"):
15
  st.write(Summarizer(link=videoURL, model=model))
16