import json import os import subprocess import sys from json.decoder import JSONDecodeError from pathlib import Path from aider import models from aider.coders import Coder from aider.dump import dump # noqa: F401 from aider.io import InputOutput def main(): if len(sys.argv) != 2: print("Usage: python benchmark.py ") sys.exit(1) dirname = Path(sys.argv[1]) cwd = os.getcwd() total_tests = 0 passed_tests = 0 total_cost = 0 for testname in os.listdir(dirname): dump(testname) results = run_test(dirname / testname) os.chdir(cwd) if results: total_tests += 1 passed = results["tests_passed"] if passed: passed_tests += 1 dump(passed_tests, total_tests) total_cost += results["cost"] dump(total_cost) ### # input('next?') def run_test(testdir): if not os.path.isdir(testdir): print("Not a dir:", testdir) return os.chdir(testdir) results_fname = Path(".aider.results.json") if results_fname.exists(): try: return json.loads(results_fname.read_text()) except JSONDecodeError: print(f"{testdir}/{results_fname} failed to parse, skipping") return started_fname = Path(".aider.started") if started_fname.exists(): # print(f"{testdir}/{started_fname} exists, skipping") # return pass started_fname.touch() fnames = [] for fname in os.listdir("."): if "test" not in fname and os.path.isfile(fname) and fname[0] != ".": fnames.append(fname) instructions = Path(".docs/instructions.md").read_text() instructions += ( "\n\n=====\n\nModify these files according to the above instructions: " + " ".join(fnames) ) io = InputOutput( pretty=True, yes=False, ) main_model = models.Model("gpt-3.5-turbo") edit_format = main_model.edit_format coder = Coder.create( main_model, edit_format, io, os.environ["OPENAI_API_KEY"], fnames=fnames, # verbose=True, use_git=False, stream=False, ) coder.run(with_message=instructions) if coder.num_control_c: raise KeyboardInterrupt passed = run_tests() results = dict( testdir=str(testdir), model=main_model.name, edit_format=edit_format, tests_passed=passed, cost=coder.total_cost, ) dump(results) results_fname.write_text(json.dumps(results, indent=4)) started_fname.unlink() return results def run_tests(): test_files = [file for file in os.listdir() if file.endswith("_test.py")] assert len(test_files) all_tests_passed = True for test_file in test_files: dump(test_file) result = subprocess.run(["pytest", test_file], capture_output=True, text=True) print(result.stdout) print(result.stderr) if result.returncode != 0: all_tests_passed = False print(f"Test {test_file} failed with the following output:\n{result.stderr}") return all_tests_passed if __name__ == "__main__": main()