An LLM-powered (CodeLlama or OpenAI) local diff code review tool.
Windows:
powershell
$ iwr https://github.com/twitchax/augre/releases/latest/download/augre_x86_64-pc-windows-gnu.zip
$ Expand-Archive augre_x86_64-pc-windows-gnu.zip -DestinationPath C:\Users\%USERNAME%\AppData\Local\Programs\augre
Mac OS (Apple Silicon):
bash
$ curl -LO https://github.com/twitchax/augre/releases/latest/download/augre_aarch64-apple-darwin.zip
$ unzip augre_aarch64-apple-darwin.zip -d /usr/local/bin
$ chmod a+x /usr/local/bin/augre
Linux:
bash
$ curl -LO https://github.com/twitchax/augre/releases/latest/download/augre_x86_64-unknown-linux-gnu.zip
$ unzip augre_x86_64-unknown-linux-gnu.zip -d /usr/local/bin
$ chmod a+x /usr/local/bin/augre
Cargo:
bash
$ cargo install augre
```bash $ augre -h Usage: augre [OPTIONS] [COMMAND]
Commands:
review Performs a code review of the current git diff HEAD^
ask Gives a response to the specified prompt
stop Stop all of the background services
help Print this message or the help of the given subcommand(s)
Options:
-d, --data-path
toml
mode = "LocalGpu"
model_url = "https://huggingface.co/TheBloke/CodeLlama-13B-Instruct-GGML/resolve/main/codellama-13b-instruct.ggmlv3.Q3_K_M.bin"
cria_port = 3000
MIT