gpt: convert ChatGPT web conversations to dialogs - #32
Closed
kafkasl wants to merge 1 commit into
Closed
Conversation
Author
|
Moved this feature into its own repo as agreed https://github.com/AnswerDotAI/chatgpt2dlg |
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.
This PR adds support to convert a ChatGPT convo (from the browser) to a dialog.
The flow is:
/c/URL) tourl2convoconvo2dlgturns the payload into a dialog, one prompt per user turn.The tool assumes you can reach the payload. For a public share link that's a plain GET with no login.
Tests run against a real captured conversation,
data/gpt/hugo.json, curated like theoairollouts.Decisions
I am not sure what the best shape to retrieve the page is. Fetching needs a browser context (like fastcdp) for two reasons: Cloudflare blocks non-browser clients such as httpx for any conversation, public or private; and private or workspace conversations additionally need the logged-in session's token.
I would like this to be pretty "smooth", you just give the URL and the tool can handle it. I have added an example using
fastcdpand explained how to do it manually. LLMs should also be able to use other tech like playwright instead of fastcdp from the example.