UNPKG

autoheal

Version:

GPT Test driven development. Automatically fix tests and guide GPT to write and fix code using your tests.

10 lines (9 loc) 219 B
import { prompt } from "./prompt.js"; export function summariseTestDetails(testDetails, model) { const explanation = prompt([ { role: "system", } ], model); return explanation; }