I wrote MinimalGPT in about a weekend as a minimal chat client where everything is stored client side (chat messages aside obviously).

Entire conversations are stored local to your browser instead of a database etc…

Supports both GPT3.5 and GPT4 as well as basic DALL-E image generation. Possibly Bard integration in the future if anyone actually wants it.

The GitHub is available here

It’s nothing crazy, but for a simple chat client without any BS it is nice.

You have to provide your own API key but they hand them out like candy so have a blast!

Edit - Pushed out a small update that adds a toggle for auto saving new conversations. If disabled new conversations are only saved (locally) when you press the save icon.

After a conversation has been saved it is automatically updated/saved every time you send a message from there on out.

  • johntash@eviltoast.org
    link
    fedilink
    arrow-up
    2
    ·
    11 个月前

    Nice, this looks pretty good. Any chance of having an export option for the chats or maybe just an option to store them server side?

    • SimpleDev@lemmy.worldOP
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      11 个月前

      Thanks!

      Good question, I hadn’t really thought about it before but I think an export is possible. Conversations are stored in your browsers local storage, adding the ability to export/import seems entirely possible.

      It might even be possible to generate a web link on export that you can use to load conversations on another device.

      As far as server side storage goes personally I’d like to handle as little of other peoples data as possible even if it’s just AI chat conversations. It’s not out of the question though, I just need to look into it further.

      Edit - I mention here I will add the ability to export. I’ve also added a GitHub Issue with the feature request.

      Now I just have to not be lazy and do it eventually.