
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
A simple tool to convert your ChatGPT conversation to Markdown files.
gpt2md allows you to convert your conversations on ChatGPT to local Markdown files. This is done by extracting the conversation data from the conversations.json
file when you download your profile data from OpenAI's website. gpt2md converts the data from this file into readable files you can easily store locally. This gives you the ability to store your data in a manner like it's presented to you on the ChatGPT website.
Use the package manager pip to install gpt2md.
pip install gpt2md
You can use gpt2md as a library in Python or as a command-line tool.
In order for gpt2md to convert your data into Markdown files, you need to provide a file with your conversation history with ChatGPT. This file (among some others) can be downloaded from the ChatGPT website
Settings
> Data controls
.Export data
section, click on Export
.Confirm export
.conversations.json
file. This is the input file you need to provide to gpt2md.from gpt2md import Gpt2md
parser = Gpt2md(input_file="conversations.json", output="conversations", verbose=True)
parser.parse()
gpt2md -v conversations.json -o conversations
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
gpt2md is licensed under the MIT license.
FAQs
A simple tool to convert your ChatGPT conversation to Markdown files.
We found that gpt2md demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.