#ChatGPT History Viewer

5 messages · Page 1 of 1 (latest)

remote tide
#

I worked with GPT to create a basic application for viewing conversations in data exports from ChatGPT. It still needs some CSS work, but I wanted to share. License: MIT License

Requires NodeJS 14 and Python 3.11

  1. Request export from ChatGPT Settings.
  2. Check email for export download link
  3. Setup the python app and it's requirements.
  4. Put all exported zips you have in /backend/import
  5. cd to project directory
  6. execute pip install -r requirements.txt
  7. execute python app.py
  8. https://localhost:5000

The reason I made this is so I could archive old ChatGPT conversations before clearing them. I still like to reference some data in old conversations, but I don't need to chat in them anymore.

Copyright 2023 | Isaac LePes

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

remote tide
#

fixed scrollbar and minor formatting

#

when pruning duplicate conversations, the zip file with the most recent date/time stamp will now get precedence.

remote tide
#

I have come to realize that I am really bad at getting CSS to work and even worse at getting it to work via ReactJS. Even still, I am making progress at adding markdown and syntax highlighting to the chat history viewer. Screenshot is a sample, the current dev version doesn't have a working conversations list, so I won't have an update until I resolve the styling issues.