Build and Test codecov Version Crates.io GitHub all releases Rust License:MIT

augre

An LLM-powered (CodeLlama or OpenAI) local diff code review tool.

Binary Usage

Install

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

Help Docs

```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 The path to the data directory [default: .augre] -m, --mode The default operation mode [default: openai] -y, --yes Whether to skip the confirmation prompt -h, --help Print help -V, --version Print version ```

Example Config

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

License

MIT