Metadata-Version: 2.1
Name: gpyt
Version: 0.2.6
Summary: GPT on the command line.
Author: Justin Stitt
Author-email: jstitt007@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: openai (>=0.27.5,<0.28.0)
Requires-Dist: openai-async (>=0.0.3,<0.0.4)
Requires-Dist: pydantic (>=1.10.7,<2.0.0)
Requires-Dist: pyperclip (>=1.8.2,<2.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Requires-Dist: textual[dev] (>=0.22.3,<0.23.0)
Description-Content-Type: text/markdown

# gpyt

TUI GPT frontend on the command line with Textual.

> WIP


## Demo

![gpyt demo](./media/gpyt-show-1.gif)

Uses [Textual](https://textual.textualize.io).


### How to run:
```sh
$ pip install gpyt

add `OPENAI_API_KEY="<your_openai_api_key>"` in a `.env` at $HOME or `export OPENAI_API_KEY=<your_key>`

$ python -m gpyt
```

### Desired Features

- [ ] `copy` to copy GPT's response to clipboard
- [ ] add gpt jailbreaks (DAN-esque)
- [ ] `new` to start a new chat (clear all history and console window)
- [ ] add special flags like -t (terse) or -v (verbose) or -d (detailed) or -i
- [ ] (informal) or -f (for file input) or --dan (for jailbreak)
- [ ] model select CLI
- [ ] add API_KEY from CLI
- [ ] add special error handling for RateLimiting or early stops to generation of text stream
- [ ] gpt4free integration (for 3.5 and 4)


### Completed Features

- [x] loading wheel
- [x] textual !!!
- [x] scrolling text (adjustable speed, or disable all together)
- [x] use streams api?
- [x] store chat logs somewhere.
- [x] load saved conversations

