sablab commited on
Commit
4b11dc0
·
verified ·
1 Parent(s): 8549fec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -89,12 +89,11 @@ css = """
89
  }
90
  """
91
 
92
- with gr.Blocks(css=css) as demo:
93
  gr.HTML("<h1><center>Mistral 7B Instruct<h1><center>")
94
  gr.ChatInterface(
95
  generate,
96
  additional_inputs=additional_inputs,
97
- show_copy_button= True
98
  )
99
 
100
  demo.queue().launch(debug=True)
 
89
  }
90
  """
91
 
92
+ with gr.Blocks(css=css, show_copy_button= True) as demo:
93
  gr.HTML("<h1><center>Mistral 7B Instruct<h1><center>")
94
  gr.ChatInterface(
95
  generate,
96
  additional_inputs=additional_inputs,
 
97
  )
98
 
99
  demo.queue().launch(debug=True)