We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce an interactive chat session mode via the "-i" flag.
This creates a shell, where one can create an answer directly. The following short commands also exist:
The text was updated successfully, but these errors were encountered:
Interactive session is not a priority know - issue is closed
Sorry, something went wrong.
I was also interested in a chat support and crafted a bash one-liner that does the trick.
rlwrap bash -c 'echo ▶; while read in; do [[ -n "$in" ]] && echo ■ && sgpt --chat chat_name "$in" && echo ▶; done'
A little bit more details can be found here.
Drop a comment if you have any questions!
@ilya-bystrov This is a really cool and elegant solution - thanks for sharing!
Would you mind documenting your solution in sgpt's documentation? I would like to share it within the docs as well.
If you do not have time for this, I can do it in the next couple of weeks.
No branches or pull requests
Introduce an interactive chat session mode via the "-i" flag.
This creates a shell, where one can create an answer directly. The following short commands also exist:
The text was updated successfully, but these errors were encountered: