Update app.py
Browse files
app.py
CHANGED
@@ -74,9 +74,8 @@ sql_interface = gr.Interface(
|
|
74 |
description="Type your message in the box above, and the chatbot will respond.",
|
75 |
)
|
76 |
|
77 |
-
# Combine the chatbot and SQL execution interfaces
|
78 |
-
combined_interface = gr.Interface([chatbot_interface, sql_interface], layout="horizontal")
|
79 |
-
|
80 |
# Launch the Gradio interface
|
81 |
if __name__ == "__main__":
|
82 |
-
|
|
|
|
|
|
74 |
description="Type your message in the box above, and the chatbot will respond.",
|
75 |
)
|
76 |
|
|
|
|
|
|
|
77 |
# Launch the Gradio interface
|
78 |
if __name__ == "__main__":
|
79 |
+
chatbot_interface.launch()
|
80 |
+
sql_interface.launch()
|
81 |
+
|