Add ability to save and continue chatting #83
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The aiac prompt line, after showing results from the LLM provider,
allows saving only once, as it exits immediately after saving. This
commit introduces the ability to save and continue chatting, thus
allowing users to save multiple files during a conversation with
the model.
For backwards compatibility purposes, the "s" key will still save
and exit, but the new "w" key can be used to save and continue
chatting.
This PR also removes the text-davinci-003 and text-davinci-002 models,
which are set to be shut down by OpenAI on January 4.
A small bug is also fixed in the CLI: when an unsupported/unknown
model was provided, the error message did not properly include the
name of the model provided.
Closes #81