diff --git a/src/utils/helpers.py b/src/utils/helpers.py index 78299d7..c05c393 100644 --- a/src/utils/helpers.py +++ b/src/utils/helpers.py @@ -42,7 +42,7 @@ def show_player(ai_content: str, lang_code: str, is_speech_slow: bool) -> None: sound_file = BytesIO() tts = gTTS(text=ai_content, lang=lang_code, slow=is_speech_slow) 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)