josephrocca / OpenCharacters

Simple little web interface for creating characters and chatting with them. It's basically a single HTML file - no server. Share characters using a link (character data is stored within the URL itself). All chat data is stored in your browser using IndexedDB. Currently supports OpenAI APIs and ~any Hugging Face model.
https://josephrocca.github.io/OpenCharacters
MIT License
367 stars 63 forks source link

Feature request: Add more / Continue response #10

Closed Pawel-Dymek closed 1 year ago

Pawel-Dymek commented 1 year ago

Sometimes we don't need to regenerate the whole message, but we just need it to be a bit longer.

I think it would be cool to allow users to generate another response from the AI just below it's previous answer.

Or maybe some kind of button "add more" attached to the AI's response.

josephrocca commented 1 year ago

You can prompt the AI to reply again by typing /ai, but sometimes the AI may get confused and reply as the user if it has become accustomed to the back-and-forth pattern. Unfortunately with the chat-based 3.5-turbo there's no way to extend a message - so you have to add a new message. I hope OpenAI adds this ability at some point