aasiavakil commited on
Commit
d0077d0
·
verified ·
1 Parent(s): 925d616

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -154,13 +154,9 @@ def chatbot(message, history):
154
 
155
  return response
156
 
157
- # Gradio app
158
  with gr.Blocks() as chatbot:
159
- gr.Image(
160
- value="header.png",
161
- show_label=False,
162
- show_share_button = False,
163
- show_download_button = False)
164
- gr.ChatInterface(respond, type="messages")
165
 
166
  demo.launch()
 
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()