Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -16,8 +16,9 @@ async def list_voices() -> Dict[str, Dict]:
|
|
16 |
return {v['ShortName']: {'name': v['ShortName'], 'language': v['Locale']} for v in voices}
|
17 |
|
18 |
async def main():
|
19 |
-
st.title("
|
20 |
-
st.write("
|
|
|
21 |
|
22 |
# Get voices
|
23 |
voices = await list_voices()
|
|
|
16 |
return {v['ShortName']: {'name': v['ShortName'], 'language': v['Locale']} for v in voices}
|
17 |
|
18 |
async def main():
|
19 |
+
st.title("OpenSpeech-TTS")
|
20 |
+
st.write("An API to generate high quality speech with minimal hardware fast and efficiently.")
|
21 |
+
st.write("https://github.com/PantelisDeveloping/openspeech-tts/")
|
22 |
|
23 |
# Get voices
|
24 |
voices = await list_voices()
|