feat(FN-3855): add chat stream reattach, hybrid room responder policy, mesh

This merge introduces a model selector to the Insights view with favorites, provider filtering, and configured-only options (FN-3842/3843), alongside chat stream reattach support for dashboard chat recovery. It adds mesh lease recovery semantics and a manager to the engine for improved node resilien

Fusion-Task-Id: FN-3855
This commit is contained in:
Fusion
2026-05-09 11:45:07 -07:00
committed by gsxdsm
parent 52fd9774ec
commit 8f5cf45e77
2 changed files with 11 additions and 11 deletions

View File

@@ -8653,9 +8653,9 @@ export function attachChatStream(
(async () => {
try {
const requestHeaders = withTokenHeader();
const requestHeaders = new Headers(withTokenHeader() as HeadersInit);
if (typeof options?.lastEventId === "number") {
requestHeaders["Last-Event-ID"] = String(options.lastEventId);
requestHeaders.set("Last-Event-ID", String(options.lastEventId));
}
const res = await fetch(url, {