Spaces:
Running on Zero
Running on Zero
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -79,7 +79,7 @@ CSS = """
|
|
| 79 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 80 |
"""
|
| 81 |
|
| 82 |
-
with gr.Blocks(
|
| 83 |
gr.Markdown(
|
| 84 |
"""
|
| 85 |
# Chatterbox-Flash TTS
|
|
@@ -156,4 +156,4 @@ with gr.Blocks(css=CSS) as demo:
|
|
| 156 |
api_name="generate",
|
| 157 |
)
|
| 158 |
|
| 159 |
-
demo.launch(mcp_server=True, theme=gr.themes.Citrus())
|
|
|
|
| 79 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 80 |
"""
|
| 81 |
|
| 82 |
+
with gr.Blocks() as demo:
|
| 83 |
gr.Markdown(
|
| 84 |
"""
|
| 85 |
# Chatterbox-Flash TTS
|
|
|
|
| 156 |
api_name="generate",
|
| 157 |
)
|
| 158 |
|
| 159 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|