Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,7 @@ def combined_interface(input1, input2):
|
|
73 |
|
74 |
return combined_output
|
75 |
|
76 |
-
parent_interface =
|
77 |
|
78 |
parent_interface
|
79 |
#iface.launch(debug = True)#, server_name = "0.0.0.0", server_port = 8001) # Ref. for parameters: https://www.gradio.app/docs/interface
|
|
|
73 |
|
74 |
return combined_output
|
75 |
|
76 |
+
parent_interface = gradio.Interface(fn=combined_interface, inputs=["text","text"], outputs=["model1_output", "model2_output"])
|
77 |
|
78 |
parent_interface
|
79 |
#iface.launch(debug = True)#, server_name = "0.0.0.0", server_port = 8001) # Ref. for parameters: https://www.gradio.app/docs/interface
|