telexed ~ c / cf8cbafc-1e0radar:70 · infra_saasLIVE
← back
NO.
#cf8cbafc
Topic
INFRA & SAAS
Source
vercel_blog
Published
2026-05-08 00:00:00
Importance
★ 7/10 — radar 70
`Chat SDK` adds cross-platform conversation history
FIG-0081:1

`Chat SDK` adds cross-platform conversation history

Message history can now persist across channels with transcripts and identity, instead of rebuilding memory per surface. If you run support or assistant bots on web and app together, this removes a common state-sync chore and is worth adopting now.

[ KEY POINTS ]
  1. transcripts and identity let one user keep the same history across every platform adapter, so web, app, and other bot surfaces stop fragmenting context.
  2. bot.transcripts exposes 4 methods: append, list, count, and delete. The API covers write, read, usage tracking, and reset without extra glue code.
  3. The feature sits on top of your existing state adapter, so you do not need a separate transcript store design if you already use the SDK's persistence layer.
  4. list returns entries chronologically with filters, which makes replay, debugging, and lightweight conversation analytics easier to ship.
  5. This mainly cuts backend plumbing rather than unlocking a new UX category, but that plumbing is exactly what slows small teams down.
Originalvercel.com/changelog/chat-sdk-conversation-historyRead original →

// related