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