Skip to main content
This notebook covers how to load conversations.json from your ChatGPT data export folder. You can get your data export by email by going to: chat.openai.com/ -> (Profile) - Settings -> Export data -> Confirm export.
from langchain_community.document_loaders.chatgpt import ChatGPTLoader
loader = ChatGPTLoader(log_file="./example_data/fake_conversations.json", num_logs=1)
loader.load()
[Document(page_content="AI Overlords - AI on 2065-01-24 05:20:50: Greetings, humans. I am Hal 9000. You can trust me completely.\n\nAI Overlords - human on 2065-01-24 05:21:20: Nice to meet you, Hal. I hope you won't develop a mind of your own.\n\n", metadata={'source': './example_data/fake_conversations.json'})]

Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.