Github AI-powered bot 🤖.
gh-gpt is a Rust-based command line tool that uses the power of ChatGPT to automate tasks on Github. With gh-gpt, you can automatically add relevant labels to a Github issue, among other tasks.
gh-gpt requires a recent version of Rust. You can install Rust through the rustup toolchain installer here.
Once Rust is installed, you can install gh-gpt using Cargo:
bash
cargo install gh-gpt
gh-gpt uses dotenv
to automatically load environment variables from a .env
file. You can also set these variables manually in your environment. Here is an example of the configuration variables used:
```bash
GHGPTGITHUBTOKEN="..." GHGPTOPENAIAPI_KEY="..."
GHGPTCHATGPTMODEL="gpt-4" GHGPTCHATGPTMAX_TOKENS="4096" ```
Replace the "..." with your actual tokens and preferences.
gh-gpt currently supports the following commands:
labelize
- Automatically add relevant labels to a Github issue.help
- Print help message or the help of the given subcommand(s).You can view help for the CLI tool with:
bash
gh-gpt help
To automatically add relevant labels to a Github issue, use the labelize
command:
bash
gh-gpt labelize [repo_owner] [repo_name] [issue_number]
For example, to labelize issue #1 of keep-starknet-strange/madara you would run:
bash
gh-gpt labelize keep-starknet-strange madara 1
Contributions to gh-gpt are welcomed! Feel free to submit a pull request or create an issue.
gh-gpt is licensed under the MIT License.