[PR #42] [MERGED] feat: support agent #122

Closed
opened 2026-02-16 10:16:13 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/webapp-conversation/pull/42
Author: @iamjoel
Created: 1/29/2024
Status: Merged
Merged: 1/29/2024
Merged by: @iamjoel

Base: mainHead: feat/support-agent


📝 Commits (5)

  • ed83961 feat: move anwser related code
  • 2019d8f feat: change service code
  • b62e34c feat: support output agent info
  • 8369599 feat: conversation support show thought
  • 25ba4ac feat: show agent show

📊 Changes

27 files changed (+1118 additions, -75 deletions)

View changed files

app/api/conversations/[conversationId]/name/route.ts (+19 -0)
📝 app/components/base/app-icon/index.tsx (+1 -1)
📝 app/components/base/app-icon/style.module.css (+9 -1)
app/components/base/icons/line/arrows/chevron-down/data.json (+39 -0)
app/components/base/icons/line/arrows/chevron-down/index.tsx (+16 -0)
app/components/base/icons/public/data-set/data.json (+64 -0)
app/components/base/icons/public/data-set/index.tsx (+16 -0)
app/components/base/icons/solid/general/check-circle/data.json (+38 -0)
app/components/base/icons/solid/general/check-circle/index.tsx (+16 -0)
📝 app/components/chat/answer/index.tsx (+52 -13)
app/components/chat/thought/index.tsx (+61 -0)
app/components/chat/thought/panel.tsx (+28 -0)
app/components/chat/thought/style.module.css (+7 -0)
app/components/chat/thought/tool.tsx (+103 -0)
📝 app/components/index.tsx (+191 -22)
📝 hooks/use-conversation.ts (+3 -1)
📝 i18n/i18next-config.ts (+6 -0)
i18n/lang/tools.en.ts (+103 -0)
i18n/lang/tools.zh.ts (+95 -0)
📝 package.json (+1 -1)

...and 7 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/webapp-conversation/pull/42 **Author:** [@iamjoel](https://github.com/iamjoel) **Created:** 1/29/2024 **Status:** ✅ Merged **Merged:** 1/29/2024 **Merged by:** [@iamjoel](https://github.com/iamjoel) **Base:** `main` ← **Head:** `feat/support-agent` --- ### 📝 Commits (5) - [`ed83961`](https://github.com/langgenius/webapp-conversation/commit/ed839618a7debc33836908aab1d602c61fef94d3) feat: move anwser related code - [`2019d8f`](https://github.com/langgenius/webapp-conversation/commit/2019d8f3e3478027ad83736111de96403e527db9) feat: change service code - [`b62e34c`](https://github.com/langgenius/webapp-conversation/commit/b62e34c6fa7c0b352ffcd6164ab543189ec8c492) feat: support output agent info - [`8369599`](https://github.com/langgenius/webapp-conversation/commit/83695999eaa0a663cf33463f0a8265a36abefcea) feat: conversation support show thought - [`25ba4ac`](https://github.com/langgenius/webapp-conversation/commit/25ba4ac4766c1f2d90cf0660781adc959a2ad879) feat: show agent show ### 📊 Changes **27 files changed** (+1118 additions, -75 deletions) <details> <summary>View changed files</summary> ➕ `app/api/conversations/[conversationId]/name/route.ts` (+19 -0) 📝 `app/components/base/app-icon/index.tsx` (+1 -1) 📝 `app/components/base/app-icon/style.module.css` (+9 -1) ➕ `app/components/base/icons/line/arrows/chevron-down/data.json` (+39 -0) ➕ `app/components/base/icons/line/arrows/chevron-down/index.tsx` (+16 -0) ➕ `app/components/base/icons/public/data-set/data.json` (+64 -0) ➕ `app/components/base/icons/public/data-set/index.tsx` (+16 -0) ➕ `app/components/base/icons/solid/general/check-circle/data.json` (+38 -0) ➕ `app/components/base/icons/solid/general/check-circle/index.tsx` (+16 -0) 📝 `app/components/chat/answer/index.tsx` (+52 -13) ➕ `app/components/chat/thought/index.tsx` (+61 -0) ➕ `app/components/chat/thought/panel.tsx` (+28 -0) ➕ `app/components/chat/thought/style.module.css` (+7 -0) ➕ `app/components/chat/thought/tool.tsx` (+103 -0) 📝 `app/components/index.tsx` (+191 -22) 📝 `hooks/use-conversation.ts` (+3 -1) 📝 `i18n/i18next-config.ts` (+6 -0) ➕ `i18n/lang/tools.en.ts` (+103 -0) ➕ `i18n/lang/tools.zh.ts` (+95 -0) 📝 `package.json` (+1 -1) _...and 7 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-16 10:16:13 -05:00
yindo closed this issue 2026-02-16 10:16:13 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/webapp-conversation#122