Spaces:
Running on Zero
Running on Zero
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -335,7 +335,7 @@ Generates speech from text, optional reference audio, and optional style caption
|
|
| 335 |
Use Duration Scale for small adjustments or Seconds for exact manual control.
|
| 336 |
"""
|
| 337 |
|
| 338 |
-
with gr.Blocks(
|
| 339 |
with gr.Column(elem_id="col-container"):
|
| 340 |
gr.Markdown(title)
|
| 341 |
gr.Markdown(description)
|
|
@@ -592,4 +592,4 @@ Use Duration Scale for small adjustments or Seconds for exact manual control.
|
|
| 592 |
if __name__ == "__main__":
|
| 593 |
demo = build_demo()
|
| 594 |
demo.queue(default_concurrency_limit=1)
|
| 595 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 335 |
Use Duration Scale for small adjustments or Seconds for exact manual control.
|
| 336 |
"""
|
| 337 |
|
| 338 |
+
with gr.Blocks() as demo:
|
| 339 |
with gr.Column(elem_id="col-container"):
|
| 340 |
gr.Markdown(title)
|
| 341 |
gr.Markdown(description)
|
|
|
|
| 592 |
if __name__ == "__main__":
|
| 593 |
demo = build_demo()
|
| 594 |
demo.queue(default_concurrency_limit=1)
|
| 595 |
+
demo.launch(theme=gr.themes.Citrus(), css=EMOJI_PALETTE_CSS + CSS, mcp_server=True)
|