├── .flake8 ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── code_improvement.md │ ├── documentation_improvement.md │ └── feature_request.md ├── release-drafter.yml └── workflows │ ├── release.yml │ └── vitepress.yml ├── .gitignore ├── .unifypy ├── .gitignore └── metadata.json ├── .vscode └── settings.json ├── LICENSE ├── README.en.md ├── README.md ├── assets ├── emojis │ ├── angry.gif │ ├── confident.gif │ ├── confused.gif │ ├── cool.gif │ ├── crying.gif │ ├── delicious.gif │ ├── embarrassed.gif │ ├── funny.gif │ ├── happy.gif │ ├── kissy.gif │ ├── laughing.gif │ ├── loving.gif │ ├── neutral.gif │ ├── relaxed.gif │ ├── sad.gif │ ├── shocked.gif │ ├── silly.gif │ ├── sleepy.gif │ ├── surprised.gif │ ├── thinking.gif │ └── winking.gif ├── icon.icns └── icon.png ├── authorize_python_access.sh ├── checke_opus.sh ├── documents ├── .gitignore ├── README.md ├── docs │ ├── .vitepress │ │ ├── config.mts │ │ ├── guide │ │ │ └── index.ts │ │ ├── theme │ │ │ ├── index.ts │ │ │ └── styles │ │ │ │ ├── badges.css │ │ │ │ ├── custom.scss │ │ │ │ ├── index.css │ │ │ │ ├── inline-demo.css │ │ │ │ ├── options-boxes.css │ │ │ │ ├── pages.css │ │ │ │ ├── style-guide.css │ │ │ │ ├── utilities.css │ │ │ │ └── vue-mastery.css │ │ └── utils │ │ │ └── index.ts │ ├── about │ │ ├── images │ │ │ ├── ben-hong.jpeg │ │ │ └── evan-you.jpeg │ │ ├── team.md │ │ └── team │ │ │ ├── Member.ts │ │ │ ├── TeamHero.vue │ │ │ ├── TeamList.vue │ │ │ ├── TeamMember.vue │ │ │ ├── TeamPage.vue │ │ │ ├── members-core.json │ │ │ └── members-partner.json │ ├── architecture │ │ ├── components │ │ │ ├── ArchitectureFeatures.vue │ │ │ ├── CoreArchitecture.vue │ │ │ ├── ModuleDetails.vue │ │ │ └── TechnologyStack.vue │ │ └── index.md │ ├── contributing.md │ ├── ecosystem │ │ ├── index.md │ │ └── projects │ │ │ ├── intelliconnect │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ └── index.md │ │ │ ├── open-xiaoai │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ └── index.md │ │ │ ├── xiaozhi-android-client │ │ │ ├── images │ │ │ │ ├── 界面1.jpg │ │ │ │ └── 界面2.jpg │ │ │ └── index.md │ │ │ ├── xiaozhi-esp32-server │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ └── index.md │ │ │ └── xiaozhi-unity │ │ │ ├── images │ │ │ ├── logo.png │ │ │ ├── 界面1.png │ │ │ └── 界面2.png │ │ │ └── index.md │ ├── guide │ │ ├── images │ │ │ ├── home_assistatnt配置.png │ │ │ ├── 唤醒词.png │ │ │ ├── 多设备.png │ │ │ ├── 导入ha.png │ │ │ ├── 已注册设备.png │ │ │ ├── 系统扬声器选择.png │ │ │ ├── 系统界面.png │ │ │ ├── 聚合设备.png │ │ │ └── 设备选择.png │ │ ├── old_docs │ │ │ └── 使用文档.md │ │ ├── 回声消除.md │ │ ├── 异常汇总.md │ │ ├── 快捷键说明.md │ │ ├── 打包教程.md │ │ ├── 文档目录.md │ │ ├── 系统依赖安装.md │ │ ├── 设备激活流程.md │ │ ├── 语音交互模式说明.md │ │ ├── 语音唤醒.md │ │ └── 配置说明.md │ ├── index.md │ ├── iot │ │ └── index.md │ ├── mcp │ │ ├── amap.md │ │ ├── bazi.md │ │ ├── calendar.md │ │ ├── camera.md │ │ ├── ha.md │ │ ├── images │ │ │ └── mcphub.png │ │ ├── index.md │ │ ├── music.md │ │ ├── railway.md │ │ ├── recipe.md │ │ ├── search.md │ │ ├── system.md │ │ ├── timer.md │ │ └── xiaozhi-mcp.md │ └── sponsors │ │ ├── SponsorsList.vue │ │ ├── data.js │ │ └── index.md ├── img.png ├── index.ts ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── yarn.lock ├── entitlements.plist ├── format_code.bat ├── format_code.sh ├── libs ├── libopus │ ├── linux │ │ ├── arm64 │ │ │ └── libopus.so │ │ └── x64 │ │ │ └── libopus.so │ ├── mac │ │ ├── arm64 │ │ │ └── libopus.dylib │ │ └── x64 │ │ │ └── libopus.dylib │ └── win │ │ └── x64 │ │ └── opus.dll └── webrtc_apm │ ├── README.md │ ├── __init__.py │ ├── linux │ ├── arm64 │ │ └── libwebrtc_apm.so │ └── x64 │ │ └── libwebrtc_apm.so │ ├── macos │ ├── arm64 │ │ └── libwebrtc_apm.dylib │ └── x64 │ │ └── libwebrtc_apm.dylib │ └── windows │ ├── x64 │ ├── libwebrtc_apm.dll │ ├── libwebrtc_apm.exp │ └── libwebrtc_apm.lib │ └── x86 │ ├── libwebrtc_apm.dll │ ├── libwebrtc_apm.exp │ └── libwebrtc_apm.lib ├── main.py ├── pyproject.toml ├── requirements.txt ├── requirements_mac.txt ├── scripts ├── calendar_query.py ├── camera_scanner.py ├── dir_tree.py ├── keyword_generator.py ├── music_cache_scanner.py ├── py_audio_scanner.py └── webrtc_aec_demo.py └── src ├── application.py ├── audio_codecs ├── aec_processor.py ├── audio_codec.py └── music_decoder.py ├── audio_processing └── wake_word_detect.py ├── constants ├── constants.py └── system.py ├── core ├── ota.py └── system_initializer.py ├── display ├── base_display.py ├── cli_display.py ├── gui_display.py ├── gui_display.qml └── gui_display_model.py ├── iot ├── thing.py ├── thing_manager.py └── things │ └── lamp.py ├── mcp ├── mcp_server.py └── tools │ ├── bazi │ ├── __init__.py │ ├── bazi_calculator.py │ ├── engine.py │ ├── manager.py │ ├── marriage_analyzer.py │ ├── marriage_tools.py │ ├── models.py │ ├── professional_analyzer.py │ ├── professional_data.py │ └── tools.py │ ├── calendar │ ├── __init__.py │ ├── database.py │ ├── manager.py │ ├── models.py │ ├── reminder_service.py │ └── tools.py │ ├── camera │ ├── __init__.py │ ├── base_camera.py │ ├── camera.py │ ├── normal_camera.py │ └── vl_camera.py │ ├── music │ ├── __init__.py │ ├── manager.py │ └── music_player.py │ ├── screenshot │ ├── __init__.py │ └── screenshot_camera.py │ ├── system │ ├── __init__.py │ ├── app_management │ │ ├── __init__.py │ │ ├── killer.py │ │ ├── launcher.py │ │ ├── linux │ │ │ ├── __init__.py │ │ │ ├── killer.py │ │ │ ├── launcher.py │ │ │ └── scanner.py │ │ ├── mac │ │ │ ├── __init__.py │ │ │ ├── killer.py │ │ │ ├── launcher.py │ │ │ └── scanner.py │ │ ├── scanner.py │ │ ├── utils.py │ │ └── windows │ │ │ ├── __init__.py │ │ │ ├── killer.py │ │ │ ├── launcher.py │ │ │ └── scanner.py │ ├── manager.py │ └── tools.py │ └── timer │ ├── __init__.py │ ├── manager.py │ ├── timer_service.py │ └── tools.py ├── network └── mqtt_client.py ├── plugins ├── audio.py ├── base.py ├── calendar.py ├── iot.py ├── manager.py ├── mcp.py ├── shortcuts.py ├── ui.py └── wake_word.py ├── protocols ├── mqtt_protocol.py ├── protocol.py └── websocket_protocol.py ├── utils ├── audio_utils.py ├── common_utils.py ├── config_manager.py ├── device_activator.py ├── device_fingerprint.py ├── logging_config.py ├── opus_loader.py ├── resource_finder.py └── volume_controller.py └── views ├── __init__.py ├── activation ├── __init__.py ├── activation_model.py ├── activation_window.py ├── activation_window.qml └── cli_activation.py ├── base ├── __init__.py ├── async_mixins.py └── base_window.py ├── components ├── __init__.py └── system_tray.py └── settings ├── __init__.py ├── components ├── audio │ ├── __init__.py │ ├── audio_widget.py │ └── audio_widget.ui ├── camera │ ├── __init__.py │ ├── camera_widget.py │ └── camera_widget.ui ├── shortcuts_settings.py ├── system_options │ ├── __init__.py │ ├── system_options_widget.py │ └── system_options_widget.ui └── wake_word │ ├── __init__.py │ ├── wake_word_widget.py │ └── wake_word_widget.ui ├── settings_window.py └── settings_window.ui /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/code_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/ISSUE_TEMPLATE/code_improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/ISSUE_TEMPLATE/documentation_improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/vitepress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.github/workflows/vitepress.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.gitignore -------------------------------------------------------------------------------- /.unifypy/.gitignore: -------------------------------------------------------------------------------- 1 | # UnifyPy 缓存目录 2 | # 大部分文件应该加入版本控制以支持 CI/CD 3 | 4 | # 仅忽略日志文件 5 | logs/ 6 | *.log 7 | -------------------------------------------------------------------------------- /.unifypy/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.unifypy/metadata.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/README.md -------------------------------------------------------------------------------- /assets/emojis/angry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/angry.gif -------------------------------------------------------------------------------- /assets/emojis/confident.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/confident.gif -------------------------------------------------------------------------------- /assets/emojis/confused.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/confused.gif -------------------------------------------------------------------------------- /assets/emojis/cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/cool.gif -------------------------------------------------------------------------------- /assets/emojis/crying.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/crying.gif -------------------------------------------------------------------------------- /assets/emojis/delicious.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/delicious.gif -------------------------------------------------------------------------------- /assets/emojis/embarrassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/embarrassed.gif -------------------------------------------------------------------------------- /assets/emojis/funny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/funny.gif -------------------------------------------------------------------------------- /assets/emojis/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/happy.gif -------------------------------------------------------------------------------- /assets/emojis/kissy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/kissy.gif -------------------------------------------------------------------------------- /assets/emojis/laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/laughing.gif -------------------------------------------------------------------------------- /assets/emojis/loving.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/loving.gif -------------------------------------------------------------------------------- /assets/emojis/neutral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/neutral.gif -------------------------------------------------------------------------------- /assets/emojis/relaxed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/relaxed.gif -------------------------------------------------------------------------------- /assets/emojis/sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/sad.gif -------------------------------------------------------------------------------- /assets/emojis/shocked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/shocked.gif -------------------------------------------------------------------------------- /assets/emojis/silly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/silly.gif -------------------------------------------------------------------------------- /assets/emojis/sleepy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/sleepy.gif -------------------------------------------------------------------------------- /assets/emojis/surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/surprised.gif -------------------------------------------------------------------------------- /assets/emojis/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/thinking.gif -------------------------------------------------------------------------------- /assets/emojis/winking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/emojis/winking.gif -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/assets/icon.png -------------------------------------------------------------------------------- /authorize_python_access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/authorize_python_access.sh -------------------------------------------------------------------------------- /checke_opus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/checke_opus.sh -------------------------------------------------------------------------------- /documents/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/README.md -------------------------------------------------------------------------------- /documents/docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /documents/docs/.vitepress/guide/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/guide/index.ts -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/badges.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/badges.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/custom.scss -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/index.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/inline-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/inline-demo.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/options-boxes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/options-boxes.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/pages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/pages.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/style-guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/style-guide.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/utilities.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/theme/styles/vue-mastery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/theme/styles/vue-mastery.css -------------------------------------------------------------------------------- /documents/docs/.vitepress/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/.vitepress/utils/index.ts -------------------------------------------------------------------------------- /documents/docs/about/images/ben-hong.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/images/ben-hong.jpeg -------------------------------------------------------------------------------- /documents/docs/about/images/evan-you.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/images/evan-you.jpeg -------------------------------------------------------------------------------- /documents/docs/about/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team.md -------------------------------------------------------------------------------- /documents/docs/about/team/Member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/Member.ts -------------------------------------------------------------------------------- /documents/docs/about/team/TeamHero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/TeamHero.vue -------------------------------------------------------------------------------- /documents/docs/about/team/TeamList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/TeamList.vue -------------------------------------------------------------------------------- /documents/docs/about/team/TeamMember.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/TeamMember.vue -------------------------------------------------------------------------------- /documents/docs/about/team/TeamPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/TeamPage.vue -------------------------------------------------------------------------------- /documents/docs/about/team/members-core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/members-core.json -------------------------------------------------------------------------------- /documents/docs/about/team/members-partner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/about/team/members-partner.json -------------------------------------------------------------------------------- /documents/docs/architecture/components/ArchitectureFeatures.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/architecture/components/ArchitectureFeatures.vue -------------------------------------------------------------------------------- /documents/docs/architecture/components/CoreArchitecture.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/architecture/components/CoreArchitecture.vue -------------------------------------------------------------------------------- /documents/docs/architecture/components/ModuleDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/architecture/components/ModuleDetails.vue -------------------------------------------------------------------------------- /documents/docs/architecture/components/TechnologyStack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/architecture/components/TechnologyStack.vue -------------------------------------------------------------------------------- /documents/docs/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/architecture/index.md -------------------------------------------------------------------------------- /documents/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/contributing.md -------------------------------------------------------------------------------- /documents/docs/ecosystem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/index.md -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/intelliconnect/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/intelliconnect/images/logo.png -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/intelliconnect/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/intelliconnect/index.md -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/open-xiaoai/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/open-xiaoai/images/logo.png -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/open-xiaoai/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/open-xiaoai/index.md -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-android-client/images/界面1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-android-client/images/界面1.jpg -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-android-client/images/界面2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-android-client/images/界面2.jpg -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-android-client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-android-client/index.md -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-esp32-server/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-esp32-server/images/logo.png -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-esp32-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-esp32-server/index.md -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-unity/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-unity/images/logo.png -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-unity/images/界面1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-unity/images/界面1.png -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-unity/images/界面2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-unity/images/界面2.png -------------------------------------------------------------------------------- /documents/docs/ecosystem/projects/xiaozhi-unity/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/ecosystem/projects/xiaozhi-unity/index.md -------------------------------------------------------------------------------- /documents/docs/guide/images/home_assistatnt配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/home_assistatnt配置.png -------------------------------------------------------------------------------- /documents/docs/guide/images/唤醒词.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/唤醒词.png -------------------------------------------------------------------------------- /documents/docs/guide/images/多设备.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/多设备.png -------------------------------------------------------------------------------- /documents/docs/guide/images/导入ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/导入ha.png -------------------------------------------------------------------------------- /documents/docs/guide/images/已注册设备.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/已注册设备.png -------------------------------------------------------------------------------- /documents/docs/guide/images/系统扬声器选择.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/系统扬声器选择.png -------------------------------------------------------------------------------- /documents/docs/guide/images/系统界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/系统界面.png -------------------------------------------------------------------------------- /documents/docs/guide/images/聚合设备.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/聚合设备.png -------------------------------------------------------------------------------- /documents/docs/guide/images/设备选择.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/images/设备选择.png -------------------------------------------------------------------------------- /documents/docs/guide/old_docs/使用文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/old_docs/使用文档.md -------------------------------------------------------------------------------- /documents/docs/guide/回声消除.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/回声消除.md -------------------------------------------------------------------------------- /documents/docs/guide/异常汇总.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/异常汇总.md -------------------------------------------------------------------------------- /documents/docs/guide/快捷键说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/快捷键说明.md -------------------------------------------------------------------------------- /documents/docs/guide/打包教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/打包教程.md -------------------------------------------------------------------------------- /documents/docs/guide/文档目录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/文档目录.md -------------------------------------------------------------------------------- /documents/docs/guide/系统依赖安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/系统依赖安装.md -------------------------------------------------------------------------------- /documents/docs/guide/设备激活流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/设备激活流程.md -------------------------------------------------------------------------------- /documents/docs/guide/语音交互模式说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/语音交互模式说明.md -------------------------------------------------------------------------------- /documents/docs/guide/语音唤醒.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/语音唤醒.md -------------------------------------------------------------------------------- /documents/docs/guide/配置说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/guide/配置说明.md -------------------------------------------------------------------------------- /documents/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/index.md -------------------------------------------------------------------------------- /documents/docs/iot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/iot/index.md -------------------------------------------------------------------------------- /documents/docs/mcp/amap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/amap.md -------------------------------------------------------------------------------- /documents/docs/mcp/bazi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/bazi.md -------------------------------------------------------------------------------- /documents/docs/mcp/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/calendar.md -------------------------------------------------------------------------------- /documents/docs/mcp/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/camera.md -------------------------------------------------------------------------------- /documents/docs/mcp/ha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/ha.md -------------------------------------------------------------------------------- /documents/docs/mcp/images/mcphub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/images/mcphub.png -------------------------------------------------------------------------------- /documents/docs/mcp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/index.md -------------------------------------------------------------------------------- /documents/docs/mcp/music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/music.md -------------------------------------------------------------------------------- /documents/docs/mcp/railway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/railway.md -------------------------------------------------------------------------------- /documents/docs/mcp/recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/recipe.md -------------------------------------------------------------------------------- /documents/docs/mcp/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/search.md -------------------------------------------------------------------------------- /documents/docs/mcp/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/system.md -------------------------------------------------------------------------------- /documents/docs/mcp/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/timer.md -------------------------------------------------------------------------------- /documents/docs/mcp/xiaozhi-mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/mcp/xiaozhi-mcp.md -------------------------------------------------------------------------------- /documents/docs/sponsors/SponsorsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/sponsors/SponsorsList.vue -------------------------------------------------------------------------------- /documents/docs/sponsors/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/sponsors/data.js -------------------------------------------------------------------------------- /documents/docs/sponsors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/docs/sponsors/index.md -------------------------------------------------------------------------------- /documents/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/img.png -------------------------------------------------------------------------------- /documents/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/package.json -------------------------------------------------------------------------------- /documents/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/pnpm-lock.yaml -------------------------------------------------------------------------------- /documents/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/tsconfig.json -------------------------------------------------------------------------------- /documents/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/documents/yarn.lock -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/entitlements.plist -------------------------------------------------------------------------------- /format_code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/format_code.bat -------------------------------------------------------------------------------- /format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/format_code.sh -------------------------------------------------------------------------------- /libs/libopus/linux/arm64/libopus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/libopus/linux/arm64/libopus.so -------------------------------------------------------------------------------- /libs/libopus/linux/x64/libopus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/libopus/linux/x64/libopus.so -------------------------------------------------------------------------------- /libs/libopus/mac/arm64/libopus.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/libopus/mac/arm64/libopus.dylib -------------------------------------------------------------------------------- /libs/libopus/mac/x64/libopus.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/libopus/mac/x64/libopus.dylib -------------------------------------------------------------------------------- /libs/libopus/win/x64/opus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/libopus/win/x64/opus.dll -------------------------------------------------------------------------------- /libs/webrtc_apm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/README.md -------------------------------------------------------------------------------- /libs/webrtc_apm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/__init__.py -------------------------------------------------------------------------------- /libs/webrtc_apm/linux/arm64/libwebrtc_apm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/linux/arm64/libwebrtc_apm.so -------------------------------------------------------------------------------- /libs/webrtc_apm/linux/x64/libwebrtc_apm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/linux/x64/libwebrtc_apm.so -------------------------------------------------------------------------------- /libs/webrtc_apm/macos/arm64/libwebrtc_apm.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/macos/arm64/libwebrtc_apm.dylib -------------------------------------------------------------------------------- /libs/webrtc_apm/macos/x64/libwebrtc_apm.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/macos/x64/libwebrtc_apm.dylib -------------------------------------------------------------------------------- /libs/webrtc_apm/windows/x64/libwebrtc_apm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/windows/x64/libwebrtc_apm.dll -------------------------------------------------------------------------------- /libs/webrtc_apm/windows/x64/libwebrtc_apm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/windows/x64/libwebrtc_apm.exp -------------------------------------------------------------------------------- /libs/webrtc_apm/windows/x64/libwebrtc_apm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/windows/x64/libwebrtc_apm.lib -------------------------------------------------------------------------------- /libs/webrtc_apm/windows/x86/libwebrtc_apm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/windows/x86/libwebrtc_apm.dll -------------------------------------------------------------------------------- /libs/webrtc_apm/windows/x86/libwebrtc_apm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/windows/x86/libwebrtc_apm.exp -------------------------------------------------------------------------------- /libs/webrtc_apm/windows/x86/libwebrtc_apm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/libs/webrtc_apm/windows/x86/libwebrtc_apm.lib -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/requirements_mac.txt -------------------------------------------------------------------------------- /scripts/calendar_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/calendar_query.py -------------------------------------------------------------------------------- /scripts/camera_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/camera_scanner.py -------------------------------------------------------------------------------- /scripts/dir_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/dir_tree.py -------------------------------------------------------------------------------- /scripts/keyword_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/keyword_generator.py -------------------------------------------------------------------------------- /scripts/music_cache_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/music_cache_scanner.py -------------------------------------------------------------------------------- /scripts/py_audio_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/py_audio_scanner.py -------------------------------------------------------------------------------- /scripts/webrtc_aec_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/scripts/webrtc_aec_demo.py -------------------------------------------------------------------------------- /src/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/application.py -------------------------------------------------------------------------------- /src/audio_codecs/aec_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/audio_codecs/aec_processor.py -------------------------------------------------------------------------------- /src/audio_codecs/audio_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/audio_codecs/audio_codec.py -------------------------------------------------------------------------------- /src/audio_codecs/music_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/audio_codecs/music_decoder.py -------------------------------------------------------------------------------- /src/audio_processing/wake_word_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/audio_processing/wake_word_detect.py -------------------------------------------------------------------------------- /src/constants/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/constants/constants.py -------------------------------------------------------------------------------- /src/constants/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/constants/system.py -------------------------------------------------------------------------------- /src/core/ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/core/ota.py -------------------------------------------------------------------------------- /src/core/system_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/core/system_initializer.py -------------------------------------------------------------------------------- /src/display/base_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/display/base_display.py -------------------------------------------------------------------------------- /src/display/cli_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/display/cli_display.py -------------------------------------------------------------------------------- /src/display/gui_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/display/gui_display.py -------------------------------------------------------------------------------- /src/display/gui_display.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/display/gui_display.qml -------------------------------------------------------------------------------- /src/display/gui_display_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/display/gui_display_model.py -------------------------------------------------------------------------------- /src/iot/thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/iot/thing.py -------------------------------------------------------------------------------- /src/iot/thing_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/iot/thing_manager.py -------------------------------------------------------------------------------- /src/iot/things/lamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/iot/things/lamp.py -------------------------------------------------------------------------------- /src/mcp/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/mcp_server.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/bazi_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/bazi_calculator.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/engine.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/manager.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/marriage_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/marriage_analyzer.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/marriage_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/marriage_tools.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/models.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/professional_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/professional_analyzer.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/professional_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/professional_data.py -------------------------------------------------------------------------------- /src/mcp/tools/bazi/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/bazi/tools.py -------------------------------------------------------------------------------- /src/mcp/tools/calendar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/calendar/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/calendar/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/calendar/database.py -------------------------------------------------------------------------------- /src/mcp/tools/calendar/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/calendar/manager.py -------------------------------------------------------------------------------- /src/mcp/tools/calendar/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/calendar/models.py -------------------------------------------------------------------------------- /src/mcp/tools/calendar/reminder_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/calendar/reminder_service.py -------------------------------------------------------------------------------- /src/mcp/tools/calendar/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/calendar/tools.py -------------------------------------------------------------------------------- /src/mcp/tools/camera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/camera/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/camera/base_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/camera/base_camera.py -------------------------------------------------------------------------------- /src/mcp/tools/camera/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/camera/camera.py -------------------------------------------------------------------------------- /src/mcp/tools/camera/normal_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/camera/normal_camera.py -------------------------------------------------------------------------------- /src/mcp/tools/camera/vl_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/camera/vl_camera.py -------------------------------------------------------------------------------- /src/mcp/tools/music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/music/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/music/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/music/manager.py -------------------------------------------------------------------------------- /src/mcp/tools/music/music_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/music/music_player.py -------------------------------------------------------------------------------- /src/mcp/tools/screenshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/screenshot/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/screenshot/screenshot_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/screenshot/screenshot_camera.py -------------------------------------------------------------------------------- /src/mcp/tools/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/killer.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/launcher.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/linux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/linux/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/linux/killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/linux/killer.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/linux/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/linux/launcher.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/linux/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/linux/scanner.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/mac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/mac/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/mac/killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/mac/killer.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/mac/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/mac/launcher.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/mac/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/mac/scanner.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/scanner.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/utils.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/windows/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/windows/killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/windows/killer.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/windows/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/windows/launcher.py -------------------------------------------------------------------------------- /src/mcp/tools/system/app_management/windows/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/app_management/windows/scanner.py -------------------------------------------------------------------------------- /src/mcp/tools/system/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/manager.py -------------------------------------------------------------------------------- /src/mcp/tools/system/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/system/tools.py -------------------------------------------------------------------------------- /src/mcp/tools/timer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/timer/__init__.py -------------------------------------------------------------------------------- /src/mcp/tools/timer/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/timer/manager.py -------------------------------------------------------------------------------- /src/mcp/tools/timer/timer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/timer/timer_service.py -------------------------------------------------------------------------------- /src/mcp/tools/timer/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/mcp/tools/timer/tools.py -------------------------------------------------------------------------------- /src/network/mqtt_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/network/mqtt_client.py -------------------------------------------------------------------------------- /src/plugins/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/audio.py -------------------------------------------------------------------------------- /src/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/base.py -------------------------------------------------------------------------------- /src/plugins/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/calendar.py -------------------------------------------------------------------------------- /src/plugins/iot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/iot.py -------------------------------------------------------------------------------- /src/plugins/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/manager.py -------------------------------------------------------------------------------- /src/plugins/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/mcp.py -------------------------------------------------------------------------------- /src/plugins/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/shortcuts.py -------------------------------------------------------------------------------- /src/plugins/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/ui.py -------------------------------------------------------------------------------- /src/plugins/wake_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/plugins/wake_word.py -------------------------------------------------------------------------------- /src/protocols/mqtt_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/protocols/mqtt_protocol.py -------------------------------------------------------------------------------- /src/protocols/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/protocols/protocol.py -------------------------------------------------------------------------------- /src/protocols/websocket_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/protocols/websocket_protocol.py -------------------------------------------------------------------------------- /src/utils/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/audio_utils.py -------------------------------------------------------------------------------- /src/utils/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/common_utils.py -------------------------------------------------------------------------------- /src/utils/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/config_manager.py -------------------------------------------------------------------------------- /src/utils/device_activator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/device_activator.py -------------------------------------------------------------------------------- /src/utils/device_fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/device_fingerprint.py -------------------------------------------------------------------------------- /src/utils/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/logging_config.py -------------------------------------------------------------------------------- /src/utils/opus_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/opus_loader.py -------------------------------------------------------------------------------- /src/utils/resource_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/resource_finder.py -------------------------------------------------------------------------------- /src/utils/volume_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/utils/volume_controller.py -------------------------------------------------------------------------------- /src/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/__init__.py -------------------------------------------------------------------------------- /src/views/activation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/activation/__init__.py -------------------------------------------------------------------------------- /src/views/activation/activation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/activation/activation_model.py -------------------------------------------------------------------------------- /src/views/activation/activation_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/activation/activation_window.py -------------------------------------------------------------------------------- /src/views/activation/activation_window.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/activation/activation_window.qml -------------------------------------------------------------------------------- /src/views/activation/cli_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/activation/cli_activation.py -------------------------------------------------------------------------------- /src/views/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/base/__init__.py -------------------------------------------------------------------------------- /src/views/base/async_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/base/async_mixins.py -------------------------------------------------------------------------------- /src/views/base/base_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/base/base_window.py -------------------------------------------------------------------------------- /src/views/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/components/__init__.py -------------------------------------------------------------------------------- /src/views/components/system_tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/components/system_tray.py -------------------------------------------------------------------------------- /src/views/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/__init__.py -------------------------------------------------------------------------------- /src/views/settings/components/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/audio/__init__.py -------------------------------------------------------------------------------- /src/views/settings/components/audio/audio_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/audio/audio_widget.py -------------------------------------------------------------------------------- /src/views/settings/components/audio/audio_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/audio/audio_widget.ui -------------------------------------------------------------------------------- /src/views/settings/components/camera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/camera/__init__.py -------------------------------------------------------------------------------- /src/views/settings/components/camera/camera_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/camera/camera_widget.py -------------------------------------------------------------------------------- /src/views/settings/components/camera/camera_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/camera/camera_widget.ui -------------------------------------------------------------------------------- /src/views/settings/components/shortcuts_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/shortcuts_settings.py -------------------------------------------------------------------------------- /src/views/settings/components/system_options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/system_options/__init__.py -------------------------------------------------------------------------------- /src/views/settings/components/system_options/system_options_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/system_options/system_options_widget.py -------------------------------------------------------------------------------- /src/views/settings/components/system_options/system_options_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/system_options/system_options_widget.ui -------------------------------------------------------------------------------- /src/views/settings/components/wake_word/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/wake_word/__init__.py -------------------------------------------------------------------------------- /src/views/settings/components/wake_word/wake_word_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/wake_word/wake_word_widget.py -------------------------------------------------------------------------------- /src/views/settings/components/wake_word/wake_word_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/components/wake_word/wake_word_widget.ui -------------------------------------------------------------------------------- /src/views/settings/settings_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/settings_window.py -------------------------------------------------------------------------------- /src/views/settings/settings_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunsen0406/py-xiaozhi/HEAD/src/views/settings/settings_window.ui --------------------------------------------------------------------------------