├── .env.example ├── .gitignore ├── README.md ├── README_FR.md ├── audioPlayer.js ├── install.bat ├── install_node_vad.bat ├── modules ├── botFunctions.js ├── constants.js ├── openaiLib.js └── voiceHandler.js ├── package.json ├── prompts ├── base.txt ├── correct_words.json ├── custom_instructions.txt └── prompts.json ├── start_all.bat ├── start_microphone_recorder.bat ├── start_twitch_bot.bat ├── twitchBot.js ├── update.bat ├── update.js ├── voiceRecorder.js ├── wait_mp3 ├── 1.mp3 ├── 2.mp3 └── 3.mp3 ├── wake_word └── porcupine_params_fr.pv └── wake_word_answer ├── 1.mp3 └── 2.mp3 /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/README.md -------------------------------------------------------------------------------- /README_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/README_FR.md -------------------------------------------------------------------------------- /audioPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/audioPlayer.js -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/install.bat -------------------------------------------------------------------------------- /install_node_vad.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/install_node_vad.bat -------------------------------------------------------------------------------- /modules/botFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/modules/botFunctions.js -------------------------------------------------------------------------------- /modules/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/modules/constants.js -------------------------------------------------------------------------------- /modules/openaiLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/modules/openaiLib.js -------------------------------------------------------------------------------- /modules/voiceHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/modules/voiceHandler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/package.json -------------------------------------------------------------------------------- /prompts/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/prompts/base.txt -------------------------------------------------------------------------------- /prompts/correct_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/prompts/correct_words.json -------------------------------------------------------------------------------- /prompts/custom_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/prompts/custom_instructions.txt -------------------------------------------------------------------------------- /prompts/prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/prompts/prompts.json -------------------------------------------------------------------------------- /start_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/start_all.bat -------------------------------------------------------------------------------- /start_microphone_recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/start_microphone_recorder.bat -------------------------------------------------------------------------------- /start_twitch_bot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/start_twitch_bot.bat -------------------------------------------------------------------------------- /twitchBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/twitchBot.js -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/update.bat -------------------------------------------------------------------------------- /update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/update.js -------------------------------------------------------------------------------- /voiceRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/voiceRecorder.js -------------------------------------------------------------------------------- /wait_mp3/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/wait_mp3/1.mp3 -------------------------------------------------------------------------------- /wait_mp3/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/wait_mp3/2.mp3 -------------------------------------------------------------------------------- /wait_mp3/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/wait_mp3/3.mp3 -------------------------------------------------------------------------------- /wake_word/porcupine_params_fr.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/wake_word/porcupine_params_fr.pv -------------------------------------------------------------------------------- /wake_word_answer/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/wake_word_answer/1.mp3 -------------------------------------------------------------------------------- /wake_word_answer/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clad3815/Twitch-Streamer-GPT/HEAD/wake_word_answer/2.mp3 --------------------------------------------------------------------------------