Farkhod Sadykov
Farkhod Sadykov
Implement an option to reset an API key using command line argument `--reset-key`. When user provides this flag delete file located in `~/.config/shell-gpt/api_key.txt` and ask for new API key. Additionally...
Just a quick note, we have a [Discussions](https://github.com/TheR1D/shell_gpt/discussions) section on GitHub where we can discuss ideas, feature requests, and other topics related to this project. Using the [Discussions](https://github.com/TheR1D/shell_gpt/discussions) feature allows...
In some cases, we may need to run sgpt twice with the same prompt in order to pipe the output somwhere else. For example: ```shell sgpt --code "implement merge sort...
Make a runtime config file with all constatns like API key, cache length, ... ``` #.sgptrc # Max amount of message in each session. MAX_CHAT_MESSAGES=50 # Request caching. MAX_CACHE_LENGTH=200 #...
Please check our [wiki](https://github.com/TheR1D/shell_gpt/wiki) before creating new issue.
This pull request adds a new interactive mode to `sgpt`, which can be accessed using the `--interactive` or `-i` command line options. With this feature, users can interact with sgpt...
Current ShellGPT ingeration works only with Zsh and Bash. Add [shell integration](https://github.com/TheR1D/shell_gpt#shell-integration) for Fish as well. _Originally posted by @endolith in https://github.com/TheR1D/shell_gpt/discussions/268#discussioncomment-7777678_
Since ShellGPT is builded with [Typer](https://typer.tiangolo.com/) we can utilise [autocomplitions](https://typer.tiangolo.com/tutorial/options-autocompletion/) in order to improve user experience. * Completions for options and arguments. * Completions for OpenAI models when using `--model`....