Skip to content

Review your code changes in a git repository using an LLM

License

Notifications You must be signed in to change notification settings

can-taslicukur/gait

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gait

PyPI version

gait is a command line tool that helps you review code changes in a git repository using an LLM. gait commands generates diffs based on git commands, and (currently) uses OpenAI's chat completion models to provide code review suggestions.

Getting Started

Installation

You can install gait using pip:

pip install gait

Currently, gait only supports OpenAI chat completion models. To use any of the commands, you can either set the OPENAI_API_KEY environment variable

export OPENAI_API_KEY='YOUR API KEY HERE'

or pass your OpenAI API key manually with --openai-api-key option.

Commands

  • Add: Review changes between the working tree and the index.

    gait add
  • Commit: Review changes between the index and the HEAD.

    gait commit
  • Merge: Review the result of merging a feature branch into the HEAD.

    gait merge <feature_branch>
  • Push: Review the changes between the HEAD and the remote.

    gait push [remote]
  • Pull Request (PR): Review the result of a pull request from HEAD to the target branch in the remote.

    gait pr <target_branch> [remote]

Options

  • --openai_api_key: Specify the OpenAI API key. Can also be set via OPENAI_API_KEY environment variable.
  • --model: Choose the OpenAI GPT model for reviews (default: gpt-4-turbo-preview).
  • --temperature: Set the temperature for model responses (range: 0-2) (default: 1).
  • --system_prompt: Use a custom system prompt for diff patches.
  • --unified: Context line length on each side of the diff hunk (default: 3).

Help

To get help, run gait --help.

To get help on a specific command, run gait <command> --help.

About

Review your code changes in a git repository using an LLM

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages