├── .env.example ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── pyproject.toml ├── sound_list_l10s_ultra.csv ├── sound_list_l10s_ultra_fr.csv ├── to_ogg.sh ├── upload_voice.sh ├── uv.lock └── vdvp ├── __init__.py ├── constants.py ├── generate_audio.py ├── minimal_receiver.py ├── transcript_generator.py └── tts ├── __init__.py ├── elevenlabs.py ├── fakeyou.py └── tts_client.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sound_list_l10s_ultra.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/sound_list_l10s_ultra.csv -------------------------------------------------------------------------------- /sound_list_l10s_ultra_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/sound_list_l10s_ultra_fr.csv -------------------------------------------------------------------------------- /to_ogg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/to_ogg.sh -------------------------------------------------------------------------------- /upload_voice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/upload_voice.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/uv.lock -------------------------------------------------------------------------------- /vdvp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vdvp/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/constants.py -------------------------------------------------------------------------------- /vdvp/generate_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/generate_audio.py -------------------------------------------------------------------------------- /vdvp/minimal_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/minimal_receiver.py -------------------------------------------------------------------------------- /vdvp/transcript_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/transcript_generator.py -------------------------------------------------------------------------------- /vdvp/tts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/tts/__init__.py -------------------------------------------------------------------------------- /vdvp/tts/elevenlabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/tts/elevenlabs.py -------------------------------------------------------------------------------- /vdvp/tts/fakeyou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/tts/fakeyou.py -------------------------------------------------------------------------------- /vdvp/tts/tts_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinFrcd/valetudo-dreame-voicepack/HEAD/vdvp/tts/tts_client.py --------------------------------------------------------------------------------