Batch hydrate normalized messages for session load

This commit is contained in:
Shantur Rathore
2025-11-26 10:57:39 +00:00
parent b54db28fb1
commit 91ace25333
20 changed files with 370 additions and 1371 deletions

View File

@@ -4,6 +4,8 @@
Create the message display component that renders user and assistant messages in a scrollable stream, showing message content, tool calls, and streaming states.
> Note: This legacy task predates `message-stream-v2` and the normalized message store; the new implementation lives under `packages/ui/src/components/message-stream-v2.tsx`.
## Prerequisites
- Task 006 completed (Tab navigation in place)

View File

@@ -1,5 +1,7 @@
# Task 008: SSE Integration - Real-time Message Streaming
> Note: References to `message-stream.tsx` here are legacy; the current UI uses `message-stream-v2.tsx` with the normalized message store.
## Status: TODO
## Objective

View File

@@ -32,3 +32,4 @@ Finish migrating the message stream container, tool call blocks, and reasoning U
## Notes
- Branch suggestion: `feature/task-048-message-stream-refactor`.
- Capture short screen recording or screenshots if tool call layout adjustments were required.
- Legacy `message-stream.tsx` has since been replaced by `message-stream-v2.tsx` using the normalized message store.