├── .gitmodules ├── .python-version ├── CITATION.cff ├── LICENSE ├── README.md ├── benchmark ├── .coveragerc ├── Dockerfile ├── Makefile ├── README.md ├── evaluate_completions.sh ├── evaluator_overlay.py ├── generate_completions.py ├── pass_k.py ├── requirements.txt ├── separate_results.sh └── separate_results_on_change_kind.sh ├── editcoder ├── README.md ├── deepspeed.json ├── deepspeed_offload.json └── run.sh ├── editpackft ├── README.md ├── filter.py └── format.py ├── pyproject.toml ├── requirements.txt └── uv.lock /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | exclude_also = 3 | @(abc\.)?abstractmethod 4 | -------------------------------------------------------------------------------- /benchmark/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/Dockerfile -------------------------------------------------------------------------------- /benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/Makefile -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/evaluate_completions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/evaluate_completions.sh -------------------------------------------------------------------------------- /benchmark/evaluator_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/evaluator_overlay.py -------------------------------------------------------------------------------- /benchmark/generate_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/generate_completions.py -------------------------------------------------------------------------------- /benchmark/pass_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/pass_k.py -------------------------------------------------------------------------------- /benchmark/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/requirements.txt -------------------------------------------------------------------------------- /benchmark/separate_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/separate_results.sh -------------------------------------------------------------------------------- /benchmark/separate_results_on_change_kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/benchmark/separate_results_on_change_kind.sh -------------------------------------------------------------------------------- /editcoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editcoder/README.md -------------------------------------------------------------------------------- /editcoder/deepspeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editcoder/deepspeed.json -------------------------------------------------------------------------------- /editcoder/deepspeed_offload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editcoder/deepspeed_offload.json -------------------------------------------------------------------------------- /editcoder/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editcoder/run.sh -------------------------------------------------------------------------------- /editpackft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editpackft/README.md -------------------------------------------------------------------------------- /editpackft/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editpackft/filter.py -------------------------------------------------------------------------------- /editpackft/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/editpackft/format.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/requirements.txt -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuprl/CanItEdit/HEAD/uv.lock --------------------------------------------------------------------------------