Jade-MH commited on
Commit
84fb02a
·
verified ·
1 Parent(s): ac63737

Hope a good chatbot

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -96,12 +96,11 @@ support tool.</p>
96
  """
97
 
98
  with gr.Blocks() as demo:
99
-     with gr.Row():
100
-         with gr.Column(scale=1):
101
-             gr.HTML(about_text)
102
-
103
-         with gr.Column(scale=2):
104
-             gr.ChatInterface(fn=respond, title = "Mind Matters", description = "Always here to help", editable = True)
105
 
106
  demo.launch(theme=gr.themes.Soft())
107
 
 
96
  """
97
 
98
  with gr.Blocks() as demo:
99
+ with gr.Row():
100
+ with gr.Column(scale=1):
101
+ gr.HTML(about_text)
102
+ with gr.Column(scale=2):
103
+ gr.ChatInterface(fn=respond, title = "Mind Matters", description = "Always here to help", editable = True)
 
104
 
105
  demo.launch(theme=gr.themes.Soft())
106