Spaces:
Running
Running
burtenshaw
commited on
Commit
·
c4b8a9a
1
Parent(s):
d12c423
add more info to interface
Browse files
app.py
CHANGED
|
@@ -25,10 +25,9 @@ app = gr.Interface(
|
|
| 25 |
fn=generate_audio,
|
| 26 |
inputs=gr.Textbox(label="Text"),
|
| 27 |
outputs=gr.Audio(label="Audio"),
|
| 28 |
-
title="
|
| 29 |
-
description="Generate audio from text",
|
| 30 |
)
|
| 31 |
|
| 32 |
if __name__ == "__main__":
|
| 33 |
app.launch(mcp_server=True)
|
| 34 |
-
|
|
|
|
| 25 |
fn=generate_audio,
|
| 26 |
inputs=gr.Textbox(label="Text"),
|
| 27 |
outputs=gr.Audio(label="Audio"),
|
| 28 |
+
title="Text to Speech",
|
| 29 |
+
description="Generate audio from text and return the audio url",
|
| 30 |
)
|
| 31 |
|
| 32 |
if __name__ == "__main__":
|
| 33 |
app.launch(mcp_server=True)
|
|
|