kevinwang676 commited on
Commit
7c8e79a
·
1 Parent(s): 716c66f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -318,7 +318,7 @@ with gr.Blocks(title="ChatGLM2-6B-int4", theme=gr.themes.Soft(text_size="sm")) a
318
  RETRY_FLAG = gr.Checkbox(value=False, visible=False)
319
  with gr.Column(min_width=32, scale=1):
320
  with gr.Row():
321
- submitBtn = gr.Button("Chat now!", variant="primary")
322
  deleteBtn = gr.Button("Delete last turn", variant="secondary")
323
  retryBtn = gr.Button("Regenerate", variant="secondary")
324
 
@@ -345,7 +345,7 @@ with gr.Blocks(title="ChatGLM2-6B-int4", theme=gr.themes.Soft(text_size="sm")) a
345
  test1 = gr.Textbox(label="Response from ChatGLM2 (you can edit the content)", lines = 3)
346
  with gr.Column():
347
  language = gr.Dropdown(choices=voices, value="en-US-AnaNeural-Female", label="Please select a voice")
348
- tts_btn = gr.Button("Generate", variant="primary")
349
  output_audio = gr.Audio(type="filepath", label="Audio generated by Edge-TTS", interactive=False)
350
 
351
  tts_btn.click(text_to_speech_edge, inputs=[test1, language], outputs=[output_audio])
@@ -354,7 +354,7 @@ with gr.Blocks(title="ChatGLM2-6B-int4", theme=gr.themes.Soft(text_size="sm")) a
354
  model_choice = gr.Dropdown(choices=["FreeVC", "FreeVC-s", "FreeVC (24kHz)"], value="FreeVC (24kHz)", label="Model", visible=False)
355
  audio1 = output_audio
356
  audio2 = gr.Audio(label="Upload reference audio for voice cloning (~5s)", type='filepath')
357
- clone_btn = gr.Button("Generate", variant="primary")
358
  audio_cloned = gr.Audio(label="Generated audio in a custom voice", type='filepath')
359
 
360
  clone_btn.click(convert, inputs=[model_choice, audio1, audio2], outputs=[audio_cloned])
@@ -415,7 +415,7 @@ with gr.Blocks(title="ChatGLM2-6B-int4", theme=gr.themes.Soft(text_size="sm")) a
415
  )
416
  deleteBtn.click(delete_last_turn, [chatbot, history], [chatbot, history])
417
 
418
- with gr.Accordion("📔 提示词示例", open=False):
419
  etext = """In America, where cars are an important part of the national psyche, a decade ago people had suddenly started to drive less, which had not happened since the oil shocks of the 1970s. """
420
  examples = gr.Examples(
421
  examples=[
@@ -472,7 +472,7 @@ with gr.Blocks(title="ChatGLM2-6B-int4", theme=gr.themes.Soft(text_size="sm")) a
472
  # """
473
 
474
  gr.Markdown("### <center>❗ Please do not generate content that could infringe upon the rights or cause harm to individuals or organizations.</center>")
475
- gr.Markdown("<center>💡 - How to use this app:After sending your questions to ChatGLM2, click </center>")
476
  gr.HTML('''
477
  <div class="footer">
478
  <p>🌊🏞️🎶 - Powered by talktalkai
 
318
  RETRY_FLAG = gr.Checkbox(value=False, visible=False)
319
  with gr.Column(min_width=32, scale=1):
320
  with gr.Row():
321
+ submitBtn = gr.Button("Chat now", variant="primary")
322
  deleteBtn = gr.Button("Delete last turn", variant="secondary")
323
  retryBtn = gr.Button("Regenerate", variant="secondary")
324
 
 
345
  test1 = gr.Textbox(label="Response from ChatGLM2 (you can edit the content)", lines = 3)
346
  with gr.Column():
347
  language = gr.Dropdown(choices=voices, value="en-US-AnaNeural-Female", label="Please select a voice")
348
+ tts_btn = gr.Button("Generate using Edge-TTS", variant="primary")
349
  output_audio = gr.Audio(type="filepath", label="Audio generated by Edge-TTS", interactive=False)
350
 
351
  tts_btn.click(text_to_speech_edge, inputs=[test1, language], outputs=[output_audio])
 
354
  model_choice = gr.Dropdown(choices=["FreeVC", "FreeVC-s", "FreeVC (24kHz)"], value="FreeVC (24kHz)", label="Model", visible=False)
355
  audio1 = output_audio
356
  audio2 = gr.Audio(label="Upload reference audio for voice cloning (~5s)", type='filepath')
357
+ clone_btn = gr.Button("Generate using FreeVC", variant="primary")
358
  audio_cloned = gr.Audio(label="Generated audio in a custom voice", type='filepath')
359
 
360
  clone_btn.click(convert, inputs=[model_choice, audio1, audio2], outputs=[audio_cloned])
 
415
  )
416
  deleteBtn.click(delete_last_turn, [chatbot, history], [chatbot, history])
417
 
418
+ with gr.Accordion("📔 Prompts", open=False):
419
  etext = """In America, where cars are an important part of the national psyche, a decade ago people had suddenly started to drive less, which had not happened since the oil shocks of the 1970s. """
420
  examples = gr.Examples(
421
  examples=[
 
472
  # """
473
 
474
  gr.Markdown("### <center>❗ Please do not generate content that could infringe upon the rights or cause harm to individuals or organizations.</center>")
475
+ gr.Markdown("<center>💡 - How to use this app:After sending your questions to ChatGLM2, click "Chat now", "Generate using Edge-TTS", and "Generate using FreeVC" in turn.</center>")
476
  gr.HTML('''
477
  <div class="footer">
478
  <p>🌊🏞️🎶 - Powered by talktalkai