chyams Claude Opus 4.6 commited on
Commit
f0dc59b
·
1 Parent(s): e9c1ef7

Embedding Explorer: all params in constructor for HF Gradio compat

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -782,7 +782,7 @@ THEME = gr.themes.Soft(
782
  block_title_text_color="#63348d",
783
  )
784
 
785
- with gr.Blocks(title="Embedding Explorer", theme=THEME) as demo:
786
 
787
  gr.Markdown(
788
  "# Embedding Explorer\n"
@@ -840,4 +840,4 @@ with gr.Blocks(title="Embedding Explorer", theme=THEME) as demo:
840
  outputs=[exp_plot, exp_status, exp_radio],
841
  )
842
 
843
- demo.launch(css=CSS, head=FORCE_LIGHT)
 
782
  block_title_text_color="#63348d",
783
  )
784
 
785
+ with gr.Blocks(title="Embedding Explorer", theme=THEME, css=CSS, head=FORCE_LIGHT) as demo:
786
 
787
  gr.Markdown(
788
  "# Embedding Explorer\n"
 
840
  outputs=[exp_plot, exp_status, exp_radio],
841
  )
842
 
843
+ demo.launch()