├── .gitignore ├── ChatHistoryBackup.txt ├── LICENSE ├── README.md ├── TestAudio_MP3.mp3 ├── TestAudio_WAV.wav ├── audio_player.py ├── azure_speech_to_text.py ├── chatgpt_character.py ├── eleven_labs.py ├── generate-enviroment.sh ├── generate-eviroment.bat ├── obs_websockets.py ├── openai_chat.py ├── requirements.txt └── websockets_auth.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.venv 2 | /.vscode 3 | __pycache__ 4 | ChatHistoryBackup.txt -------------------------------------------------------------------------------- /ChatHistoryBackup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/ChatHistoryBackup.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/README.md -------------------------------------------------------------------------------- /TestAudio_MP3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/TestAudio_MP3.mp3 -------------------------------------------------------------------------------- /TestAudio_WAV.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/TestAudio_WAV.wav -------------------------------------------------------------------------------- /audio_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/audio_player.py -------------------------------------------------------------------------------- /azure_speech_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/azure_speech_to_text.py -------------------------------------------------------------------------------- /chatgpt_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/chatgpt_character.py -------------------------------------------------------------------------------- /eleven_labs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/eleven_labs.py -------------------------------------------------------------------------------- /generate-enviroment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/generate-enviroment.sh -------------------------------------------------------------------------------- /generate-eviroment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/generate-eviroment.bat -------------------------------------------------------------------------------- /obs_websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/obs_websockets.py -------------------------------------------------------------------------------- /openai_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/openai_chat.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/requirements.txt -------------------------------------------------------------------------------- /websockets_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougDougGithub/Babagaboosh/HEAD/websockets_auth.py --------------------------------------------------------------------------------