Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -168,5 +168,12 @@ with gr.Blocks(theme='gstaff/sketch') as demo:
|
|
| 168 |
conv_display = gr.Textbox(label="Conversation", interactive=False)
|
| 169 |
aud = gr.Audio(interactive=False)
|
| 170 |
btn.click(synthesize, inputs=[text], outputs=[conv_display, aud])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
|
|
|
| 172 |
demo.queue(api_open=True, default_concurrency_limit=10).launch(show_api=True,share=True)
|
|
|
|
| 168 |
conv_display = gr.Textbox(label="Conversation", interactive=False)
|
| 169 |
aud = gr.Audio(interactive=False)
|
| 170 |
btn.click(synthesize, inputs=[text], outputs=[conv_display, aud])
|
| 171 |
+
gr.Markdown("""
|
| 172 |
+
Special thanks to:
|
| 173 |
+
|
| 174 |
+
- [Hugging Face Spaces](https://huggingface.co/spaces/gstaff/sketch) for the Sketch Theme.
|
| 175 |
+
- [mrfakename/MeloTTS](https://huggingface.co/spaces/mrfakename/MeloTTS) and [GitHub](https://github.com/myshell-ai/MeloTTS) for MeloTTS.
|
| 176 |
+
- [Hermes-2-Pro-Llama-3-8B](https://huggingface.co/NousResearch/Hermes-2-Pro-Llama-3-8B) for Function Calling Support.
|
| 177 |
|
| 178 |
+
""")
|
| 179 |
demo.queue(api_open=True, default_concurrency_limit=10).launch(show_api=True,share=True)
|