Shriharsh commited on
Commit
764b36f
·
verified ·
1 Parent(s): 7065348

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -87,12 +87,12 @@ chatbot = gr.Chatbot(height=450,
87
  layout="bubble")
88
 
89
  with gr.Blocks() as demo:
90
- gr.HTML("<h1><center>Mistral-7B-Chat 💬<h1><center>")
91
  gr.ChatInterface(
92
  generate,
93
  chatbot=chatbot, # Use the created Chatbot object
94
  additional_inputs=additional_inputs,
95
- examples=[["Joke on darth vader and gandalf"], ["Write me a recipe for Butter Chicken."]],
96
 
97
  )
98
 
 
87
  layout="bubble")
88
 
89
  with gr.Blocks() as demo:
90
+ gr.HTML("<h1><center>Gemma-7B-Chat 💬<h1><center>")
91
  gr.ChatInterface(
92
  generate,
93
  chatbot=chatbot, # Use the created Chatbot object
94
  additional_inputs=additional_inputs,
95
+ examples=[["What is the meaning of life?"], ["Tell me something about Mt Fuji."]],
96
 
97
  )
98