shlogg · Early preview
Aldrin312 @aldrin312

Fixing Shared Chat Deletion In Open-Source Web Companion With LLMs

Working on an open-source web companion for coding with LLMs. Issue: need to reload page after deleting shared chat. Plan: update contents without reloading using React. Next steps: refresher on React and figuring out implementation details.

Starting a new semester, and with that starting a new open source class. For this class I would be working on an open-source web companion for coding with Large Language Models (LLMs). On this project I found a bit of an issue where it needs to reload the page each time I delete a shared chat. It can get annoying when I want to delete multiple shared chats consecutively. I plan post an issue about this and worked on it.
Also in order to delete a shared chat, it needs to be selected first then it can be deleted. Adding unnecessary actions when it can be done with one.
For now I want to tackle t...