PAIR is an AI-powered coding assistance REPL that pairs GPT-4 with you the developer to augment the best of both human and AI intelligence. It provides an interactive environment where users can input existing code, ask questions about the code or other open source projects or dependencies, receive helpful answers from the GPT-based programming assistant, add new code or refactor existing code, etc.
The REPL supports special commands for loading files and changing directories, and it can propose code changes as context diffs that can be processed automatically. Users have the option to accept or reject the proposed changes, making PAIR a flexible and powerful tool for developers.
Currently we are using GPT-4 to help build PAIR, and are very open to other collaborators who are similarly inclined to eat their own dogfood.
To install Pair AI, run the following command:
pip install pair_ai
After installing the package, you can use the pair
command in your terminal or command prompt to start the REPL:
pair
In the REPL, enter your questions or guidance or /file to input local files into the context.
When PAIR detects a diff in the model output, it extracts the diff and presents it to the user. If the user accepts the diff then the diff is applied to the referenced source file using patch. There are probably a lot of corner cases here so I expect this functionality to be fragile.
See example.md for a typical edit interaction.
/file <path>
: Load a file's content into the model context by providing its path./cd <path>
: Change the current working directory to the specified path.
To use the special commands, simply type the command followed by the appropriate path or command in the REPL.
Example:
/file /path/to/your/file.py
/cd /path/to/your/directory
- chatstack
- prompt_toolkit