Spaces:
Sleeping
Sleeping
Hope a good chatbot
Browse files
app.py
CHANGED
|
@@ -96,12 +96,11 @@ support tool.</p>
|
|
| 96 |
"""
|
| 97 |
|
| 98 |
with gr.Blocks() as demo:
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 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 |
|