multimodalart HF Staff commited on
Commit
59c78fe
·
verified ·
1 Parent(s): 13b780c

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -79,7 +79,7 @@ CSS = """
79
  .dark .gradio-container { color: var(--body-text-color); }
80
  """
81
 
82
- with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
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(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,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())