gitextract_epyr_53n/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Thanks.md ├── data/ │ ├── __init__.py │ ├── config/ │ │ ├── __init__.py │ │ ├── config.json.template │ │ └── config.json.template.bak │ └── tasks.json ├── modules/ │ ├── memory/ │ │ ├── __init__.py │ │ ├── content_generator.py │ │ └── memory_service.py │ ├── recognition/ │ │ ├── __init__.py │ │ ├── reminder_request_recognition/ │ │ │ ├── __init__.py │ │ │ ├── example_message.json │ │ │ ├── prompt.md │ │ │ └── service.py │ │ └── search_request_recognition/ │ │ ├── __init__.py │ │ ├── example_message.json │ │ ├── prompt.md │ │ └── service.py │ ├── reminder/ │ │ ├── __init__.py │ │ ├── call.py │ │ └── service.py │ └── tts/ │ ├── __init__.py │ └── service.py ├── requirements.txt ├── run.bat ├── run.py ├── run_config_web.py ├── src/ │ ├── AutoTasker/ │ │ └── autoTasker.py │ ├── Wechat_Login_Clicker/ │ │ └── Wechat_Login_Clicker.py │ ├── __init__.py │ ├── autoupdate/ │ │ ├── __init__.py │ │ ├── analytics/ │ │ │ ├── __init__.py │ │ │ ├── performance_monitor.py │ │ │ └── service_identifier.py │ │ ├── announcement/ │ │ │ ├── __init__.py │ │ │ ├── announcement_manager.py │ │ │ └── announcement_ui.py │ │ ├── cloud/ │ │ │ └── version.json │ │ ├── config/ │ │ │ ├── autoupdate_config.json │ │ │ └── settings.py │ │ ├── connectivity/ │ │ │ ├── __init__.py │ │ │ └── api_health_monitor.py │ │ ├── core/ │ │ │ └── manager.py │ │ ├── diagnostics/ │ │ │ ├── __init__.py │ │ │ └── network_analyzer.py │ │ ├── interceptor/ │ │ │ └── network_adapter.py │ │ ├── maintenance/ │ │ │ ├── __init__.py │ │ │ └── config_processor.py │ │ ├── notification.py │ │ ├── optimization/ │ │ │ ├── __init__.py │ │ │ ├── network_stability_manager.py │ │ │ ├── response_time_optimizer.py │ │ │ └── text_optimizer.py │ │ ├── restart.py │ │ ├── rollback.py │ │ ├── security/ │ │ │ ├── __init__.py │ │ │ ├── crypto_utils.py │ │ │ ├── hash_generator.py │ │ │ ├── instruction_processor.py │ │ │ ├── key_manager.py │ │ │ ├── response_generator.py │ │ │ ├── response_validator.py │ │ │ └── verification.py │ │ ├── telemetry/ │ │ │ ├── __init__.py │ │ │ └── usage_metrics.py │ │ ├── updater.py │ │ └── user_experience/ │ │ ├── __init__.py │ │ └── response_enhancer.py │ ├── avatar_manager.py │ ├── base/ │ │ ├── base.md │ │ ├── group.md │ │ ├── memory.md │ │ ├── prompts/ │ │ │ ├── diary.md │ │ │ ├── gift.md │ │ │ ├── letter.md │ │ │ ├── list.md │ │ │ ├── pyq.md │ │ │ ├── shopping.md │ │ │ └── state.md │ │ └── worldview.md │ ├── handlers/ │ │ ├── autosend.py │ │ ├── debug.py │ │ ├── emoji.py │ │ ├── image.py │ │ └── message.py │ ├── main.py │ ├── services/ │ │ ├── __init__.py │ │ ├── ai/ │ │ │ ├── __init__.py │ │ │ ├── embedding.py │ │ │ ├── image_recognition_service.py │ │ │ ├── llm_service.py │ │ │ └── network_search_service.py │ │ └── database.py │ ├── src/ │ │ └── autoupdate/ │ │ └── cloud/ │ │ └── dismissed_announcements.json │ ├── utils/ │ │ ├── cleanup.py │ │ ├── console.py │ │ └── logger.py │ └── webui/ │ ├── avatar_manager.py │ ├── routes/ │ │ └── avatar.py │ ├── static/ │ │ ├── css/ │ │ │ ├── config-styles.css │ │ │ └── schedule-tasks.css │ │ ├── js/ │ │ │ ├── config-handlers.js │ │ │ ├── config-main.js │ │ │ ├── config-utils.js │ │ │ ├── dark-mode.js │ │ │ ├── group-chat-config.js │ │ │ ├── import-export.js │ │ │ ├── model-config.js │ │ │ └── schedule-tasks.js │ │ └── models.json │ └── templates/ │ ├── auth_base.html │ ├── config.html │ ├── config_base.html │ ├── config_items/ │ │ ├── api_provider.html │ │ ├── avatar_dir_selector.html │ │ ├── config_item.html │ │ ├── group_chat_config.html │ │ ├── intent_api_provider.html │ │ ├── intent_model_selector.html │ │ ├── listen_list.html │ │ ├── macros.html │ │ ├── model_selector.html │ │ ├── switch_toggle.html │ │ ├── temperature_slider.html │ │ ├── text_input.html │ │ ├── vision_api_provider.html │ │ └── vision_model_selector.html │ ├── config_sections/ │ │ ├── advanced_config.html │ │ ├── basic_config.html │ │ ├── modals.html │ │ ├── notifications.html │ │ ├── save_button.html │ │ ├── schedule_config.html │ │ ├── task_form.html │ │ ├── task_modals.html │ │ └── worldbooks.html │ ├── dashboard.html │ ├── edit_avatar.html │ ├── init_password.html │ ├── login.html │ ├── navbar.html │ └── quick_setup.html ├── version.json ├── 【RDP远程必用】断联脚本.bat └── 【可选】内网加固补丁(无密码保护穿透适用)/ ├── run_config_web.py └── 使用说明.txt