├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue-template-bug.md │ ├── issue-template-feature.md │ └── question-report.md └── PULL_REQUEST_TEMPLATE │ ├── bugfix.md │ ├── documentation.md │ ├── feature.md │ └── refactor.md ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── Thanks.md ├── data ├── base │ └── base.md └── images │ └── img │ ├── demo.png │ └── qrcode.jpg ├── doc └── img │ ├── png1.png │ ├── png2.png │ └── solo.png ├── run.bat ├── run.py ├── run_config_web.py ├── src ├── __init__.py ├── autoupdate │ └── updater.py ├── avatar_manager.py ├── config │ ├── __init__.py │ ├── config.json.template │ ├── models.json │ └── settings.py ├── handlers │ ├── emodata │ │ ├── CNstopwords.txt │ │ ├── 否定词表.txt │ │ └── 大连理工大学中文情感词汇本体.xlsx │ ├── emoji.py │ ├── emotion.py │ ├── image.py │ ├── memory.py │ ├── message.py │ └── voice.py ├── main.py ├── services │ ├── __init__.py │ ├── ai │ │ ├── deepseek.py │ │ ├── dify.py │ │ └── moonshot.py │ └── database.py ├── utils │ ├── cleanup.py │ ├── console.py │ └── logger.py └── webui │ ├── avatar_manager.py │ ├── static │ ├── css │ │ ├── bootstrap-icons.min.css │ │ └── bootstrap.min.css │ ├── js │ │ ├── bootstrap.bundle.min.js │ │ └── dark-mode.js │ └── mom.ico │ └── templates │ ├── auth_base.html │ ├── config.html │ ├── config_item.html │ ├── dashboard.html │ ├── edit_avatar.html │ ├── init_password.html │ ├── login.html │ ├── navbar.html │ └── quick_setup.html ├── test.py ├── version.json └── 快速排查api问题工具 ├── api_config.py ├── api_main.py ├── api_readme.md ├── api_request.py └── mock_server.py /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/ISSUE_TEMPLATE/issue-template-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/ISSUE_TEMPLATE/issue-template-feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/ISSUE_TEMPLATE/question-report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bugfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/PULL_REQUEST_TEMPLATE/bugfix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/PULL_REQUEST_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.github/PULL_REQUEST_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/README_EN.md -------------------------------------------------------------------------------- /Thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/Thanks.md -------------------------------------------------------------------------------- /data/base/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/data/base/base.md -------------------------------------------------------------------------------- /data/images/img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/data/images/img/demo.png -------------------------------------------------------------------------------- /data/images/img/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/data/images/img/qrcode.jpg -------------------------------------------------------------------------------- /doc/img/png1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/doc/img/png1.png -------------------------------------------------------------------------------- /doc/img/png2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/doc/img/png2.png -------------------------------------------------------------------------------- /doc/img/solo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/doc/img/solo.png -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/run.bat -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/run.py -------------------------------------------------------------------------------- /run_config_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/run_config_web.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autoupdate/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/autoupdate/updater.py -------------------------------------------------------------------------------- /src/avatar_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/avatar_manager.py -------------------------------------------------------------------------------- /src/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/config/__init__.py -------------------------------------------------------------------------------- /src/config/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/config/config.json.template -------------------------------------------------------------------------------- /src/config/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/config/models.json -------------------------------------------------------------------------------- /src/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/config/settings.py -------------------------------------------------------------------------------- /src/handlers/emodata/CNstopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/emodata/CNstopwords.txt -------------------------------------------------------------------------------- /src/handlers/emodata/否定词表.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/emodata/否定词表.txt -------------------------------------------------------------------------------- /src/handlers/emodata/大连理工大学中文情感词汇本体.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/emodata/大连理工大学中文情感词汇本体.xlsx -------------------------------------------------------------------------------- /src/handlers/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/emoji.py -------------------------------------------------------------------------------- /src/handlers/emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/emotion.py -------------------------------------------------------------------------------- /src/handlers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/image.py -------------------------------------------------------------------------------- /src/handlers/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/memory.py -------------------------------------------------------------------------------- /src/handlers/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/message.py -------------------------------------------------------------------------------- /src/handlers/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/handlers/voice.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/main.py -------------------------------------------------------------------------------- /src/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/services/__init__.py -------------------------------------------------------------------------------- /src/services/ai/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/services/ai/deepseek.py -------------------------------------------------------------------------------- /src/services/ai/dify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/services/ai/dify.py -------------------------------------------------------------------------------- /src/services/ai/moonshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/services/ai/moonshot.py -------------------------------------------------------------------------------- /src/services/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/services/database.py -------------------------------------------------------------------------------- /src/utils/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/utils/cleanup.py -------------------------------------------------------------------------------- /src/utils/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/utils/console.py -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /src/webui/avatar_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/avatar_manager.py -------------------------------------------------------------------------------- /src/webui/static/css/bootstrap-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/static/css/bootstrap-icons.min.css -------------------------------------------------------------------------------- /src/webui/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/webui/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/webui/static/js/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/static/js/dark-mode.js -------------------------------------------------------------------------------- /src/webui/static/mom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/static/mom.ico -------------------------------------------------------------------------------- /src/webui/templates/auth_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/auth_base.html -------------------------------------------------------------------------------- /src/webui/templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/config.html -------------------------------------------------------------------------------- /src/webui/templates/config_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/config_item.html -------------------------------------------------------------------------------- /src/webui/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/dashboard.html -------------------------------------------------------------------------------- /src/webui/templates/edit_avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/edit_avatar.html -------------------------------------------------------------------------------- /src/webui/templates/init_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/init_password.html -------------------------------------------------------------------------------- /src/webui/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/login.html -------------------------------------------------------------------------------- /src/webui/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/navbar.html -------------------------------------------------------------------------------- /src/webui/templates/quick_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/src/webui/templates/quick_setup.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/test.py -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/version.json -------------------------------------------------------------------------------- /快速排查api问题工具/api_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/快速排查api问题工具/api_config.py -------------------------------------------------------------------------------- /快速排查api问题工具/api_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/快速排查api问题工具/api_main.py -------------------------------------------------------------------------------- /快速排查api问题工具/api_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/快速排查api问题工具/api_readme.md -------------------------------------------------------------------------------- /快速排查api问题工具/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/快速排查api问题工具/api_request.py -------------------------------------------------------------------------------- /快速排查api问题工具/mock_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yishuizhe/Dream-Moments-Dify/HEAD/快速排查api问题工具/mock_server.py --------------------------------------------------------------------------------