-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
requests==2.32.3 | ||
PyAudio==0.2.14 | ||
# pyttsx3 is for SystemEngine | ||
pyttsx3==2.90 | ||
stream2sentence==0.2.3 | ||
azure-cognitiveservices-speech==1.37.0 | ||
elevenlabs==1.2.2 | ||
tqdm==4.66.4 | ||
pydub==0.25.1 | ||
openai==1.30.5 | ||
|
||
# azure-cognitiveservices-speech is for AzureEngine | ||
azure-cognitiveservices-speech==1.38.0 | ||
|
||
# elevenlabs is for ElevenlabsEngine | ||
elevenlabs==1.3.1 | ||
|
||
# openai is for OpenAIEngine | ||
openai==1.35.10 | ||
|
||
# gtts is for GTTSEngine | ||
gtts==2.5.1 | ||
|
||
# coqui_tts is for CoquiEngine | ||
coqui_tts==0.24.1 | ||
|
||
|
||
|
||
# stream2sentence is to quickly convert streamed text into sentences for real-time synthesis | ||
stream2sentence==0.2.3 | ||
|
||
# pydub is used to convert chunks from mp3 to pcm (for openai tts) | ||
pydub==0.25.1 | ||
|
||
# pyaudio is for playing chunks over output device | ||
pyaudio==0.2.14 | ||
|