msamogh commited on
Commit
0e66014
1 Parent(s): a044450
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ def main():
60
 
61
  interpreter = Interpreter.load(RASA_MODEL_PATH)
62
  print("Model loaded.")
63
- iface = gr.Interface(fn=predict, inputs=[gr.inputs.Dropdown(MODEL_TYPES.keys()), "text"], outputs="text")
64
  iface.launch()
65
 
66
 
 
60
 
61
  interpreter = Interpreter.load(RASA_MODEL_PATH)
62
  print("Model loaded.")
63
+ iface = gr.Interface(fn=predict, inputs=[gr.inputs.Dropdown(list(MODEL_TYPES.keys())), "text"], outputs="text")
64
  iface.launch()
65
 
66