An automated code refactoring tool powered by GPT-3.
Project description
autobot
An automated code refactoring tool powered by GPT-3. Like GitHub Copilot, for your existing codebase.
Autobot takes an example change as input and generates patches for you to review by scanning your codebase for similar code blocks and "applying" that change to the existing source code.
Getting started
Autobot is available as autobot-ml
on PyPI:
pip install autobot-ml
Autobot depends on the OpenAI API and, in particular, expects your OpenAI
organization ID and API key to be exposed as the OPENAI_ORGANIZATION
and OPENAI_API_KEY
environment variables, respectively.
Autobot can also read from a .env
file:
OPENAI_ORGANIZATION=${YOUR_OPENAI_ORGANIZATION}
OPENAI_API_KEY=${YOUR_OPENAI_API_KEY}
Example usage
TL;DR: Autobot is a command-line tool. To generate patches, use autobot run
; to review the
generated patches, use autobot review
.
Autobot is designed around a two-step workflow.
In the first step (autobot run {schematic} {files_to_analyze}
), we point Autobot to (1) the
"schematic" that defines our desired change and (2) the files to which the change should be
applied.
In the second step (autobot review
), we review the patches that Autobot generated and, for each
suggested change, either apply it to the codebase or reject the patch entirely.
Autobot ships with several schematics that you can use out-of-the-box:
assert_equals
convert_to_dataclass
numpy_builtin_aliases
print_statement
sorted_attributes
standard_library_generics
unnecessary_f_strings
use_generator
useless_object_inheritance
For example: to remove any usages of NumPy's deprecated np.int
and associated aliases, we'd first
run autobot run numpy_builtin_aliases ./path/to/main.py
, followed by autobot review
.
The schematic
argument to autobot run
can either reference a directory within schematics
(like
numpy_builtin_aliases
, above) or a path to a user-defined schematic directory on-disk.
Implementing a novel refactor
Every refactor facilitated by Autobot requires a "schematic". Autobot ships with a few schematics
in the schematics
directory, but it's intended to be used with user-provided schematics.
A schematic is a directory containing three files:
before.py
: A code snippet demonstrating the "before" state of the refactor.after.py
: A code snippet demonstrating the "after" state of the refactor.autobot.json
: A JSON object containing a plaintext description of the before (before_description
) and after (after_description
) states, along with thetransform_type
("Function" or "Class").
For example: in Python 3, class Foo(object)
is equivalent to class Foo
. To automatically remove
those useless object inheritances from our codebase, we'd create a useless_object_inheritance
directory, and add the above files.
# before.py
class Foo(Bar, object):
def __init__(self, x: int) -> None:
self.x = x
# after.py
class Foo(Bar):
def __init__(self, x: int) -> None:
self.x = x
// autobot.json
{
"before_description": "with object inheritance",
"after_description": "without object inheritance",
"transform_type": "Class"
}
We'd then run autobot run ./useless_object_inheritance /path/to/file/or/directory
to generate
patches, followed by autobot review
to apply or reject the suggested changes.
Limitations
- Running Autobot consumes OpenAI credits and thus could cost you money. Be careful!
- To speed up execution, Autobot calls out to the OpenAI API in parallel. If you haven't upgraded
to a paid account, you may hit rate-limit errors. You can pass
--nthreads 1
toautobot run
to disable multi-threading. Running Autobot over large codebases is not recommended (yet). - Depending on the transform type, Autobot will attempt to generate a patch for every function or every class. Any function or class that's "too long" for GPT-3's maximum prompt size will be skipped.
- Autobot isn't smart enough to handle nested functions (or nested classes), so nested functions will likely be processed and appear twice.
- Autobot only supports Python code for now. (Autobot relies on parsing the AST to extract relevant code snippets, so additional languages require extending AST support.)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for autobot_ml-0.0.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 658c6c17dfabfb575c8a5564bd8a5209c71984b7e336005495d0084ec89d0fd8 |
|
MD5 | 07f5440f86ef2f5ad4fe283212af00ff |
|
BLAKE2b-256 | c43c3a7891542ab1d2f4e74754042aae5142af7c7a3e99275798b75da1306683 |