shukdevdatta123 commited on
Commit
e2b003c
·
verified ·
1 Parent(s): 19f7938

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -168,20 +168,14 @@ with gr.Blocks() as translator_tab:
168
  trans_out_audio = gr.Audio(label='Translated Audio Output', interactive=False, streaming=False, autoplay=True)
169
  trans_out_tokens = gr.Textbox(interactive=False, show_label=False, info='Tokens used to generate the translated audio')
170
  translate_btn = gr.Button('Translate & Generate Audio', variant='primary')
171
-
172
- translate_btn.click(fn=translate_and_generate, inputs=[text, voice, speed], outputs=[trans_out_audio, trans_out_tokens, text], api_name=API_NAME)
173
-
174
- BANNER_TEXT = '''
175
- [***Kokoro*** **is an open-weight TTS model with 82 million parameters.**](https://huggingface.co/hexgrad/Kokoro-82M)
176
- As of January 31st, 2025, Kokoro was the most-liked [**TTS model**](https://huggingface.co/models?pipeline_tag=text-to-speech&sort=likes) and the most-liked [**TTS space**](https://huggingface.co/spaces?sort=likes&search=tts) on Hugging Face.
177
- This demo only showcases English, but you can directly use the model to access other languages.
178
- '''
179
 
 
180
  with gr.Blocks() as app:
181
  with gr.Row():
182
  gr.Markdown(BANNER_TEXT, container=True)
183
  with gr.Row():
184
  with gr.Column():
 
185
  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")
186
  with gr.Row():
187
  voice = gr.Dropdown(list(CHOICES.items()), value='af_heart', label='Voice', info='Quality and availability vary by language')
@@ -195,12 +189,17 @@ with gr.Blocks() as app:
195
  speed = gr.Slider(minimum=0.5, maximum=2, value=1, step=0.1, label='Speed')
196
  random_btn = gr.Button('Random Text', variant='secondary')
197
  with gr.Column():
 
198
  gr.TabbedInterface([generate_tab, translator_tab], ['Generate', 'Translator'])
199
 
 
200
  random_btn.click(fn=get_random_text, inputs=[voice], outputs=[text], api_name=API_NAME)
201
  generate_btn.click(fn=generate_first, inputs=[text, voice, speed, use_gpu], outputs=[out_audio, out_ps], api_name=API_NAME)
202
  tokenize_btn.click(fn=tokenize_first, inputs=[text, voice], outputs=[out_ps], api_name=API_NAME)
203
  predict_btn.click(fn=predict, inputs=[text, voice, speed], outputs=[out_audio], api_name=API_NAME)
204
 
 
 
 
205
  if __name__ == '__main__':
206
  app.queue(api_open=API_OPEN).launch(show_api=API_OPEN, ssr_mode=True)
 
168
  trans_out_audio = gr.Audio(label='Translated Audio Output', interactive=False, streaming=False, autoplay=True)
169
  trans_out_tokens = gr.Textbox(interactive=False, show_label=False, info='Tokens used to generate the translated audio')
170
  translate_btn = gr.Button('Translate & Generate Audio', variant='primary')
 
 
 
 
 
 
 
 
171
 
172
+ # Main app with text input field that is accessible globally
173
  with gr.Blocks() as app:
174
  with gr.Row():
175
  gr.Markdown(BANNER_TEXT, container=True)
176
  with gr.Row():
177
  with gr.Column():
178
+ # Make 'text' globally accessible
179
  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")
180
  with gr.Row():
181
  voice = gr.Dropdown(list(CHOICES.items()), value='af_heart', label='Voice', info='Quality and availability vary by language')
 
189
  speed = gr.Slider(minimum=0.5, maximum=2, value=1, step=0.1, label='Speed')
190
  random_btn = gr.Button('Random Text', variant='secondary')
191
  with gr.Column():
192
+ # Tabs for generation and translation
193
  gr.TabbedInterface([generate_tab, translator_tab], ['Generate', 'Translator'])
194
 
195
+ # Event handlers for the buttons
196
  random_btn.click(fn=get_random_text, inputs=[voice], outputs=[text], api_name=API_NAME)
197
  generate_btn.click(fn=generate_first, inputs=[text, voice, speed, use_gpu], outputs=[out_audio, out_ps], api_name=API_NAME)
198
  tokenize_btn.click(fn=tokenize_first, inputs=[text, voice], outputs=[out_ps], api_name=API_NAME)
199
  predict_btn.click(fn=predict, inputs=[text, voice, speed], outputs=[out_audio], api_name=API_NAME)
200
 
201
+ # Fix: Pass `text` as an input to `translate_and_generate`
202
+ translate_btn.click(fn=translate_and_generate, inputs=[text, voice, speed], outputs=[trans_out_audio, trans_out_tokens, text], api_name=API_NAME)
203
+
204
  if __name__ == '__main__':
205
  app.queue(api_open=API_OPEN).launch(show_api=API_OPEN, ssr_mode=True)