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
|
|
@@ -90,7 +90,7 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
|
|
| 90 |
"""
|
| 91 |
)
|
| 92 |
|
| 93 |
-
with gr.Row(
|
| 94 |
with gr.Column(scale=3):
|
| 95 |
text = gr.Textbox(
|
| 96 |
value="Sometimes it's better to just let things slide, you know?",
|
|
@@ -156,4 +156,4 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
|
|
| 156 |
api_name="generate",
|
| 157 |
)
|
| 158 |
|
| 159 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 79 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 80 |
"""
|
| 81 |
|
| 82 |
+
with gr.Blocks(css=CSS) as demo:
|
| 83 |
gr.Markdown(
|
| 84 |
"""
|
| 85 |
# Chatterbox-Flash TTS
|
|
|
|
| 90 |
"""
|
| 91 |
)
|
| 92 |
|
| 93 |
+
with gr.Row(elem_id="col-container"):
|
| 94 |
with gr.Column(scale=3):
|
| 95 |
text = gr.Textbox(
|
| 96 |
value="Sometimes it's better to just let things slide, you know?",
|
|
|
|
| 156 |
api_name="generate",
|
| 157 |
)
|
| 158 |
|
| 159 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus())
|