Commit
·
82688c1
1
Parent(s):
e3d64d5
Update app.py
Browse files
app.py
CHANGED
@@ -67,5 +67,6 @@ def my_inference_function(name):
|
|
67 |
return "Hello " + name + "!"
|
68 |
|
69 |
gradio_interface = gr.Interface([chat,echo], inputs=['text',state], outputs=['text', state])
|
70 |
-
|
71 |
-
|
|
|
|
67 |
return "Hello " + name + "!"
|
68 |
|
69 |
gradio_interface = gr.Interface([chat,echo], inputs=['text',state], outputs=['text', state])
|
70 |
+
gradio_logger = gr.Interface(echo, "textbox", "textbox").launch()
|
71 |
+
#gradio_interface.launch(debug=True)
|
72 |
+
demo = gr.Parallel(gradio_interface, gradio_logger).launch(debug=True)
|