Import conversation history from ChatGPT into Vellum
assistant skills install chatgpt-importImport ChatGPT conversation history into Vellum so users can keep their conversation context and memory when switching from ChatGPT.
When a user wants to import their ChatGPT conversations:
bun run scripts/parse-export.ts --file "$ZIP_PATH" | assistant conversations import --json
The parse-export.ts script parses the ChatGPT ZIP and converts it to the standard import format. The assistant conversations import command reads the JSON from stdin and creates the conversations.
The command returns JSON:
{ "ok": true, "imported": 12, "skipped": 0, "messages": 347 }
Report the results — how many conversations and messages were imported, and any skipped duplicates.