aboutsummaryrefslogtreecommitdiff
path: root/autogpt/speech/gtts.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpt/speech/gtts.py')
-rw-r--r--autogpt/speech/gtts.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/autogpt/speech/gtts.py b/autogpt/speech/gtts.py
deleted file mode 100644
index deef4f270..000000000
--- a/autogpt/speech/gtts.py
+++ /dev/null
@@ -1,23 +0,0 @@
-""" GTTS Voice. """
-import os
-
-import gtts
-from playsound import playsound
-
-from autogpt.config import Config
-from autogpt.speech.base import VoiceBase
-
-
-class GTTSVoice(VoiceBase):
- """GTTS Voice."""
-
- def _setup(self, config: Config) -> None:
- pass
-
- def _speech(self, text: str, _: int = 0) -> bool:
- """Play the given text."""
- tts = gtts.gTTS(text)
- tts.save("speech.mp3")
- playsound("speech.mp3", True)
- os.remove("speech.mp3")
- return True