Update helpers.py

fix typo
This commit is contained in:
dKosarevsky 2023-03-02 22:23:14 +03:00 committed by GitHub
parent c643138384
commit 86cdfb68d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def show_player(ai_content: str, lang_code: str, is_speech_slow: bool) -> None:
sound_file = BytesIO() sound_file = BytesIO()
tts = gTTS(text=ai_content, lang=lang_code, slow=is_speech_slow) tts = gTTS(text=ai_content, lang=lang_code, slow=is_speech_slow)
tts.write_to_fp(sound_file) tts.write_to_fp(sound_file)
st.write("Push play to hear sound of AI:") st.write("To hear the sound of AI, press the play button.")
st.audio(sound_file) st.audio(sound_file)