v2.0.4
lipku/LiveTalkingv2.0.4Jun 20, 2026by lipku
AI Summary
Adds YAML configuration file support to allow users to configure the application via a config file while maintaining a clear priority hierarchy for configuration sources.
Key Highlights
- Added YAML configuration support
- CLI arguments take priority over YAML
- Support for using different config files via -c flag
New Features
- YAML configuration support
- CLI-only mode support
Full Release Notes
Support yaml config ```shell # Usage: cp config.yaml.example config.yaml # create your config python app.py # start with config.yaml python app.py -c config_prod.yaml # use a different config file python app.py -c '' # skip yaml, CLI only # Priority: CLI args > YAML > argparse defaults ```