feat: multi-agent routing + multi-account providers

This commit is contained in:
Peter Steinberger
2026-01-06 18:25:37 +00:00
parent 50d4b17417
commit dbfa316d19
129 changed files with 3760 additions and 1126 deletions

View File

@@ -3,6 +3,8 @@ export type MsgContext = {
From?: string;
To?: string;
SessionKey?: string;
/** Provider account id (multi-account). */
AccountId?: string;
MessageSid?: string;
ReplyToId?: string;
ReplyToBody?: string;
@@ -24,7 +26,8 @@ export type MsgContext = {
SenderUsername?: string;
SenderTag?: string;
SenderE164?: string;
Surface?: string;
/** Provider label (whatsapp|telegram|discord|imessage|...). */
Provider?: string;
WasMentioned?: boolean;
CommandAuthorized?: boolean;
};