hexgrad commited on
Commit
4660658
·
verified ·
1 Parent(s): e8c4059

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -152,7 +152,7 @@ with gr.Blocks() as app:
152
  gr.Markdown('[***Kokoro*** **is an open-weight TTS model with 82 million parameters.**](https://hf.co/hexgrad/Kokoro-82M)', container=True)
153
  with gr.Row():
154
  with gr.Column():
155
- text = gr.Textbox(label='Input Text', info=f"Up to ~500 characters per Generate, or {'∞' if IS_DUPLICATE else CHAR_LIMIT} characters per Stream")
156
  with gr.Row():
157
  voice = gr.Dropdown(list(CHOICES.items()), value='af_heart', label='Voice', info='Quality and availability vary by language')
158
  use_gpu = gr.Dropdown(
 
152
  gr.Markdown('[***Kokoro*** **is an open-weight TTS model with 82 million parameters.**](https://hf.co/hexgrad/Kokoro-82M)', container=True)
153
  with gr.Row():
154
  with gr.Column():
155
+ text = gr.Textbox(label='Input Text', info=f"Up to ~500 characters per Generate, or {'∞' if CHAR_LIMIT is None else CHAR_LIMIT} characters per Stream")
156
  with gr.Row():
157
  voice = gr.Dropdown(list(CHOICES.items()), value='af_heart', label='Voice', info='Quality and availability vary by language')
158
  use_gpu = gr.Dropdown(