├── .claude └── settings.local.json ├── .github └── workflows │ ├── hassfest.yaml │ ├── release.yml │ └── validate.yaml ├── LICENSE ├── README.md ├── README_EN.md ├── custom_components └── zhipuai │ ├── __init__.py │ ├── ai_automation.py │ ├── ai_task.py │ ├── api │ └── musicapi.py │ ├── config_flow.py │ ├── const.py │ ├── conversation.py │ ├── entity.py │ ├── helpers.py │ ├── icons.json │ ├── manifest.json │ ├── markdown_filter.py │ ├── services.py │ ├── services.yaml │ ├── strings.json │ ├── stt.py │ ├── translations │ ├── en.json │ └── zh-Hans.json │ └── tts.py └── hacs.json /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/workflows/hassfest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/.github/workflows/hassfest.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/README_EN.md -------------------------------------------------------------------------------- /custom_components/zhipuai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/__init__.py -------------------------------------------------------------------------------- /custom_components/zhipuai/ai_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/ai_automation.py -------------------------------------------------------------------------------- /custom_components/zhipuai/ai_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/ai_task.py -------------------------------------------------------------------------------- /custom_components/zhipuai/api/musicapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/api/musicapi.py -------------------------------------------------------------------------------- /custom_components/zhipuai/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/config_flow.py -------------------------------------------------------------------------------- /custom_components/zhipuai/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/const.py -------------------------------------------------------------------------------- /custom_components/zhipuai/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/conversation.py -------------------------------------------------------------------------------- /custom_components/zhipuai/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/entity.py -------------------------------------------------------------------------------- /custom_components/zhipuai/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/helpers.py -------------------------------------------------------------------------------- /custom_components/zhipuai/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/icons.json -------------------------------------------------------------------------------- /custom_components/zhipuai/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/manifest.json -------------------------------------------------------------------------------- /custom_components/zhipuai/markdown_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/markdown_filter.py -------------------------------------------------------------------------------- /custom_components/zhipuai/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/services.py -------------------------------------------------------------------------------- /custom_components/zhipuai/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/services.yaml -------------------------------------------------------------------------------- /custom_components/zhipuai/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/strings.json -------------------------------------------------------------------------------- /custom_components/zhipuai/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/stt.py -------------------------------------------------------------------------------- /custom_components/zhipuai/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/translations/en.json -------------------------------------------------------------------------------- /custom_components/zhipuai/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/translations/zh-Hans.json -------------------------------------------------------------------------------- /custom_components/zhipuai/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/custom_components/zhipuai/tts.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desmond-Dong/zhipuai/HEAD/hacs.json --------------------------------------------------------------------------------