feat(kernel): complete tree-first graph tasks 074-080

This commit is contained in:
lix-2026
2026-04-16 22:01:51 +08:00
parent 2ff10fa86c
commit b1d5d97142
65 changed files with 11579 additions and 4606 deletions
+8 -1
View File
@@ -11,5 +11,12 @@ crons.weekly(
(internal as any).maintenance.cleanupWeekly,
);
export default crons;
// 每日触发一次 kernel-aware refresh 过渡链。
// 说明:当前仍复用 LightRAG 入库,但任务结果与语料口径已带上 kernel-aware 刷新语义。
crons.daily(
"kernel_aware_refresh_daily_transition",
{ hourUTC: 4, minuteUTC: 15 },
(internal as any).jobs.enqueueKernelAwareRefreshSweep,
);
export default crons;