I’m in search of Linux software, whether it’s command-line or GUI-based, that can help me efficiently save my ChatGPT conversations for later reference. Ideally, the software should allow me to organize these conversations by date for easy retrieval and offer a robust full-text search feature to quickly locate specific information within the chats. While any chat application permitting message posting, editing, and removal from both sender and receiver perspectives would suffice, I’d prefer the ability to store each day’s conversation within a single chat thread to maintain a neat and organized record of my interactions. Your recommendations and suggestions would be greatly appreciated!

  • QuazarOmega@lemy.lol
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    1 year ago

    I’ve seen Bavarder in the past and it looked pretty sweet, perhaps it could have those features in the future? They sound very handy.
    I can open the issue for you if you don’t have a Codeberg account

  • mo_ztt ✅@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago
    1. Settings & Beta -> Data controls -> Export data
    2. Unzip
    Python 3.11.3 (main, Apr 21 2023, 11:54:59) [Clang 14.0.0 (clang-1400.0.29.202)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import json
    >>> with open('conversations.json') as infile:
    ...     convos = json.load(infile)
    ... 
    >>> for convo in convos:
    ...     for key, value in convo['mapping'].items():
    ...         message = value.get("message", None)
    ...         if message:
    ...             parts = message.get("content", {}).get("parts", [])
    ...             for part in parts:
    ...                 if 'text to search' in part:
    ...                     print(part)
    
    1. Customize to taste
    • CoderSupreme@programming.devOP
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 year ago
      1. Settings & Beta -> Data controls -> Export data
      2. Unzip
      Python 3.11.3 (main, Apr 21 2023, 11:54:59) [Clang 14.0.0 (clang-1400.0.29.202)] on darwin
      Type "help", "copyright", "credits" or "license" for more information.
      >>> import json
      >>> with open('conversations.json') as infile:
      ...     convos = json.load(infile)
      ... 
      >>> for convo in convos:
      ...     for key, value in convo['mapping'].items():
      ...         message = value.get("message", None)
      ...         if message:
      ...             parts = message.get("content", {}).get("parts", [])
      ...             for part in parts:
      ...                 if 'text to search' in part:
      ...                     print(part)
      
      1. Customize to taste

      Nice

  • Gunpachi@lemmings.world
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I’d like to know as well.

    Currently, I just copy paste everything into a Markdown file and use syncthing to sync such files to all my devices.