Update app.py
Browse files
app.py
CHANGED
@@ -8,4 +8,5 @@ def inference(text,audio):
|
|
8 |
title="YourTTS"
|
9 |
description="## Gradio Demo for [Edresson/YourTTS](https://github.com/edresson/yourtts), to use it add your text and audio file"
|
10 |
examples=[['This is a test','test.wav']]
|
11 |
-
gr.Interface(inference,["text",gr.Audio(type="filepath")],gr.Audio(type="filepath"),title=title,description=description,examples=examples
|
|
|
|
8 |
title="YourTTS"
|
9 |
description="## Gradio Demo for [Edresson/YourTTS](https://github.com/edresson/yourtts), to use it add your text and audio file"
|
10 |
examples=[['This is a test','test.wav']]
|
11 |
+
gr.Interface(inference,["text",gr.Audio(type="filepath")],gr.Audio(type="filepath"),title=title,description=description,examples=examples,cache_examples
|
12 |
+
=False).launch()
|