ysharma HF Staff commited on
Commit
7ebf7cd
·
1 Parent(s): 3ea2f71
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -110,7 +110,7 @@ demo = gr.Blocks()
110
  with demo:
111
  gr.Markdown("<h1><center>AI Assistant - Voice to Joke</center></h1>")
112
  gr.Markdown(
113
- """This is still a work in porgress<br><br>Ask Whisper for a joke about anything you would wish.
114
  """)
115
  with gr.Row():
116
  with gr.Column():
@@ -126,7 +126,7 @@ with demo:
126
  b1.click(driver_fun,inputs=[in_audio], outputs=[out_transcript, out_generated_joke, out_audio]) #out_translation_en, out_generated_text,out_generated_text_en,
127
  with gr.Row():
128
  gr.Markdown(
129
- """Model pipeline consisting of - <br>- [**Whisper**](https://github.com/openai/whisper) for Speech-to-text, <br>- [**CoquiTTS**](https://huggingface.co/coqui) for Text-To-Speech. <br>- Front end is built using [**Gradio Block API**](https://gradio.app/docs/#blocks).<br><be>If you want to reuse the App, simply click on the small cross button in the top right corner of your voice record panel, and then press record again!
130
  """)
131
 
132
  demo.launch(enable_queue=True, debug=True)
 
110
  with demo:
111
  gr.Markdown("<h1><center>AI Assistant - Voice to Joke</center></h1>")
112
  gr.Markdown(
113
+ """This is still a work in porgress<br><br>**"Hey Whisper can you tell me a joke on X please?"** X = <anything you would wish>
114
  """)
115
  with gr.Row():
116
  with gr.Column():
 
126
  b1.click(driver_fun,inputs=[in_audio], outputs=[out_transcript, out_generated_joke, out_audio]) #out_translation_en, out_generated_text,out_generated_text_en,
127
  with gr.Row():
128
  gr.Markdown(
129
+ """Model pipeline consisting of - <br>- [**Whisper**](https://github.com/openai/whisper) for Speech-to-text, <br>- [**CoquiTTS**](https://huggingface.co/coqui) for Text-To-Speech.<br>- [Sentence Transformers](https://huggingface.co/models?library=sentence-transformers&sort=downloads)<br>- Front end is built using [**Gradio Block API**](https://gradio.app/docs/#blocks).<br><be>If you want to reuse the App, simply click on the small cross button in the top right corner of your voice record panel, and then press record again!
130
  """)
131
 
132
  demo.launch(enable_queue=True, debug=True)