Releases: AyanamiAkaha/cursed-gpt
Releases · AyanamiAkaha/cursed-gpt
v0.1.0-alpha
Working features:
- opening multiple chats
- saving/loading chats
- exporting chat to text file
- sending system prompts or impersonating gpt
- creating chats from templates (works like loading, but next save requires separate file name)
- simple prompt editing - currently single-line. Working control keys: left/right arrows, backspace, delete, ^W
to create a template:
- save chat:
/save chat-name
- create templates folder if it does not exist:
mkdir -p ~/.cursed-gpt/templates
- move saved chat to that folder:
mv ~/.cursed-gpt/chat-name.json ~/.cursed-gpt/templates/
to load a template:
/new template-name
assuming there is a file~/.cursed-gpt/templates/template-name.json
some other commands
/system some text
- create a system prompt
/gpt some text
- impersonate gpt
/export file-name
- export chat as text file. This one accepts ~
as a home directory (other file-related commands don't)
known bugs:
- invalid display of multi-byte characters (e.g. Japanese). Saves and exports correctly, but you won't be able to read them in the chat window directly.
- loading chat sometimes doesn't display first line(s) correctly. The lines are still there, to show them e.g. change window size, which forces refresh.
- prompt editing buggy, especially after the end of the window
- prompt editing causes screen flickering