aboutsummaryrefslogtreecommitdiff
path: root/src/gpt_chat_cli/cmd.py
AgeCommit message (Collapse)AuthorLines
2023-05-11Fix printing when provided initial messagesv0.2.2Furkan Sahin-3/+4
2023-05-11Add slash command and editing with an arbitrary editorFurkan Sahin-58/+108
2023-05-10Fix recursion caused by name changeFurkan Sahin-2/+3
2023-05-09Rewrote the argparsing functionality to enable autocompletion via the ↵Furkan Sahin-0/+326
"kislyuk/argcomplete" package. This essentially means: - `argparsing.py` does a minimal amount of work to initialize the arg parser. Then it attempts dynamic completion. - `argvalidation.py` processes the raw arguments parsed in `argparsing.py`, validates them, issues warnings (if required), and splits them into logical groupings - Commands in `gcli.py` have been moved to `cmd.py` - `main.py` provides an initial control path to call these functions in succession