Forrest logo
back to context overview

rgpt

List of commands for rgpt:

  • rgpt:tldr:1c384 rgpt: Get a more detailed verbose output from `rgpt` while reviewing the code.
    $ rgpt --v --i "$(git diff ${filename})"
    try on your machine
    explain this command
  • rgpt:tldr:6310e rgpt: Ask GPT to improve the code with no extra options.
    $ rgpt --i "$(git diff ${filename})"
    try on your machine
    explain this command
  • rgpt:tldr:6c3f8 rgpt: Make `rgpt` use a JSON output.
    $ rgpt --json --i "$(git diff ${filename})"
    try on your machine
    explain this command
  • rgpt:tldr:779ec rgpt: Ask GPT to review your code using a specific model.
    $ rgpt --model ${davinci} --i "$(git diff ${filename})"
    try on your machine
    explain this command
  • rgpt:tldr:f5f97 rgpt: Ask GPT for a more unique result using a float value between 0 and 2. (higher = more unique).
    $ rgpt --pres ${1-2} --i "$(git diff ${filename})"
    try on your machine
    explain this command
  • rgpt:tldr:fc79f rgpt: Ask GPT to improve the code and limit it to a certain amount of GPT3 tokens.
    $ rgpt --max ${300} --i "$(git diff ${filename})"
    try on your machine
    explain this command
back to context overview