perf(ai): 缩短 AI 任务分析延迟时间至 10 秒

将 AiTaskLoopTask 的 DELAY_SECONDS 从 60 秒减少到 10 秒,
使新建任务更快获得 AI 建议。

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
kuaifan 2026-01-21 15:27:45 +00:00
parent 29be29b9cf
commit 801d0b24ab

View File

@ -23,7 +23,7 @@ class AiTaskLoopTask extends AbstractTask
/**
* 任务创建后多久开始分析(秒)
*/
const DELAY_SECONDS = 60;
const DELAY_SECONDS = 10;
public function __construct()
{