teaevo commited on
Commit
4004cf7
·
1 Parent(s): 4e86ef1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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
- combined_interface.launch()
 
 
 
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
+