autoheal
Version:
GPT Test driven development. Automatically fix tests and guide GPT to write and fix code using your tests.
122 lines (121 loc) • 5.63 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { prompt } from "./prompt.js";
import { execa } from "execa";
import _ from "lodash";
/**
* Provide GPT a list of files, the test results and ask it to return the files that are likely to be causing the test failures.
*
* @param testDetails
* @param model
* @returns
*/
export function scanProjectForForFilesToHeal(testDetails, hint, model) {
return __awaiter(this, void 0, void 0, function* () {
const fileExtentions = [
"js",
"jsx",
"ts",
"tsx",
"php",
"py",
"rb",
"go",
"java",
"c",
"cpp",
];
const findFilesToFix = yield execa("find", [
".",
"-name",
"*.ts",
...fileExtentions.map((ext) => ["-o", "-name", `*.${ext}`]).flat(),
]);
const possibleFilesToFix = findFilesToFix.stdout
.split("\n")
.filter((f) => f)
.filter((f) => f.indexOf(".next") === -1)
.filter((f) => f.indexOf(".git") === -1)
.filter((f) => f.indexOf("node_modules") === -1)
.filter((f) => f.indexOf("test") === -1)
.filter((f) => f.indexOf("spec") === -1)
.filter((f) => f.indexOf("dist") === -1);
// Have GPT guess the problematic files based on the test results alone
const guessedFileNames = yield guessFilesBasedOnTestResults(testDetails, hint, model);
const guessedFiles = possibleFilesToFix.filter((filePath) => {
const fileName = filePath.split("/").pop();
return (fileName && guessedFileNames && guessedFileNames.indexOf(fileName) !== -1);
});
if (guessedFiles.length > 0) {
return guessedFiles;
}
// Ok, GPT didn't guess any files, so we'll have to ask it to analyse the list of files
const chunkSize = model === "gpt-3.5-turbo" ? 30 : 80; // Try to avoid token limit
const fileChunks = _.chunk(possibleFilesToFix, chunkSize);
const responses = yield Promise.all(fileChunks.map((fileChunk) => analyseFileListChunk(testDetails, hint, fileChunk, model)));
return possibleFilesToFix.filter((filePath) => {
// Does file exist in any of the responses?
return responses.some((response) => {
return (response === null || response === void 0 ? void 0 : response.indexOf(filePath)) !== -1;
});
});
});
}
function guessFilesBasedOnTestResults(testDetails, hint, model) {
return __awaiter(this, void 0, void 0, function* () {
const response = yield prompt([
{
role: "system",
content: "You are an expert programming assistant helping to debug failing tests. ",
},
{
role: "user",
content: `${hint ? `${hint}\n\n` : ""} Given the following test results. Guess possible files names in the project that may be causing the issue, do not include test files eg., "utility.test.js"` +
` \nList of possible files:\n` +
"Test run results:\n```" +
testDetails +
"\n```\n",
},
], model);
return response;
});
}
function analyseFileListChunk(testDetails, hint, possibleFilesToFix, model) {
return __awaiter(this, void 0, void 0, function* () {
const response = yield prompt([
{
role: "system",
content: "You are an expert programming assistant. ",
},
{
role: "user",
content: "You will be given results of a test run and a list of files," +
" and reply with up to 4 files that have a high degree of probablity to be causing " +
" the test failures." +
" You will only return files that have a high probability of being problematic. ",
},
{
role: "assistant",
content: "Yes, understood. I will only reply with a list of files and not provide any context",
},
{
role: "user",
content: `${hint ? `${hint}\n\n` : ""}Respond very briefly with the list of of files that may causing the test fails. Only give me the files that are very likely to be causing a failure.` +
`It is very possible this list of files may contain no files to fix, reply with an empty list in if this looks to be the case.` +
` \nList of possible files:\n` +
possibleFilesToFix.map((f) => "" + f).join(", ") +
"Test run results:\n```" +
testDetails +
"\n```\n Do not provide any additional context.",
},
], model);
return response;
});
}