🔧 修复
- 修复文本块待生成问题筛选失效的问题
- 修复文本块排序错乱的问题
- 修复上传文档后不等待接口响应直接刷新业务的问题
⚡ 优化
- 文本块查询时剔除包含“distill content”的无效文本块
✨ 新功能:后台异步任务
背景:原前端同步执行批量任务易受浏览器并发限制,导致页面卡顿。
优化:将任务迁移至后台异步处理,提升大规模数据操作效率。
-
支持的异步任务类型
-
交互改进
🔧 Fixes
- Fixed the issue of invalid filtering for "to-be-generated questions" in text blocks.
- Resolved the problem of text block sorting chaos.
- Fixed the issue where the business interface refreshed directly without waiting for the response after document upload.
⚡ Optimizations
- Excluded invalid text blocks containing "distill content" from text block queries.
✨ New Feature: Background Asynchronous Tasks
Context: Frontend synchronous execution of batch tasks was limited by browser concurrency (typically 6-8 connections), causing page freezes.
Improvement: Migrated tasks to background asynchronous processing for large-scale data operations.
-
Supported Asynchronous Tasks
- Automatic Question Extraction: After creating a task, the background automatically processes text blocks without generated questions in batches, with configurable concurrency.
- Automatic Dataset Generation: The background batch-generates answers for questions without answers, freeing up frontend resources.
-
Interaction Enhancements
- Task Status Icon: A real-time progress indicator (e.g., 🔄) in the top-right corner allows clicking to view task details, logs, and exception handling options.
- Resilient Processing: Automatic retries for failed tasks, with manual termination or restart support for complex network scenarios.


