You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(memory): run memory+supplement searches in parallel for corpus=all (fixes#92633)
When corpus=all, the memory search and supplement (wiki) search ran
sequentially. If each search consumed most of the 15s deadline, the
total exceeded the timeout even though each individual corpus succeeded.
Convert both searches to run as parallel promises: memory search results
are awaited first (for early-return on paused index identity), then
supplement results are collected. This halves the wall-clock time for
corpus=all queries where both searches are needed.
0 commit comments