Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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)
|