[PR #553] [MERGED] Feat/embedding #22550

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/553
Author: @zxhlyh
Created: 7/12/2023
Status: Merged
Merged: 7/12/2023
Merged by: @zxhlyh

Base: mainHead: feat/embedding


📝 Commits (10+)

  • 345399a feat: app setting support embed
  • a0b3891 feat: chatbot init
  • d7ef8f9 feat: min js
  • 2e2f6de feat: text generation hide embeding op
  • e9bdcd2 fix: token missing quote
  • 875a56d fix: test env detect
  • b4be43d feat: not share disable embedding
  • 34a4921 fix: chat app added new var old conversation not work
  • 59ab019 Merge branch 'main' into feat/embedding
  • 836a3ea fix: i18n

📊 Changes

33 files changed (+2208 additions, -41 deletions)

View changed files

web/app/(shareLayout)/chatbot/[token]/page.tsx (+13 -0)
📝 web/app/components/app/chat/index.tsx (+2 -2)
📝 web/app/components/app/overview/appCard.tsx (+24 -4)
web/app/components/app/overview/assets/code-browser.svg (+3 -0)
web/app/components/app/overview/assets/iframe-option.svg (+102 -0)
web/app/components/app/overview/assets/scripts-option.svg (+160 -0)
web/app/components/app/overview/embedded/index.tsx (+111 -0)
web/app/components/app/overview/embedded/style.module.css (+14 -0)
📝 web/app/components/app/overview/style.css (+5 -0)
web/app/components/share/chatbot/config-scence/index.tsx (+13 -0)
web/app/components/share/chatbot/hooks/use-conversation.ts (+70 -0)
web/app/components/share/chatbot/index.tsx (+647 -0)
web/app/components/share/chatbot/sidebar/app-info/index.tsx (+28 -0)
web/app/components/share/chatbot/sidebar/card.module.css (+3 -0)
web/app/components/share/chatbot/sidebar/card.tsx (+19 -0)
web/app/components/share/chatbot/sidebar/index.tsx (+151 -0)
web/app/components/share/chatbot/sidebar/list/index.tsx (+115 -0)
web/app/components/share/chatbot/sidebar/list/style.module.css (+7 -0)
web/app/components/share/chatbot/style.module.css (+3 -0)
web/app/components/share/chatbot/value-panel/index.tsx (+79 -0)

...and 13 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/553 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 7/12/2023 **Status:** ✅ Merged **Merged:** 7/12/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `main` ← **Head:** `feat/embedding` --- ### 📝 Commits (10+) - [`345399a`](https://github.com/langgenius/dify/commit/345399a332453e5d1cc422f26c4c056b9b10711b) feat: app setting support embed - [`a0b3891`](https://github.com/langgenius/dify/commit/a0b3891cea7cdbe84237633f756e30ebfa3dd31f) feat: chatbot init - [`d7ef8f9`](https://github.com/langgenius/dify/commit/d7ef8f90bf98997aa02fd1aa6fd3b97e0afd246c) feat: min js - [`2e2f6de`](https://github.com/langgenius/dify/commit/2e2f6de4c0b30ef16763a0e66c2aec9fe450f9f5) feat: text generation hide embeding op - [`e9bdcd2`](https://github.com/langgenius/dify/commit/e9bdcd2fa1f0d6a6e59db33a8de6aea49f60b6b6) fix: token missing quote - [`875a56d`](https://github.com/langgenius/dify/commit/875a56ddd044db9d7eaaf68d7b931d225a91ac93) fix: test env detect - [`b4be43d`](https://github.com/langgenius/dify/commit/b4be43df63da44e0d3f4691247abff97f8fc9c5c) feat: not share disable embedding - [`34a4921`](https://github.com/langgenius/dify/commit/34a49211e06cc308daea3320633861ce625390e6) fix: chat app added new var old conversation not work - [`59ab019`](https://github.com/langgenius/dify/commit/59ab019b991c13ba45e9e4c0d4739f85feeedd10) Merge branch 'main' into feat/embedding - [`836a3ea`](https://github.com/langgenius/dify/commit/836a3eab4d3634a6f2471c341b122a956b38e63f) fix: i18n ### 📊 Changes **33 files changed** (+2208 additions, -41 deletions) <details> <summary>View changed files</summary> ➕ `web/app/(shareLayout)/chatbot/[token]/page.tsx` (+13 -0) 📝 `web/app/components/app/chat/index.tsx` (+2 -2) 📝 `web/app/components/app/overview/appCard.tsx` (+24 -4) ➕ `web/app/components/app/overview/assets/code-browser.svg` (+3 -0) ➕ `web/app/components/app/overview/assets/iframe-option.svg` (+102 -0) ➕ `web/app/components/app/overview/assets/scripts-option.svg` (+160 -0) ➕ `web/app/components/app/overview/embedded/index.tsx` (+111 -0) ➕ `web/app/components/app/overview/embedded/style.module.css` (+14 -0) 📝 `web/app/components/app/overview/style.css` (+5 -0) ➕ `web/app/components/share/chatbot/config-scence/index.tsx` (+13 -0) ➕ `web/app/components/share/chatbot/hooks/use-conversation.ts` (+70 -0) ➕ `web/app/components/share/chatbot/index.tsx` (+647 -0) ➕ `web/app/components/share/chatbot/sidebar/app-info/index.tsx` (+28 -0) ➕ `web/app/components/share/chatbot/sidebar/card.module.css` (+3 -0) ➕ `web/app/components/share/chatbot/sidebar/card.tsx` (+19 -0) ➕ `web/app/components/share/chatbot/sidebar/index.tsx` (+151 -0) ➕ `web/app/components/share/chatbot/sidebar/list/index.tsx` (+115 -0) ➕ `web/app/components/share/chatbot/sidebar/list/style.module.css` (+7 -0) ➕ `web/app/components/share/chatbot/style.module.css` (+3 -0) ➕ `web/app/components/share/chatbot/value-panel/index.tsx` (+79 -0) _...and 13 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:12 -05:00
yindo closed this issue 2026-02-21 20:19:13 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22550