Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -45,6 +45,10 @@ def respond(
|
|
45 |
translated_response = translate_text(response, translation)
|
46 |
yield response + "\n\nTranslation: " + translated_response
|
47 |
|
|
|
|
|
|
|
|
|
48 |
demo = gr.ChatInterface(
|
49 |
respond,
|
50 |
additional_inputs=[
|
|
|
45 |
translated_response = translate_text(response, translation)
|
46 |
yield response + "\n\nTranslation: " + translated_response
|
47 |
|
48 |
+
"""
|
49 |
+
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
50 |
+
"""
|
51 |
+
|
52 |
demo = gr.ChatInterface(
|
53 |
respond,
|
54 |
additional_inputs=[
|