pantelnm commited on
Commit
de96069
1 Parent(s): 7651f4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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("OpenSource Text-to-Speech App")
20
- st.write("Convert text to speech using various voices")
 
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()