Fix typo
Browse files
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 |
|