Spaces:
Running
on
Zero
Running
on
Zero
Upload folder using huggingface_hub
Browse files
src/ui/spaces_interface.py
CHANGED
|
@@ -240,7 +240,9 @@ def create_spaces_interface():
|
|
| 240 |
"""
|
| 241 |
|
| 242 |
with gr.Blocks(
|
| 243 |
-
title="MeetingNotes - AI Analysis with Voxtral"
|
|
|
|
|
|
|
| 244 |
) as demo:
|
| 245 |
# Main header with style (identique à l'original)
|
| 246 |
with gr.Column(elem_classes="main-header"):
|
|
@@ -499,5 +501,5 @@ def create_spaces_interface():
|
|
| 499 |
elem_classes="footer-info"
|
| 500 |
)
|
| 501 |
|
| 502 |
-
# Retourner demo
|
| 503 |
-
return demo
|
|
|
|
| 240 |
"""
|
| 241 |
|
| 242 |
with gr.Blocks(
|
| 243 |
+
title="MeetingNotes - AI Analysis with Voxtral",
|
| 244 |
+
theme=custom_glass_theme,
|
| 245 |
+
css=custom_css
|
| 246 |
) as demo:
|
| 247 |
# Main header with style (identique à l'original)
|
| 248 |
with gr.Column(elem_classes="main-header"):
|
|
|
|
| 501 |
elem_classes="footer-info"
|
| 502 |
)
|
| 503 |
|
| 504 |
+
# Retourner demo (thème et CSS déjà configurés dans gr.Blocks pour Gradio 6)
|
| 505 |
+
return demo
|