Lots of new AI tasks tweaks and fixes

This commit is contained in:
2026-01-20 13:15:10 -05:00
parent 167c13c572
commit 1dcb47cfc5
17 changed files with 1202 additions and 264 deletions

View File

@@ -327,7 +327,8 @@ async function runTask(taskId, payload = {}) {
...payload,
// Inject dependencies tasks may need
provider: groqProvider,
pool: appPool,
// Use pool from payload if provided (from route), fall back to stored appPool
pool: payload.pool || appPool,
logger
});
}