Scott Cogan commited on
Commit
8ef9379
·
1 Parent(s): 943c318

fix: Disable SSR mode in GradioUI launch to resolve blank UI issue

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -267,4 +267,4 @@ agent = CustomCodeAgent(
267
  )
268
 
269
  # Configure Gradio UI with sharing enabled
270
- GradioUI(agent).launch() # Remove share=True parameter
 
267
  )
268
 
269
  # Configure Gradio UI with sharing enabled
270
+ GradioUI(agent).launch(ssr_mode=False)