aashnaj commited on
Commit
c956554
·
verified ·
1 Parent(s): c23d4b5

adding banner

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -58,6 +58,12 @@ theme = gr.themes.Monochrome(
58
 
59
 
60
  with gr.Blocks(theme=theme) as chatbot:
 
 
 
 
 
 
61
  gr.Markdown("## 🥗🍴 The BiteBot")
62
  cuisine=gr.Textbox(label="cuisine")
63
  dietary_restrictions=gr.Dropdown(["Gluten-Free","Dairy-Free","Vegan","Vegetarian","Keto","Kosher","No Soy","No Seafood","No Pork","No Beef"], label="dietary restrictions", multiselect=True,info="you can select multiple!")
 
58
 
59
 
60
  with gr.Blocks(theme=theme) as chatbot:
61
+ gr.Image(
62
+ value="banner.png",
63
+ show_label=False,
64
+ show_share_button = False,
65
+ show_download_button = False)
66
+ gr.ChatInterface(respond, type="messages")
67
  gr.Markdown("## 🥗🍴 The BiteBot")
68
  cuisine=gr.Textbox(label="cuisine")
69
  dietary_restrictions=gr.Dropdown(["Gluten-Free","Dairy-Free","Vegan","Vegetarian","Keto","Kosher","No Soy","No Seafood","No Pork","No Beef"], label="dietary restrictions", multiselect=True,info="you can select multiple!")