[PR #529] [MERGED] feat: text generation application support run batch #22538

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

📋 Pull Request Information

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

Base: mainHead: feat/multi-generation


📝 Commits (10+)

📊 Changes

24 files changed (+1009 additions, -172 deletions)

View changed files

📝 web/app/components/app/text-generate/item/index.tsx (+21 -1)
web/app/components/base/icons/assets/public/files/csv.svg (+24 -0)
web/app/components/base/icons/assets/vender/solid/general/download-02.svg (+3 -0)
web/app/components/base/icons/src/public/files/Csv.json (+181 -0)
web/app/components/base/icons/src/public/files/Csv.tsx (+14 -0)
📝 web/app/components/base/icons/src/public/files/index.ts (+1 -0)
web/app/components/base/icons/src/vender/solid/general/Download02.json (+29 -0)
web/app/components/base/icons/src/vender/solid/general/Download02.tsx (+14 -0)
web/app/components/base/icons/src/vender/solid/general/index.ts (+1 -0)
📝 web/app/components/base/tab-header/index.tsx (+29 -19)
📝 web/app/components/share/text-generation/index.tsx (+221 -120)
web/app/components/share/text-generation/result/content.tsx (+34 -0)
📝 web/app/components/share/text-generation/result/index.tsx (+195 -24)
web/app/components/share/text-generation/run-batch/csv-download/index.tsx (+70 -0)
web/app/components/share/text-generation/run-batch/csv-reader/index.tsx (+70 -0)
web/app/components/share/text-generation/run-batch/csv-reader/style.module.css (+11 -0)
web/app/components/share/text-generation/run-batch/index.tsx (+53 -0)
📝 web/app/components/share/text-generation/run-once/index.tsx (+4 -4)
📝 web/i18n/lang/app-debug.en.ts (+2 -0)
📝 web/i18n/lang/app-debug.zh.ts (+1 -0)

...and 4 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/529 **Author:** [@iamjoel](https://github.com/iamjoel) **Created:** 7/6/2023 **Status:** ✅ Merged **Merged:** 7/6/2023 **Merged by:** [@iamjoel](https://github.com/iamjoel) **Base:** `main` ← **Head:** `feat/multi-generation` --- ### 📝 Commits (10+) - [`6b94193`](https://github.com/langgenius/dify/commit/6b9419351bc6fde905fccf2555e5b8b42d8463ec) feat: parse csv - [`cb6e813`](https://github.com/langgenius/dify/commit/cb6e813bb0847f06f57d2783e06a2009ed72557b) feat: csv download - [`827040f`](https://github.com/langgenius/dify/commit/827040fe625fd32cc5cb2117f49e9df57efadd7c) feat:run batch style - [`7741afc`](https://github.com/langgenius/dify/commit/7741afca3db2061dd3963302ce4efa152a7fb99f) Merge branch 'main' into feat/multi-generation - [`907ed86`](https://github.com/langgenius/dify/commit/907ed86c7040b6f3950ccbded3173b41f27f86c0) feat: main content ui - [`0518ee7`](https://github.com/langgenius/dify/commit/0518ee7985498136eeb00116a8ed0f09d3140a66) fix: files - [`e6a4af7`](https://github.com/langgenius/dify/commit/e6a4af75baaf8b8dbdbe1a56b5dc7b9a702b6c5e) feat: tab header to new ui - [`e673a5b`](https://github.com/langgenius/dify/commit/e673a5b1b3c082c274192251fa0975b1d224cafb) feat: run once to new struct - [`da54fd8`](https://github.com/langgenius/dify/commit/da54fd87b89b805f9c6560b989528b0d6f898359) feat: batch run - [`b4afefe`](https://github.com/langgenius/dify/commit/b4afefeaea8b3441cb43eb3f52a77b63f50bb68a) fix: multi run quene bug ### 📊 Changes **24 files changed** (+1009 additions, -172 deletions) <details> <summary>View changed files</summary> 📝 `web/app/components/app/text-generate/item/index.tsx` (+21 -1) ➕ `web/app/components/base/icons/assets/public/files/csv.svg` (+24 -0) ➕ `web/app/components/base/icons/assets/vender/solid/general/download-02.svg` (+3 -0) ➕ `web/app/components/base/icons/src/public/files/Csv.json` (+181 -0) ➕ `web/app/components/base/icons/src/public/files/Csv.tsx` (+14 -0) 📝 `web/app/components/base/icons/src/public/files/index.ts` (+1 -0) ➕ `web/app/components/base/icons/src/vender/solid/general/Download02.json` (+29 -0) ➕ `web/app/components/base/icons/src/vender/solid/general/Download02.tsx` (+14 -0) ➕ `web/app/components/base/icons/src/vender/solid/general/index.ts` (+1 -0) 📝 `web/app/components/base/tab-header/index.tsx` (+29 -19) 📝 `web/app/components/share/text-generation/index.tsx` (+221 -120) ➕ `web/app/components/share/text-generation/result/content.tsx` (+34 -0) 📝 `web/app/components/share/text-generation/result/index.tsx` (+195 -24) ➕ `web/app/components/share/text-generation/run-batch/csv-download/index.tsx` (+70 -0) ➕ `web/app/components/share/text-generation/run-batch/csv-reader/index.tsx` (+70 -0) ➕ `web/app/components/share/text-generation/run-batch/csv-reader/style.module.css` (+11 -0) ➕ `web/app/components/share/text-generation/run-batch/index.tsx` (+53 -0) 📝 `web/app/components/share/text-generation/run-once/index.tsx` (+4 -4) 📝 `web/i18n/lang/app-debug.en.ts` (+2 -0) 📝 `web/i18n/lang/app-debug.zh.ts` (+1 -0) _...and 4 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:11 -05:00
yindo closed this issue 2026-02-21 20:19:11 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22538