[PR #647] [MERGED] feat: chat in explore support agent #22606

Closed
opened 2026-02-21 20:19:20 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/647
Author: @iamjoel
Created: 7/26/2023
Status: Merged
Merged: 7/27/2023
Merged by: @iamjoel

Base: mainHead: feat/universal-chat-fe


📝 Commits (10+)

📊 Changes

121 files changed (+4081 additions, -527 deletions)

View changed files

web/app/(commonLayout)/explore/chat/page.tsx (+13 -0)
📝 web/app/(commonLayout)/layout.tsx (+10 -4)
web/app/components/app/chat/answer/index.tsx (+262 -0)
web/app/components/app/chat/icon-component/index.tsx (+37 -0)
📝 web/app/components/app/chat/index.tsx (+21 -370)
web/app/components/app/chat/more-info/index.tsx (+19 -0)
web/app/components/app/chat/operation/index.tsx (+14 -0)
web/app/components/app/chat/question/index.tsx (+40 -0)
web/app/components/app/chat/thought/index.tsx (+86 -0)
web/app/components/app/chat/thought/style.module.css (+7 -0)
web/app/components/app/chat/type.ts (+53 -0)
📝 web/app/components/app/configuration/base/feature-panel/index.tsx (+11 -8)
📝 web/app/components/app/configuration/config-model/index.tsx (+6 -42)
web/app/components/app/configuration/config-model/model-icon.tsx (+26 -0)
📝 web/app/components/app/configuration/config/index.tsx (+5 -7)
📝 web/app/components/app/configuration/dataset-config/card-item/index.tsx (+9 -8)
📝 web/app/components/app/configuration/dataset-config/select-dataset/index.tsx (+6 -2)
📝 web/app/components/app/configuration/debug/index.tsx (+3 -2)
📝 web/app/components/app/log/list.tsx (+2 -2)
web/app/components/base/icons/assets/public/llm/anthropic.svg (+12 -0)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify/pull/647 **Author:** [@iamjoel](https://github.com/iamjoel) **Created:** 7/26/2023 **Status:** ✅ Merged **Merged:** 7/27/2023 **Merged by:** [@iamjoel](https://github.com/iamjoel) **Base:** `main` ← **Head:** `feat/universal-chat-fe` --- ### 📝 Commits (10+) - [`59ee421`](https://github.com/langgenius/dify/commit/59ee42155d765c90f3e7d3fb7e630ebc04afe035) feat: entrance struct - [`6c1fa27`](https://github.com/langgenius/dify/commit/6c1fa2752e136cf76b70a4b2e5487e185e53f582) add plugin setting - [`68cf80f`](https://github.com/langgenius/dify/commit/68cf80f5ff1ae110538a88651ded37c16489b8b2) reset some params - [`ca8939a`](https://github.com/langgenius/dify/commit/ca8939ab592366f29b36f4fd5cbf669fbf649a63) temp - [`9098d09`](https://github.com/langgenius/dify/commit/9098d099ece48de32371fb1862be6f5475767b6e) feat: merge main - [`b4cf1d3`](https://github.com/langgenius/dify/commit/b4cf1d34e59f06fb0735e0e0bf69350dbe80c19d) feat: can show chat - [`58d06ba`](https://github.com/langgenius/dify/commit/58d06ba08b525c99a47501e59d9206e3987f7e3b) feat: add welcome intro - [`37ea862`](https://github.com/langgenius/dify/commit/37ea862d4ce276eb979f9a8ef750825805281ae0) feat: support select dataset - [`1373ed0`](https://github.com/langgenius/dify/commit/1373ed0675b21b0295d22e5e9f4f3e2c8b919113) feat: choose plgins - [`2374af6`](https://github.com/langgenius/dify/commit/2374af6120b518e239d712103a890588f4949452) feat: support select model ### 📊 Changes **121 files changed** (+4081 additions, -527 deletions) <details> <summary>View changed files</summary> ➕ `web/app/(commonLayout)/explore/chat/page.tsx` (+13 -0) 📝 `web/app/(commonLayout)/layout.tsx` (+10 -4) ➕ `web/app/components/app/chat/answer/index.tsx` (+262 -0) ➕ `web/app/components/app/chat/icon-component/index.tsx` (+37 -0) 📝 `web/app/components/app/chat/index.tsx` (+21 -370) ➕ `web/app/components/app/chat/more-info/index.tsx` (+19 -0) ➕ `web/app/components/app/chat/operation/index.tsx` (+14 -0) ➕ `web/app/components/app/chat/question/index.tsx` (+40 -0) ➕ `web/app/components/app/chat/thought/index.tsx` (+86 -0) ➕ `web/app/components/app/chat/thought/style.module.css` (+7 -0) ➕ `web/app/components/app/chat/type.ts` (+53 -0) 📝 `web/app/components/app/configuration/base/feature-panel/index.tsx` (+11 -8) 📝 `web/app/components/app/configuration/config-model/index.tsx` (+6 -42) ➕ `web/app/components/app/configuration/config-model/model-icon.tsx` (+26 -0) 📝 `web/app/components/app/configuration/config/index.tsx` (+5 -7) 📝 `web/app/components/app/configuration/dataset-config/card-item/index.tsx` (+9 -8) 📝 `web/app/components/app/configuration/dataset-config/select-dataset/index.tsx` (+6 -2) 📝 `web/app/components/app/configuration/debug/index.tsx` (+3 -2) 📝 `web/app/components/app/log/list.tsx` (+2 -2) ➕ `web/app/components/base/icons/assets/public/llm/anthropic.svg` (+12 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-21 20:19:20 -05:00
yindo closed this issue 2026-02-21 20:19:20 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22606