aboutsummaryrefslogtreecommitdiff
path: root/src/gpt_chat_cli/argparsing.py
AgeCommit message (Collapse)AuthorLines
2023-05-11Add slash command and editing with an arbitrary editorFurkan Sahin-2/+9
2023-05-09Rewrote the argparsing functionality to enable autocompletion via the ↵Furkan Sahin-165/+35
"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
2023-05-06lessen contextFurkan Sahin-2/+2
2023-05-06Correct prefixFurkan Sahin-19/+20
2023-05-06Add alternative file sources, specify system messageFurkan Sahin-4/+48
2023-05-05Allow --load-response-from-file without messageFurkan Sahin-1/+3
2023-05-05Add interactive modeFurkan Sahin-3/+2
2023-05-05Refactor command structure, add validation for interactive sessionsFurkan Sahin-4/+27
2023-05-05Add command to list modelsFurkan Sahin-2/+10
2023-05-05Add stdin as a input source for the inital promptFurkan Sahin-10/+21
2023-05-05Disable color when redirection occurs. Only save query arguments with ↵Furkan Sahin-4/+69
save/load API.
2023-05-04Add packaging infoFurkan Sahin-0/+193