Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -92,10 +92,12 @@ additional_inputs = [
|
|
92 |
)
|
93 |
]
|
94 |
|
95 |
-
with gr.Blocks(theme=gr.themes.Soft()
|
96 |
gr.ChatInterface(
|
97 |
generate,
|
98 |
additional_inputs=additional_inputs,
|
99 |
)
|
|
|
|
|
100 |
|
101 |
demo.queue().launch(debug=True)
|
|
|
92 |
)
|
93 |
]
|
94 |
|
95 |
+
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
96 |
gr.ChatInterface(
|
97 |
generate,
|
98 |
additional_inputs=additional_inputs,
|
99 |
)
|
100 |
+
|
101 |
+
demo.set_css(customCSS)
|
102 |
|
103 |
demo.queue().launch(debug=True)
|