Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -160,12 +160,14 @@ about_text = """
|
|
| 160 |
title = """
|
| 161 |
#HealthPal.io
|
| 162 |
"""
|
| 163 |
-
with gr.Blocks():
|
| 164 |
with gr.Row(scale=1):
|
| 165 |
-
gr.Image("heading.png"
|
| 166 |
-
with gr.Row(scale=
|
| 167 |
with gr.Column(scale=1):
|
| 168 |
gr.Markdown(title)
|
| 169 |
-
gr.Image("logo.png"
|
| 170 |
gr.Markdown(about_text)
|
| 171 |
-
|
|
|
|
|
|
|
|
|
| 160 |
title = """
|
| 161 |
#HealthPal.io
|
| 162 |
"""
|
| 163 |
+
with gr.Blocks() as chatbot:
|
| 164 |
with gr.Row(scale=1):
|
| 165 |
+
gr.Image("heading.png")
|
| 166 |
+
with gr.Row(scale=2):
|
| 167 |
with gr.Column(scale=1):
|
| 168 |
gr.Markdown(title)
|
| 169 |
+
gr.Image("logo.png")
|
| 170 |
gr.Markdown(about_text)
|
| 171 |
+
with gr.Column(scale=2):
|
| 172 |
+
gr.ChatInterface(respond)
|
| 173 |
+
chatbot.launch()
|