Skip to main content

Review your code changes in a git repository using an LLM

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gait-0.1.1.tar.gz (11.6 kB view hashes)

Uploaded Source

Built Distribution

gait-0.1.1-py3-none-any.whl (13.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page