Spaces:
Running
Running
apple muncy
commited on
Commit
·
170ba22
1
Parent(s):
17611bd
add font line to gradio blocks
Browse filesSigned-off-by: apple muncy <[email protected]>
- __pycache__/app.cpython-311.pyc +0 -0
- app.py +2 -2
__pycache__/app.cpython-311.pyc
ADDED
Binary file (25.8 kB). View file
|
|
app.py
CHANGED
@@ -478,7 +478,7 @@ async def simulate_webhook(
|
|
478 |
|
479 |
def create_gradio_app():
|
480 |
"""Create Gradio interface"""
|
481 |
-
with gr.Blocks(title="HF Tagging Bot", theme=gr.themes.Soft()) as demo:
|
482 |
gr.Markdown("# 🏷️ HF Tagging Bot Dashboard")
|
483 |
gr.Markdown("*Automatically adds tags to models when mentioned in discussions*")
|
484 |
|
@@ -534,7 +534,7 @@ def create_dash_app():
|
|
534 |
global g_tools
|
535 |
return g_tools
|
536 |
|
537 |
-
with gr.Blocks(title="HF Tagging Bot", theme=gr.themes.Soft()) as demo:
|
538 |
gr.Markdown("# 🏷️ HF Tagging Bot Dashboard")
|
539 |
gr.Markdown("*Tools found*")
|
540 |
dash_btn = gr.Button("🏷️ Test Tag Detection")
|
|
|
478 |
|
479 |
def create_gradio_app():
|
480 |
"""Create Gradio interface"""
|
481 |
+
with gr.Blocks(title="HF Tagging Bot", theme=gr.themes.Soft( font=[gr.themes.GoogleFont("Roboto"), "Open Sans", "sans-serif"]) ) as demo:
|
482 |
gr.Markdown("# 🏷️ HF Tagging Bot Dashboard")
|
483 |
gr.Markdown("*Automatically adds tags to models when mentioned in discussions*")
|
484 |
|
|
|
534 |
global g_tools
|
535 |
return g_tools
|
536 |
|
537 |
+
with gr.Blocks(title="HF Tagging Bot", theme=gr.themes.Soft(font=[gr.themes.GoogleFont("Roboto"), "Open Sans", "sans-serif"])) as demo:
|
538 |
gr.Markdown("# 🏷️ HF Tagging Bot Dashboard")
|
539 |
gr.Markdown("*Tools found*")
|
540 |
dash_btn = gr.Button("🏷️ Test Tag Detection")
|