mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
1.3 KiB
1.3 KiB
Codex Image Attachment Test (Playwright MCP)
Summary
- Image upload via the new agent screen succeeded and Codex identified the color as red.
- The Codex prompt still appears to contain base64 image data rather than a temp file path.
/tmp/paseo-attachmentswas not created during the request.
Steps
- Opened
http://localhost:8081/agent/newwith Codex selected, working dir set to/Users/moboudra/dev/voice-dev. - Clicked the attachment icon in the composer and uploaded
/tmp/red.png. - Sent message:
what color is this image?. - Observed agent response and timeline.
Evidence
- UI console logs showed image attachments included in create-agent request:
handleSendMessage - selectedImages: 1createAgent called with images: 1createAgent message has images: true 1
- Agent response:
The image is solid red (#ff0000).
- Timeline showed a tool command containing inline base64 data:
/bin/zsh -lc python - <<'PY' ... b='iVBORw0K...' ...
- Temp directory not created:
ls -la /tmp/paseo-attachments→No such file or directory.
Implication
The Codex prompt still includes base64 data (or an equivalent inline payload) rather than referencing a temp file path, so the recent fix to write attachments under /tmp/paseo-attachments does not appear to be taking effect.