aasiavakil commited on
Commit
005721c
·
verified ·
1 Parent(s): 4401b37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
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", show_label = False, show_share_button = False, show_download_button = False)
166
- with gr.Row(scale=5):
167
  with gr.Column(scale=1):
168
  gr.Markdown(title)
169
- gr.Image("logo.png", show_label = False, show_share_button = False, show_download_button = False)
170
  gr.Markdown(about_text)
171
- chatbot.launch()
 
 
 
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()