Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Extend
chatgpt_conversation_startso callers can send HTTPS-backed files through the signed-in ChatGPT browser runtime and receive persisted assistant-generated files/images as structured outputs.Input
chatgpt_conversation_startaccepts up to fourattachmentswithurl,name, optionalmime_type, and optional declaredsize. The Chrome extension fetches the HTTPS source, stages bounded bytes in memory, mounts them through ChatGPT's native composer file input, and submits through the existing first-partysubmitComposerruntime path.Output
After completion, persisted assistant content is inspected for downloadable files/images. Returned artifacts are exposed as
assistant_outputsentries containing type, name, MIME type, size, and base64 bytes. ChatGPT document-card downloads are resolved through the signed-in page without exposing browser credentials.Safety / bounds
Validation
npm run checknode tests/chatgpt-runtime.mjsnode tests/chrome-background.mjsThe feature is transport- and application-agnostic; it is not tied to any specific caller or file host.