feat: add whatsapp web qr chat channel (#16238)

Adds a WhatsApp chat channel backed by a QR-based web login flow so users can connect without manual token setup.
This commit is contained in:
buua436
2026-06-23 17:45:31 +08:00
committed by GitHub
parent e15130534f
commit aba5d172bd
16 changed files with 3160 additions and 10 deletions

View File

@@ -102,6 +102,8 @@ export default {
chatChannelDetail: (id: string) => `${restAPIv1}/chat-channels/${id}`,
chatChannelUpdate: (id: string) => `${restAPIv1}/chat-channels/${id}`,
chatChannelDel: (id: string) => `${restAPIv1}/chat-channels/${id}`,
chatChannelRuntime: (id: string) =>
`${restAPIv1}/chat-channels/${id}/runtime`,
// plugin
llmTools: `${restAPIv1}/plugin/tools`,