├── .github └── FUNDING.yml ├── README.md ├── _install_win.bat ├── _start_client.bat ├── _start_llama_server.bat ├── _start_ollama_server.bat ├── _start_venv.bat ├── chat_params.json ├── lib ├── bufferstream.py ├── conversation.py ├── sentencequeue.py └── sentencequeuetester.py ├── llm_anthropic ├── completion_params.json ├── install_win.bat ├── llm_handler.py └── test_handler.py ├── llm_llamacpp ├── completion_params.json ├── download_model.bat ├── install_win.bat ├── llm_handler.py └── start_llamacpp_server.bat ├── llm_lmstudio ├── completion_params.json ├── llm_handler.py └── test_handler.py ├── llm_ollama ├── completion_params.json ├── install_win.bat ├── llm_handler.py ├── start_ollama_server.bat └── test_handler.py ├── llm_openai ├── completion_params.json ├── install_win.bat ├── llm_handler.py └── test_handler.py ├── main.py ├── reference_wavs ├── angry.json ├── angry.wav ├── calm.json ├── calm.wav ├── cheerful.json ├── cheerful.wav ├── excited.json ├── excited.wav ├── friendly.json ├── friendly.wav ├── gentle.json ├── gentle.wav ├── hopeful.json ├── hopeful.wav ├── lyrical.json ├── lyrical.wav ├── neutral.json ├── neutral.wav ├── newscast.json ├── newscast.wav ├── sad.json ├── sad.wav ├── shouting.json ├── shouting.wav ├── terrified.json ├── terrified.wav ├── unfriendly.json ├── unfriendly.wav ├── whispering.json └── whispering.wav ├── requirements.txt ├── tts_config.json └── tts_handler.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/README.md -------------------------------------------------------------------------------- /_install_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/_install_win.bat -------------------------------------------------------------------------------- /_start_client.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call venv\Scripts\activate.bat 3 | python main.py 4 | cmd 5 | -------------------------------------------------------------------------------- /_start_llama_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/_start_llama_server.bat -------------------------------------------------------------------------------- /_start_ollama_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/_start_ollama_server.bat -------------------------------------------------------------------------------- /_start_venv.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call venv\Scripts\activate.bat 3 | cmd 4 | -------------------------------------------------------------------------------- /chat_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/chat_params.json -------------------------------------------------------------------------------- /lib/bufferstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/lib/bufferstream.py -------------------------------------------------------------------------------- /lib/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/lib/conversation.py -------------------------------------------------------------------------------- /lib/sentencequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/lib/sentencequeue.py -------------------------------------------------------------------------------- /lib/sentencequeuetester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/lib/sentencequeuetester.py -------------------------------------------------------------------------------- /llm_anthropic/completion_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_anthropic/completion_params.json -------------------------------------------------------------------------------- /llm_anthropic/install_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_anthropic/install_win.bat -------------------------------------------------------------------------------- /llm_anthropic/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_anthropic/llm_handler.py -------------------------------------------------------------------------------- /llm_anthropic/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_anthropic/test_handler.py -------------------------------------------------------------------------------- /llm_llamacpp/completion_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_llamacpp/completion_params.json -------------------------------------------------------------------------------- /llm_llamacpp/download_model.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_llamacpp/download_model.bat -------------------------------------------------------------------------------- /llm_llamacpp/install_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_llamacpp/install_win.bat -------------------------------------------------------------------------------- /llm_llamacpp/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_llamacpp/llm_handler.py -------------------------------------------------------------------------------- /llm_llamacpp/start_llamacpp_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_llamacpp/start_llamacpp_server.bat -------------------------------------------------------------------------------- /llm_lmstudio/completion_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_lmstudio/completion_params.json -------------------------------------------------------------------------------- /llm_lmstudio/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_lmstudio/llm_handler.py -------------------------------------------------------------------------------- /llm_lmstudio/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_lmstudio/test_handler.py -------------------------------------------------------------------------------- /llm_ollama/completion_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_ollama/completion_params.json -------------------------------------------------------------------------------- /llm_ollama/install_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_ollama/install_win.bat -------------------------------------------------------------------------------- /llm_ollama/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_ollama/llm_handler.py -------------------------------------------------------------------------------- /llm_ollama/start_ollama_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_ollama/start_ollama_server.bat -------------------------------------------------------------------------------- /llm_ollama/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_ollama/test_handler.py -------------------------------------------------------------------------------- /llm_openai/completion_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_openai/completion_params.json -------------------------------------------------------------------------------- /llm_openai/install_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_openai/install_win.bat -------------------------------------------------------------------------------- /llm_openai/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_openai/llm_handler.py -------------------------------------------------------------------------------- /llm_openai/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/llm_openai/test_handler.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/main.py -------------------------------------------------------------------------------- /reference_wavs/angry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/angry.json -------------------------------------------------------------------------------- /reference_wavs/angry.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/angry.wav -------------------------------------------------------------------------------- /reference_wavs/calm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/calm.json -------------------------------------------------------------------------------- /reference_wavs/calm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/calm.wav -------------------------------------------------------------------------------- /reference_wavs/cheerful.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/cheerful.json -------------------------------------------------------------------------------- /reference_wavs/cheerful.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/cheerful.wav -------------------------------------------------------------------------------- /reference_wavs/excited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/excited.json -------------------------------------------------------------------------------- /reference_wavs/excited.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/excited.wav -------------------------------------------------------------------------------- /reference_wavs/friendly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/friendly.json -------------------------------------------------------------------------------- /reference_wavs/friendly.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/friendly.wav -------------------------------------------------------------------------------- /reference_wavs/gentle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/gentle.json -------------------------------------------------------------------------------- /reference_wavs/gentle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/gentle.wav -------------------------------------------------------------------------------- /reference_wavs/hopeful.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/hopeful.json -------------------------------------------------------------------------------- /reference_wavs/hopeful.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/hopeful.wav -------------------------------------------------------------------------------- /reference_wavs/lyrical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/lyrical.json -------------------------------------------------------------------------------- /reference_wavs/lyrical.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/lyrical.wav -------------------------------------------------------------------------------- /reference_wavs/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/neutral.json -------------------------------------------------------------------------------- /reference_wavs/neutral.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/neutral.wav -------------------------------------------------------------------------------- /reference_wavs/newscast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/newscast.json -------------------------------------------------------------------------------- /reference_wavs/newscast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/newscast.wav -------------------------------------------------------------------------------- /reference_wavs/sad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/sad.json -------------------------------------------------------------------------------- /reference_wavs/sad.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/sad.wav -------------------------------------------------------------------------------- /reference_wavs/shouting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/shouting.json -------------------------------------------------------------------------------- /reference_wavs/shouting.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/shouting.wav -------------------------------------------------------------------------------- /reference_wavs/terrified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/terrified.json -------------------------------------------------------------------------------- /reference_wavs/terrified.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/terrified.wav -------------------------------------------------------------------------------- /reference_wavs/unfriendly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/unfriendly.json -------------------------------------------------------------------------------- /reference_wavs/unfriendly.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/unfriendly.wav -------------------------------------------------------------------------------- /reference_wavs/whispering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/whispering.json -------------------------------------------------------------------------------- /reference_wavs/whispering.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/reference_wavs/whispering.wav -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/requirements.txt -------------------------------------------------------------------------------- /tts_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/tts_config.json -------------------------------------------------------------------------------- /tts_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoljaB/LocalEmotionalAIVoiceChat/HEAD/tts_handler.py --------------------------------------------------------------------------------