wop commited on
Commit
03a5566
1 Parent(s): 51e8e62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -92,10 +92,12 @@ additional_inputs = [
92
  )
93
  ]
94
 
95
- with gr.Blocks(theme=gr.themes.Soft(), customCSS) as demo:
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)