mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
* Pi's message. * Fix most everything. * Blacked * Add Typing, Docstrings everywhere, organize the code a bit. * Black * fix import * Update message, dedupe. * Increase backoff time. * bump up retries
22 lines
520 B
Python
22 lines
520 B
Python
""" MacOS TTS Voice. """
|
|
import os
|
|
|
|
from autogpt.speech.base import VoiceBase
|
|
|
|
|
|
class MacOSTTS(VoiceBase):
|
|
"""MacOS TTS Voice."""
|
|
|
|
def _setup(self) -> None:
|
|
pass
|
|
|
|
def _speech(self, text: str, voice_index: int = 0) -> bool:
|
|
"""Play the given text."""
|
|
if voice_index == 0:
|
|
os.system(f'say "{text}"')
|
|
elif voice_index == 1:
|
|
os.system(f'say -v "Ava (Premium)" "{text}"')
|
|
else:
|
|
os.system(f'say -v Samantha "{text}"')
|
|
return True
|