fix(routing): unify session delivery invariants for duplicate suppression (#33786)

* Routing: unify session delivery invariants

* Routing: address PR review feedback

* Routing: tighten topic and session-scope suppression

* fix(chat): inherit routes for per-account channel-peer sessions
This commit is contained in:
Tak Hoffman
2026-03-03 21:40:38 -06:00
committed by GitHub
parent 1be39d4250
commit 7f2708a8c3
12 changed files with 436 additions and 28 deletions

View File

@@ -5,6 +5,7 @@ export type MessagingToolSend = {
provider: string;
accountId?: string;
to?: string;
threadId?: string;
};
const CORE_MESSAGING_TOOLS = new Set(["sessions_send", "message"]);