AI-RESEARCHER-2024 commited on
Commit
975d8aa
·
verified ·
1 Parent(s): 9d8ad6a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -187,8 +187,8 @@ class RAGInterface:
187
  theme=gr.themes.Default(),
188
  )
189
 
190
- # Wrap the interface with custom HTML
191
- with gr.Blocks(css=custom_css, html=header_html) as wrapper:
192
  gr.HTML(header_html)
193
  demo.render()
194
  return wrapper
 
187
  theme=gr.themes.Default(),
188
  )
189
 
190
+ # Wrap the interface with custom CSS
191
+ with gr.Blocks(css=custom_css) as wrapper:
192
  gr.HTML(header_html)
193
  demo.render()
194
  return wrapper