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:
@@ -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, {
|
||||
|
||||
Reference in New Issue
Block a user