svalcin commited on
Commit
f7f7914
1 Parent(s): ab9ccf0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def predict_next_questions(state, n_questions):
20
  return learner.predict(state, n_questions)
21
 
22
 
23
- intf = gr.Interface(fn=predict_next_questions, inputs="number", outputs="json")
24
 
25
  intf.launch()
26
 
 
20
  return learner.predict(state, n_questions)
21
 
22
 
23
+ intf = gr.Interface(fn=predict_next_questions, inputs=["number","number"], outputs="json")
24
 
25
  intf.launch()
26