Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -188,10 +188,9 @@ class RAGInterface:
|
|
188 |
)
|
189 |
|
190 |
# Wrap the interface with custom HTML
|
191 |
-
gr.Blocks(
|
192 |
gr.HTML(header_html)
|
193 |
demo.render()
|
194 |
-
return wrapped_demo
|
195 |
|
196 |
def main():
|
197 |
interface = RAGInterface()
|
|
|
188 |
)
|
189 |
|
190 |
# Wrap the interface with custom HTML
|
191 |
+
return gr.Blocks() as wrapped_demo:
|
192 |
gr.HTML(header_html)
|
193 |
demo.render()
|
|
|
194 |
|
195 |
def main():
|
196 |
interface = RAGInterface()
|