aasiavakil commited on
Commit
72a625b
·
verified ·
1 Parent(s): d0077d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -154,9 +154,21 @@ def chatbot(message, history):
154
 
155
  return response
156
 
157
- # interface
 
 
 
 
 
158
  with gr.Blocks() as chatbot:
159
  with gr.Row(scale=1):
160
  gr.Image("heading.png")
 
 
 
 
 
 
 
161
 
162
  demo.launch()
 
154
 
155
  return response
156
 
157
+ about_text = """
158
+ ## Use this chatbot to help you find affordable healthcare and figure out what medical subsidies you are eligible for!
159
+ """
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("stethoscope.png")
170
+ gr.Markdown(about_text)
171
+ with gr.Column(scale=2):
172
+ gr.ChatInterface()
173
 
174
  demo.launch()