├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── doc └── image │ ├── chooseapp.png │ ├── conversation.png │ ├── deepseek-1.png │ ├── deepseek-2.png │ ├── multiyapp.png │ ├── openai.png │ ├── settings.png │ ├── think-message.png │ ├── think.png │ ├── voice.png │ └── welcome.png ├── favicon.png ├── forge.config.js ├── main.js ├── package.json ├── preload.js ├── rebot.svg └── src ├── agent ├── index.html ├── script.js └── styles │ ├── animations.css │ ├── base.css │ ├── code.css │ ├── layout.css │ ├── main.css │ ├── messages.css │ ├── modal.css │ ├── settings.css │ └── themes.css └── chat ├── index.html ├── script.js └── styles ├── animations.css ├── base.css ├── layout.css ├── main.css ├── messages.css ├── modal.css ├── settings.css ├── themes.css └── voice.css /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/README.md -------------------------------------------------------------------------------- /doc/image/chooseapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/chooseapp.png -------------------------------------------------------------------------------- /doc/image/conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/conversation.png -------------------------------------------------------------------------------- /doc/image/deepseek-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/deepseek-1.png -------------------------------------------------------------------------------- /doc/image/deepseek-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/deepseek-2.png -------------------------------------------------------------------------------- /doc/image/multiyapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/multiyapp.png -------------------------------------------------------------------------------- /doc/image/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/openai.png -------------------------------------------------------------------------------- /doc/image/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/settings.png -------------------------------------------------------------------------------- /doc/image/think-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/think-message.png -------------------------------------------------------------------------------- /doc/image/think.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/think.png -------------------------------------------------------------------------------- /doc/image/voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/voice.png -------------------------------------------------------------------------------- /doc/image/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/doc/image/welcome.png -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/favicon.png -------------------------------------------------------------------------------- /forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/forge.config.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/package.json -------------------------------------------------------------------------------- /preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/preload.js -------------------------------------------------------------------------------- /rebot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/rebot.svg -------------------------------------------------------------------------------- /src/agent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/index.html -------------------------------------------------------------------------------- /src/agent/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/script.js -------------------------------------------------------------------------------- /src/agent/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/animations.css -------------------------------------------------------------------------------- /src/agent/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/base.css -------------------------------------------------------------------------------- /src/agent/styles/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/code.css -------------------------------------------------------------------------------- /src/agent/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/layout.css -------------------------------------------------------------------------------- /src/agent/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/main.css -------------------------------------------------------------------------------- /src/agent/styles/messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/messages.css -------------------------------------------------------------------------------- /src/agent/styles/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/modal.css -------------------------------------------------------------------------------- /src/agent/styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/settings.css -------------------------------------------------------------------------------- /src/agent/styles/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/agent/styles/themes.css -------------------------------------------------------------------------------- /src/chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/index.html -------------------------------------------------------------------------------- /src/chat/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/script.js -------------------------------------------------------------------------------- /src/chat/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/animations.css -------------------------------------------------------------------------------- /src/chat/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/base.css -------------------------------------------------------------------------------- /src/chat/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/layout.css -------------------------------------------------------------------------------- /src/chat/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/main.css -------------------------------------------------------------------------------- /src/chat/styles/messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/messages.css -------------------------------------------------------------------------------- /src/chat/styles/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/modal.css -------------------------------------------------------------------------------- /src/chat/styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/settings.css -------------------------------------------------------------------------------- /src/chat/styles/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/themes.css -------------------------------------------------------------------------------- /src/chat/styles/voice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machaojin1917939763/Dify-WebUI/HEAD/src/chat/styles/voice.css --------------------------------------------------------------------------------