Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 1.05 KB

File metadata and controls

20 lines (16 loc) · 1.05 KB

Feature: Thread RPC strips inline image/file payloads into links

Prerequisites

  • Start the app from this repository (pnpm run dev).
  • Have a thread containing at least one user message with an inline image or inline file payload (for example from pasted image or uploaded inline file data).

Steps

  1. Open browser devtools Network tab.
  2. Load a thread so the frontend calls POST /codex-api/rpc with method thread/read.
  3. Inspect the JSON response body under result.thread.turns[*].items[*].content[*].
  4. Find entries that previously carried inline data: payloads.
  5. Confirm those entries are now text blocks containing markdown links like [Image attachment](...) or [File attachment](...).

Expected Results

  • thread/read RPC payload no longer includes inline data: image/file content in user message blocks.
  • Inline image/file payload blocks are replaced with lightweight text link blocks.
  • Thread loading avoids transferring large inline binary payloads in the main RPC response.

Rollback/Cleanup

  • No cleanup required.