Aigenthix commited on
Commit
2d518d1
·
verified ·
1 Parent(s): cdf7167

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -81,5 +81,5 @@ with gr.Blocks() as demo:
81
  clear_btn.click(lambda: None, None, chatbot, queue=False)
82
 
83
  if __name__ == "__main__":
84
- # In Gradio 6+, themes are passed directly inside launch() to avoid startup warnings
85
- demo.launch(theme=gr.themes.Soft())
 
81
  clear_btn.click(lambda: None, None, chatbot, queue=False)
82
 
83
  if __name__ == "__main__":
84
+ # Combined configuration for themes and sharing options in Gradio 6+
85
+ demo.launch(theme=gr.themes.Soft(), share=True)