- 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).
- Open browser devtools Network tab.
- Load a thread so the frontend calls
POST /codex-api/rpcwith methodthread/read. - Inspect the JSON response body under
result.thread.turns[*].items[*].content[*]. - Find entries that previously carried inline
data:payloads. - Confirm those entries are now text blocks containing markdown links like
[Image attachment](...)or[File attachment](...).
thread/readRPC payload no longer includes inlinedata: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.
- No cleanup required.