Shriharsh commited on
Commit
ed623c2
·
verified ·
1 Parent(s): 7c24627

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -92,9 +92,10 @@ with gr.Blocks(css=css) as demo:
92
  gr.HTML("<h1><center>Mistral-7B-Chat 💬<h1><center>")
93
  gr.ChatInterface(
94
  generate,
95
- #chatbot=chatbot, # Use the created Chatbot object
96
  additional_inputs=additional_inputs,
97
  examples=[["Joke on darth vader and gandalf"], ["Write me a recipe for Butter Chicken."]]
 
98
  )
99
 
100
  demo.queue().launch(debug=True)
 
92
  gr.HTML("<h1><center>Mistral-7B-Chat 💬<h1><center>")
93
  gr.ChatInterface(
94
  generate,
95
+ chatbot=chatbot, # Use the created Chatbot object
96
  additional_inputs=additional_inputs,
97
  examples=[["Joke on darth vader and gandalf"], ["Write me a recipe for Butter Chicken."]]
98
+ fill_height=True # Expand chat interface to fill available height
99
  )
100
 
101
  demo.queue().launch(debug=True)