[PR #1215] [MERGED] feat: batch run support retry errors and decrease rate limit times #22954

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/1215
Author: @iamjoel
Created: 9/22/2023
Status: Merged
Merged: 9/24/2023
Merged by: @iamjoel

Base: mainHead: feat/batch-run-support-re-run


📝 Commits (10+)

📊 Changes

22 files changed (+428 additions, -127 deletions)

View changed files

📝 web/app/components/app/text-generate/item/index.tsx (+106 -103)
web/app/components/base/icons/assets/vender/line/arrows/refresh-ccw-01.svg (+3 -0)
web/app/components/base/icons/assets/vender/line/files/clipboard.svg (+3 -0)
web/app/components/base/icons/assets/vender/line/general/bookmark.svg (+3 -0)
web/app/components/base/icons/assets/vender/line/weather/stars-02.svg (+3 -0)
web/app/components/base/icons/src/vender/line/arrows/RefreshCcw01.json (+29 -0)
web/app/components/base/icons/src/vender/line/arrows/RefreshCcw01.tsx (+16 -0)
📝 web/app/components/base/icons/src/vender/line/arrows/index.ts (+1 -0)
web/app/components/base/icons/src/vender/line/files/Clipboard.json (+29 -0)
web/app/components/base/icons/src/vender/line/files/Clipboard.tsx (+16 -0)
📝 web/app/components/base/icons/src/vender/line/files/index.ts (+1 -0)
web/app/components/base/icons/src/vender/line/general/Bookmark.json (+29 -0)
web/app/components/base/icons/src/vender/line/general/Bookmark.tsx (+16 -0)
📝 web/app/components/base/icons/src/vender/line/general/index.ts (+1 -0)
web/app/components/base/icons/src/vender/line/weather/Stars02.json (+29 -0)
web/app/components/base/icons/src/vender/line/weather/Stars02.tsx (+16 -0)
web/app/components/base/icons/src/vender/line/weather/index.ts (+1 -0)
📝 web/app/components/share/text-generation/index.tsx (+70 -18)
📝 web/app/components/share/text-generation/result/index.tsx (+39 -3)
📝 web/app/components/share/text-generation/run-batch/index.tsx (+7 -3)

...and 2 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/1215 **Author:** [@iamjoel](https://github.com/iamjoel) **Created:** 9/22/2023 **Status:** ✅ Merged **Merged:** 9/24/2023 **Merged by:** [@iamjoel](https://github.com/iamjoel) **Base:** `main` ← **Head:** `feat/batch-run-support-re-run` --- ### 📝 Commits (10+) - [`dc46adf`](https://github.com/langgenius/dify/commit/dc46adf43df11bd265911534c739063a6163f5a6) feat: change batch run to batch num - [`6fe30bd`](https://github.com/langgenius/dify/commit/6fe30bd4e097e38ce205118c08a142f81e928d56) feat: always can download - [`31edf83`](https://github.com/langgenius/dify/commit/31edf837f9fbbfe8706a51be0934243e0904d6d2) feat: failed ui - [`3e8ea25`](https://github.com/langgenius/dify/commit/3e8ea2569d02f9d2f1fc9b9d0459a668f676405a) files - [`c041596`](https://github.com/langgenius/dify/commit/c04159673b26b2a2a40f087b1a4745b5bb95dabd) feat: retry all - [`eca2b4d`](https://github.com/langgenius/dify/commit/eca2b4d7c9ba16e55ed2cb2351b1428fa7a308eb) fix: loading full screen - [`68ecd71`](https://github.com/langgenius/dify/commit/68ecd7199183dcfa2b4f72a01ba2f97afc071ecf) fix: handle timeout and get last batch - [`bcd91b5`](https://github.com/langgenius/dify/commit/bcd91b592f86bbb2a099c2e044e698a562c88882) fix: batch run bug - [`93666bd`](https://github.com/langgenius/dify/commit/93666bd599a2ec211885a999cce346ee2d5ebeb8) feat: handle runing status - [`473484c`](https://github.com/langgenius/dify/commit/473484cb9ee9dc37c3f3230fd75d83755fa26eb9) fix: download res is not the same to show items ### 📊 Changes **22 files changed** (+428 additions, -127 deletions) <details> <summary>View changed files</summary> 📝 `web/app/components/app/text-generate/item/index.tsx` (+106 -103) ➕ `web/app/components/base/icons/assets/vender/line/arrows/refresh-ccw-01.svg` (+3 -0) ➕ `web/app/components/base/icons/assets/vender/line/files/clipboard.svg` (+3 -0) ➕ `web/app/components/base/icons/assets/vender/line/general/bookmark.svg` (+3 -0) ➕ `web/app/components/base/icons/assets/vender/line/weather/stars-02.svg` (+3 -0) ➕ `web/app/components/base/icons/src/vender/line/arrows/RefreshCcw01.json` (+29 -0) ➕ `web/app/components/base/icons/src/vender/line/arrows/RefreshCcw01.tsx` (+16 -0) 📝 `web/app/components/base/icons/src/vender/line/arrows/index.ts` (+1 -0) ➕ `web/app/components/base/icons/src/vender/line/files/Clipboard.json` (+29 -0) ➕ `web/app/components/base/icons/src/vender/line/files/Clipboard.tsx` (+16 -0) 📝 `web/app/components/base/icons/src/vender/line/files/index.ts` (+1 -0) ➕ `web/app/components/base/icons/src/vender/line/general/Bookmark.json` (+29 -0) ➕ `web/app/components/base/icons/src/vender/line/general/Bookmark.tsx` (+16 -0) 📝 `web/app/components/base/icons/src/vender/line/general/index.ts` (+1 -0) ➕ `web/app/components/base/icons/src/vender/line/weather/Stars02.json` (+29 -0) ➕ `web/app/components/base/icons/src/vender/line/weather/Stars02.tsx` (+16 -0) ➕ `web/app/components/base/icons/src/vender/line/weather/index.ts` (+1 -0) 📝 `web/app/components/share/text-generation/index.tsx` (+70 -18) 📝 `web/app/components/share/text-generation/result/index.tsx` (+39 -3) 📝 `web/app/components/share/text-generation/run-batch/index.tsx` (+7 -3) _...and 2 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:20:07 -05:00
yindo closed this issue 2026-02-21 20:20:07 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22954