6.6 KiB
title, description
| title | description |
|---|---|
| Action callbacks and SSE streaming | Why Eliza replaces (not concatenates) action callback text in dashboard chat, and how it matches Discord-style progressive messages. |
Action callbacks and SSE streaming
Eliza’s dashboard chat uses Server-Sent Events (SSE) to stream the assistant reply. Two different kinds of text arrive on the same stream:
- LLM tokens — the model’s streamed reply (
onStreamChunk). - Action callbacks — text returned from
HandlerCallbackwhile an action runs (e.g.PLAY_AUDIO, wallet flows, Binance skill fallbacks).
This page explains how those are merged and why that design matches platforms like Discord and Telegram.
The problem we solved
On Discord, @elizaos/plugin-discord uses a progressive message: one channel message is created, then edited in place as status updates arrive (“Looking up track…”, “Searching…”, “Now playing: …”).
On web, each callback({ text }) was previously fed through the same merge path as arbitrary streamed chunks. Unrelated status strings do not share a prefix with each other, so the merge heuristic often concatenated them:
🔍 Looking up track...🔍 Searching for track...✨ Setting up playback...Now playing: **Song**
That is correct for token deltas that extend the same answer, but wrong for successive statuses that should replace the previous status.
Why it matters: Users expect live, in-place updates (web2-style realtime), not a growing pile of status fragments. Plugins should not need a second transport (WebSocket, custom events) just to get Discord parity.
The Eliza behavior
Inside generateChatResponse (eliza/packages/agent/src/api/chat-routes.ts):
- LLM chunks still use append semantics via
appendIncomingText→resolveStreamingUpdate→onChunk. - Action callbacks use
replaceCallbackText:-
On the first callback in a turn, the server snapshots whatever was already streamed (
preCallbackText— usually the LLM’s partial or final text). -
Each subsequent callback sets the visible reply to:
preCallbackText + "\n\n" + latestCallbackText -
So the callback segment is replaced each time; the LLM prefix is preserved.
-
The HTTP layer emits a snapshot (onSnapshot) so the SSE event carries the full new fullText. The client already treats fullText as authoritative and replaces the assistant bubble’s text — no UI change was required.
Why snapshot: The frontend’s SSE parser uses fullText when present; replacing the whole assistant message is O(1) for the UI and matches “edit message body” mentally.
Why separate LLM vs callback paths: LLM streaming is genuinely incremental (append). Action progress is state replacement (latest status wins). Mixing both through one merge function blurred those semantics.
Plugin contract (unchanged)
Plugins should keep using the elizaOS HandlerCallback shape:
await callback({ text: "🔍 Searching…", source: message.content.source });
await callback({ text: "Now playing: **Track**", source: message.content.source });
The default remains replace semantics for callback text. Plugins can now opt into explicit merge behavior with merge?: "append" | "replace" when they need to be precise:
await callback({
text: "🔍 Searching…",
source: message.content.source,
merge: "replace",
});
eliza/plugins/plugin-music-player now does this explicitly through its ProgressiveMessage helper. Most plugins do not need to set merge; omitting it preserves the existing behavior.
Why preserve the contract: Discord and other connectors already rely on this API; Eliza’s job is to interpret repeated callbacks correctly in the API chat path, not to fork the plugin surface.
Where it applies
replaceCallbackText is wired for:
- The main
messageService.handleMessageaction callback. executeFallbackParsedActions(parsed action recovery).- Direct Binance skill dispatch (
maybeHandleDirectBinanceSkillRequest). - Wallet execution fallback and similar paths that invoke actions with callbacks.
Not used for onStreamChunk — that stays append-only.
Persisted callback history
Reloading a conversation now preserves the full progressive callback trail, not just the final callback text.
Schema decision
The persisted assistant content can include:
{
text: "Now playing: **Track**",
actionCallbackHistory: [
"🔍 Looking up track...",
"🔍 Searching for track...",
"✨ Setting up playback...",
"Now playing: **Track**"
]
}
Why this shape: it keeps the normal text field backward-compatible for existing clients while adding one optional field that captures the historical callback states in order.
Write path
generateChatResponse()records each callback snapshot intoactionCallbackHistory.- If the turn already created a visible assistant memory during action execution (for example an
action_resultmemory), the conversation route updates that recent assistant memory in place with the callback history. - If no assistant memory exists yet, the normal persisted assistant turn carries the same
actionCallbackHistoryfield.
Why update in place: action callbacks already create the visible assistant turn for many runtime flows; attaching the history there avoids duplicate assistant bubbles.
Read path
When /api/conversations/:id/messages reloads persisted messages, it reconstructs the visible transcript by:
- taking every historical callback line except a trailing duplicate of the final
text - appending the final
textas the last visible paragraph
That means a reloaded conversation shows the same status trail + final outcome users saw while the callback stream was live.
Related code and docs
- Implementation:
eliza/packages/agent/src/api/chat-routes.ts—replaceCallbackText,preCallbackText,actionCallbackHistory. - Persistence + replay:
eliza/packages/agent/src/api/conversation-routes.ts. - Example helper:
eliza/plugins/plugin-music-player/(submodule -- check that it is initialized). - UI streaming: Dashboard — Chat (SSE / typing indicator).
- Changelog: Changelog — search for “action callback” or the ship date.
Follow-ups
Possible follow-ups:
- Optional metadata to distinguish replace vs append callback semantics if a real plugin needs both within one turn.
See the repository docs for high-level product direction.