Gianpaolo Macario commited on
Commit
69722f6
·
1 Parent(s): 0cd3c2c

feat(app): use default theme

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -462,7 +462,10 @@ async def simulate_webhook(
462
 
463
  def create_gradio_app():
464
  """Create Gradio interface"""
465
- with gr.Blocks(title="HF Tagging Bot", theme=gr.themes.Soft()) as demo:
 
 
 
466
  gr.Markdown("# 🏷️ HF Tagging Bot Dashboard")
467
  gr.Markdown("*Automatically adds tags to models when mentioned in discussions*")
468
 
 
462
 
463
  def create_gradio_app():
464
  """Create Gradio interface"""
465
+ with gr.Blocks(
466
+ title="HF Tagging Bot",
467
+ # theme=gr.themes.Soft()
468
+ ) as demo:
469
  gr.Markdown("# 🏷️ HF Tagging Bot Dashboard")
470
  gr.Markdown("*Automatically adds tags to models when mentioned in discussions*")
471