multimodalart HF Staff commited on
Commit
3e251e8
·
verified ·
1 Parent(s): 79c142b

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(theme=gr.themes.Citrus(), css=EMOJI_PALETTE_CSS + CSS) as demo:
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)