feat(sessions): stream in-flight partial when joining a mid-turn session

Seed the in-flight partial assistant message (text, thinking, and
in-progress tool calls) when opening or reconnecting to a session that is
mid-stream, then continue streaming live deltas on top of it. Replaces the
blocking "Catching up..." placeholder and the end-of-turn transcript reload.

Server stamps every per-session UI event with a monotonic seq at the
SessionEventHub publish choke point and exposes
GET /sessions/:sessionId/stream-snapshot returning { seq, partial }. The
client fetches the snapshot on join, seeds the normalized partial into the
in-memory transcript (never the history cache), and applies buffered/live
events using the seq watermark for exactly-once delivery.

The snapshot is a progressive enhancement: a 404 from an older remote
pi-web or a not-yet-restarted session daemon falls back to an empty seed
(seq 0, drops nothing), so sessions still open and stream normally. The
stream-snapshot route is registered in the federation allowlist for
remote-machine proxying.
This commit is contained in:
Federico Jaramillo Martinez
2026-07-17 14:49:56 +02:00
parent ae9eaf3082
commit 2b17145291
31 changed files with 681 additions and 108 deletions
@@ -566,3 +566,65 @@ describe("PiSessionService lifecycle, listing, and reload", () => {
await service.dispose();
});
});
describe("PiSessionService.streamSnapshot", () => {
it("returns a null partial with the current watermark when idle", async () => {
const hub = new CapturingSessionEventHub();
const fake = fakeRuntime("snap-idle");
const service = new PiSessionService(hub, {
agentDir: TEST_AGENT_DIR,
createAgentRuntime: runtimeCreator(fake.runtime),
sessionManager: sessionGateway([]),
heartbeatIntervalMs: 60_000,
});
try {
await service.start("/workspace");
const snapshot = await service.streamSnapshot(sessionRef("snap-idle"));
expect(snapshot).toEqual({ seq: 0, partial: null });
} finally {
await service.dispose();
}
});
it("projects the in-flight partial and matches the event watermark mid-stream", async () => {
const hub = new CapturingSessionEventHub();
const streamingMessage = {
role: "assistant",
content: [
{ type: "thinking", thinking: "weighing options", thinkingSignature: "opaque" },
{ type: "text", text: "partial answer" },
{ type: "toolCall", id: "call-1", name: "edit", arguments: { path: "a.ts" } },
],
};
const fake = fakeRuntime("snap-live", { state: { streamingMessage } });
const service = new PiSessionService(hub, {
agentDir: TEST_AGENT_DIR,
createAgentRuntime: runtimeCreator(fake.runtime),
sessionManager: sessionGateway([]),
heartbeatIntervalMs: 60_000,
});
try {
await service.start("/workspace");
// Advance the per-session watermark to a known value.
hub.setSeq("snap-live", 5);
const snapshot = await service.streamSnapshot(sessionRef("snap-live"));
expect(snapshot.seq).toBe(5);
expect(snapshot.partial).toEqual({
role: "assistant",
content: [
{ type: "thinking", thinking: "weighing options" },
{ type: "text", text: "partial answer" },
{ type: "toolCall", id: "call-1", name: "edit", arguments: { path: "a.ts" } },
],
});
// The runtime message is not mutated by the browser projection.
expect(streamingMessage.content[0]).toHaveProperty("thinkingSignature", "opaque");
} finally {
await service.dispose();
}
});
});