codefinetuner 0.2.1__tar.gz → 0.4.0rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.gitignore +1 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/PKG-INFO +37 -23
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/README.md +33 -21
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/config/codefinetuner_config.yaml +32 -32
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/config-file.md +5 -3
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/all_metric_averages_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/clean_st_code.py +152 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/config/codefinetuner_config.yaml +90 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/edit_similarity_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/finetuning-example-st.md +531 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/datasets/benchmark_dataset.jsonl +205 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/all_metric_averages_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/analysis_results.json +2111 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/edit_similarity_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/evaluation_results.jsonl +205 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/exact_match_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/line_match_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/perplexity_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/evaluate/results/sentencebleu_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/finetune/results/trainer_log.json +100 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/finetune/results/trainer_loss_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/datasets/eval_dataset.jsonl +226 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/datasets/test_dataset.jsonl +205 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/datasets/train_dataset.jsonl +1807 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/middle_token_length_distribution.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/split_log.jsonl +11 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/split_sizes.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/outputs/preprocess/results/token_length_distribution.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/perplexity_plot.png +0 -0
- codefinetuner-0.4.0rc1/docs/finetuning_example/st_example/trainer_loss_plot.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/tree-sitter-customization.md +3 -4
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/pyproject.toml +3 -1
- codefinetuner-0.4.0rc1/scripts/analyze_dataset.py +50 -0
- codefinetuner-0.4.0rc1/scripts/backup_finetuned.py +40 -0
- codefinetuner-0.4.0rc1/scripts/print_treesitter_tree.py +29 -0
- codefinetuner-0.4.0rc1/src/codefinetuner/convert/config.py +59 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/convert/convert_hf_to_gguf.py +2375 -663
- codefinetuner-0.4.0rc1/src/codefinetuner/convert/convert_hf_to_gguf.version +1 -0
- codefinetuner-0.4.0rc1/src/codefinetuner/convert/run.py +137 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/analyze.py +9 -6
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/benchmark.py +0 -4
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/config.py +13 -39
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/evaluate.py +6 -1
- codefinetuner-0.4.0rc1/src/codefinetuner/evaluate/generate.py +221 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/metrics.py +76 -9
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/run.py +30 -14
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/finetune/config.py +9 -59
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/finetune/model.py +45 -2
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/finetune/run.py +64 -6
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/finetune/train.py +103 -41
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/pipeline.py +9 -1
- codefinetuner-0.4.0rc1/src/codefinetuner/preprocess/analyze.py +178 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/preprocess/config.py +4 -17
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/preprocess/extract.py +24 -4
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/preprocess/process.py +69 -9
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/preprocess/run.py +29 -4
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/preprocess/tree_sitter_definitions.json +130 -2
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/config/codefinetuner_config.yaml +2 -1
- codefinetuner-0.4.0rc1/tests/convert/test_config.py +75 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/convert/test_run.py +71 -16
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/evaluate/test_analyze.py +22 -27
- codefinetuner-0.4.0rc1/tests/evaluate/test_benchmark.py +147 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/evaluate/test_config.py +6 -19
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/evaluate/test_evaluate.py +14 -14
- codefinetuner-0.4.0rc1/tests/evaluate/test_generate.py +256 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/evaluate/test_metrics.py +99 -5
- codefinetuner-0.4.0rc1/tests/evaluate/test_run.py +116 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/finetune/test_config.py +42 -36
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/finetune/test_model.py +69 -15
- codefinetuner-0.4.0rc1/tests/finetune/test_run.py +219 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/finetune/test_train.py +136 -13
- codefinetuner-0.4.0rc1/tests/preprocess/test_analyze.py +172 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/preprocess/test_config.py +8 -10
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/preprocess/test_extract.py +75 -33
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/preprocess/test_process.py +104 -5
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/preprocess/test_run.py +18 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.editorconfig +50 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.gitattributes +42 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/FUNDING.yml +1 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/ISSUE_TEMPLATE/bug_report.yml +62 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/ISSUE_TEMPLATE/config.yml +8 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/ISSUE_TEMPLATE/feature_request.yml +36 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/PULL_REQUEST_TEMPLATE.md +26 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/dependabot.yml +51 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/workflows/ci.yml +212 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/workflows/pages.yml +53 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/workflows/preflight.yml +135 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/workflows/prerelease.yml +168 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.github/workflows/release.yml +401 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/.gitignore +76 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/BLUEPRINT.md +305 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/CHANGELOG.md +87 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/CMakeLists.txt +76 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/CODE_OF_CONDUCT.md +44 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/CONTRIBUTING.md +73 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/Cargo.toml +34 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/EXTENDING.md +185 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/LICENSE +21 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/Makefile +115 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/README.md +211 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/SECURITY.md +35 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/SPEC-COMPLIANCE.md +177 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/VERSION +1 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/assets/demo.gif +0 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/assets/demo.mkv +0 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/binding.gyp +35 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/c/tree-sitter-iec61131-3-st.pc.in +10 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/c/tree_sitter/tree-sitter-iec61131-3-st.h +16 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/c_sharp/TreeSitterIec61131_3St/Language.cs +53 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/c_sharp/TreeSitterIec61131_3St/TreeSitterIec61131_3St.csproj +35 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/c_sharp/TreeSitterIec61131_3St.Tests/LanguageTests.cs +166 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/c_sharp/TreeSitterIec61131_3St.Tests/TreeSitterIec61131_3St.Tests.csproj +28 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/go/binding.go +15 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/go/binding_test.go +15 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/node/binding.cc +19 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/node/binding_test.js +11 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/node/index.d.ts +60 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/node/index.js +37 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/python/tests/test_binding.py +12 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/python/tree_sitter_iec61131_3_st/__init__.py +43 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/python/tree_sitter_iec61131_3_st/__init__.pyi +17 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/python/tree_sitter_iec61131_3_st/binding.c +35 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/rust/build.rs +56 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/rust/lib.rs +60 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/docs/_config.yml +21 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/docs/index.md +52 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/blink.st +24 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/configuration.st +34 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/conveyor.st +69 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/debouncer.st +34 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/dialect-extension/README.md +70 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/dialect-extension/grammar.js +85 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/dialect-extension/package.json +8 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/dialect-extension/sample.st +20 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/dialect-extension/tree-sitter.json +26 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/edge-detector.st +31 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/lookup-table.st +81 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/moving-average.st +52 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/oop-shapes.st +55 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/pid-controller.st +62 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/ramp-generator.st +42 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/state-machine.st +95 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/temperature-monitor.st +60 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/examples/traffic-light.st +71 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/go.mod +7 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/go.sum +36 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/grammar.js +1135 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/package.json +59 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/pyproject.toml +30 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/queries/folds.scm +43 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/queries/highlights.scm +197 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/queries/indents.scm +64 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/queries/injections.scm +12 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/queries/locals.scm +54 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/queries/tags.scm +65 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/scripts/wasm-smoke.mjs +48 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/setup.py +80 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/grammar.json +6053 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/node-types.json +3147 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/parser.c +96386 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/scanner.c +152 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/tree_sitter/array.h +330 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/comments-and-pragmas.txt +119 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/data-types.txt +363 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/expressions.txt +264 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/literals.txt +266 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/oop.txt +176 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/pou-declarations.txt +251 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/statements.txt +418 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/test/corpus/var-blocks.txt +185 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/py.typed +0 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-vhdl/src/tree_sitter/alloc.h +54 -0
- codefinetuner-0.4.0rc1/third_party/tree-sitter-vhdl/src/tree_sitter/parser.h +286 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/uv.lock +757 -314
- codefinetuner-0.2.1/scripts/backup_finetuned.py +0 -35
- codefinetuner-0.2.1/src/codefinetuner/convert/config.py +0 -107
- codefinetuner-0.2.1/src/codefinetuner/convert/convert_hf_to_gguf.version +0 -1
- codefinetuner-0.2.1/src/codefinetuner/convert/run.py +0 -82
- codefinetuner-0.2.1/src/codefinetuner/evaluate/generate.py +0 -145
- codefinetuner-0.2.1/tests/convert/test_config.py +0 -141
- codefinetuner-0.2.1/tests/evaluate/test_benchmark.py +0 -97
- codefinetuner-0.2.1/tests/evaluate/test_generate.py +0 -156
- codefinetuner-0.2.1/tests/evaluate/test_run.py +0 -79
- codefinetuner-0.2.1/tests/finetune/test_run.py +0 -131
- codefinetuner-0.2.1/tests/outputs/evaluate/datasets/benchmark_dataset.jsonl +0 -4
- codefinetuner-0.2.1/tests/outputs/finetune/results/lora_model/chat_template.jinja +0 -54
- codefinetuner-0.2.1/tests/outputs/finetune/results/lora_model/tokenizer.json +0 -757444
- codefinetuner-0.2.1/tests/outputs/finetune/results/lora_model/tokenizer_config.json +0 -29
- codefinetuner-0.2.1/tests/outputs/finetune/results/trainer_log.json +0 -13
- codefinetuner-0.2.1/third_party/tree-sitter-c/.git +0 -1
- codefinetuner-0.2.1/third_party/tree-sitter-mojo/.git +0 -1
- codefinetuner-0.2.1/third_party/tree-sitter-python/.git +0 -1
- codefinetuner-0.2.1/third_party/tree-sitter-python/tree_sitter/core/.git +0 -1
- codefinetuner-0.2.1/third_party/tree-sitter-vhdl/.git +0 -1
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.dockerignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.github/workflows/release.yaml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.github/workflows/release_test.yaml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.github/workflows/tests.yaml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.gitmodules +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/.python-version +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/Dockerfile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/LICENSE.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/InstallLlamaCpp.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/code_block.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/code_file.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/code_subblock.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/inference-vscode.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/docs/install-nvidia-l4-driver.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/requirements.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/scripts/decode_dataset.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/scripts/merge_lora_adapter_and_save.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/scripts/plot_loss.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/scripts/save_base_hf_model.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/scripts/test_ast_parser.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/scripts/unzip_all_in_directory.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/convert/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/evaluate/codebleu_shim.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/finetune/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/src/codefinetuner/preprocess/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/codefinetuner/test_pipeline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/data/eval/eval_test.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/data/test/test_test.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/data/train/train_test.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/models/Qwen2.5-Coder-0.5B/chat_template.jinja +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/models/Qwen2.5-Coder-0.5B/config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/models/Qwen2.5-Coder-0.5B/generation_config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/models/Qwen2.5-Coder-0.5B/tokenizer.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/models/Qwen2.5-Coder-0.5B/tokenizer_config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/outputs/preprocess/results/datasets/eval_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/outputs/preprocess/results/datasets/test_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/tests/outputs/preprocess/results/datasets/train_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/FUNDING.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/workflows/lint.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/Cargo.lock +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/Package.resolved +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/c/tree-sitter-c.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/c/tree_sitter/tree-sitter-c.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/go/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/node/binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/node/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/swift/TreeSitterC/c.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/bindings/swift/TreeSitterCTests/TreeSitterCTests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/eslint.config.mjs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/examples/cluster.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/examples/malloc.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/examples/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/go.sum +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/queries/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/queries/tags.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/src/grammar.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/src/node-types.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/ambiguities.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/crlf.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/declarations.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/expressions.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/microsoft.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/preprocessor.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/statements.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/corpus/types.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/highlight/keywords.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/test/highlight/names.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-c/tree-sitter.json +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo → codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/bindings/python/tree_sitter_iec61131_3_st}/py.typed +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates → codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/tree_sitter}/alloc.h +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-python/tree_sitter/core/lib/src → codefinetuner-0.4.0rc1/third_party/tree-sitter-iec61131-3-st/src/tree_sitter}/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/workflows/fuzz.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/workflows/lint.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/Cargo.lock +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/Package.resolved +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-mojo.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-mojo.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-python.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/go/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/go/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/node/binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/node/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/binding.c +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-python/tree_sitter → codefinetuner-0.4.0rc1/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo}/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterMojo/mojo.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterPython/python.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterPythonTests/TreeSitterPythonTests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/eslint.config.mjs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/compound-statement-without-trailing-newline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/crlf-line-endings.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/mixed-spaces-tabs.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/multiple-newlines.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/python2-grammar-crlf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/python2-grammar.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/python3-grammar-crlf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/python3-grammar.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/python3.8_grammar.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/simple-statements-without-trailing-newline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/tabs.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/examples/trailing-whitespace.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/go.sum +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/python.dylib.dSYM/Contents/Info.plist +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/python.dylib.dSYM/Contents/Resources/Relocations/aarch64/python.dylib.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/queries/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/queries/indents.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/queries/outline.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/queries/overrides.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/grammar.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/node-types.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/corpus/errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/corpus/expressions.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/corpus/literals.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/corpus/pattern_matching.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/corpus/statements.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/highlight/keywords.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/highlight/parameters.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/highlight/pattern_matching.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test/tags/main.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/test.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-mojo/tree-sitter.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.clang-format +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.github/workflows/docs.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.github/workflows/pypi.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/.gitmodules +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/MANIFEST.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/_static/favicon.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/_static/logo.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Language.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.LogType.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.LookaheadIterator.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Node.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Parser.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Point.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Query.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryCursor.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryError.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryPredicate.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Range.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.Tree.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/classes/tree_sitter.TreeCursor.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/conf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/docs/index.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/examples/usage.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/examples/walk_tree.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/test_language.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/test_lookahead_iterator.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/test_node.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/test_parser.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/test_query.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tests/test_tree.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/language.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/lookahead_iterator.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/module.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/node.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/query.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/query_cursor.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/query_predicates.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/range.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/tree.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/tree_cursor.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/binding/types.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.cargo/config.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.dockerignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/FUNDING.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/actions/cache/action.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/cliff.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/close_unresponsive.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/cross.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/make.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/remove_response_label.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/reviewers_remove.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/tree-sitter.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/backport.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/bindgen.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/build.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/docs.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/emscripten.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/nvim_ts.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/release.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/response.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/reviewers_remove.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/sanitize.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/wasm_exports.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/CONTRIBUTING.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/Cargo.lock +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/Dockerfile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/FUNDING.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/build.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/build.zig.zon +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/benches/benchmark.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/config/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/config/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/config/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/build_lex_table.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/build_parse_table.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/coincident_tokens.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/item.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/item_set_builder.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/minimize_parse_table.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/token_conflicts.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/dedup.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/dsl.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/grammar_files.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/grammars.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/nfa.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/node_types.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/parse_grammar.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/expand_repeats.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/expand_tokens.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/extract_default_aliases.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/extract_tokens.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/flatten_grammar.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/intern_symbols.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/process_inlines.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/render.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/rules.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/tables.rs +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-vhdl/src/tree_sitter → codefinetuner-0.4.0rc1/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates}/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/emscripten-version +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/cli.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/dsl.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/install.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/allocations.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/corpus_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/edits.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/random.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/scope_sequence.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/highlight.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/init.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/input.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/logger.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/main.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/parse.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/playground.html +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/playground.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/query.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/query_testing.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tags.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/PARSER_NAME.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/PARSER_NAME.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/_cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.zig.zon +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/cmakelists.cmake +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/js-binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/py-binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/root.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/test.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/tests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test_highlight.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test_tags.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/async_context_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/corpus_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/detect_language.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/allocations.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/dirs.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/edits.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/fixtures.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/query_helpers.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/highlight_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/language_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/node_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/parser_hang_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/parser_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/pathological_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/proc_macro/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/proc_macro/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/query_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/tags_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/test_highlight_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/test_tags_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/text_provider_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/tree_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/wasm_language_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/util.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/version.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/cli/src/wasm.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/book.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/3-syntax-highlighting.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/4-code-navigation.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/5-implementation.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/6-contributing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/7-playground.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/SUMMARY.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/css/mdbook-admonish.css +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/css/playground.css +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/favicon-16x16.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/favicon-32x32.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/tree-sitter-small.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/js/playground.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/schemas/config.schema.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/schemas/grammar.schema.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/build.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/complete.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/dump-languages.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/fuzz.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/generate.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/highlight.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/init-config.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/init.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/parse.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/playground.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/query.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/tags.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/test.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/version.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/1-getting-started.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/2-the-grammar-dsl.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/3-writing-the-grammar.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/4-external-scanners.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/5-writing-tests.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/6-publishing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/1-getting-started.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/2-basic-parsing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/3-advanced-parsing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/4-walking-trees.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/6-static-node-types.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/1-syntax.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/2-operators.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/3-predicates-and-directives.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/4-api.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/docs/theme/favicon.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/highlight/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/highlight/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/highlight/include/tree_sitter/highlight.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/highlight/src/c_lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/highlight/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/.ccls +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/bindings.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/ffi.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/util.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/wasm_language.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/CONTRIBUTING.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/eslint.config.mjs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/exports.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/imports.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/prefix.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/tree-sitter.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/tree-sitter.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/build.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/check-artifacts-fresh.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/generate-dts.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/bindings.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/constants.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/index.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/language.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/lookahead_iterator.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/marshal.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/node.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/parser.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/query.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/tree.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/tree_cursor.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/helper.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/language.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/node.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/parser.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/query.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/tree.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/tsconfig.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/vitest.config.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/web-tree-sitter.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/web-tree-sitter.d.ts.map +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/include/tree_sitter/api.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/language/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/language/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/language/language.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/alloc.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/atomic.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/clock.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/error_costs.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/get_changed_ranges.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/get_changed_ranges.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/host.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/language.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/language.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/length.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lexer.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lexer.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lib.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/node.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/parser.c +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-vhdl/src/tree_sitter → codefinetuner-0.4.0rc1/third_party/tree-sitter-python/tree_sitter/core/lib/src}/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/point.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/portable/endian.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/query.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/reduce_action.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/reusable_node.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/stack.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/stack.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/subtree.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/subtree.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree_cursor.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree_cursor.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/ts_assert.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/ICU_SHA +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/ptypes.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/umachine.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/urename.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf16.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf8.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/stdlib-symbols.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/stdlib.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/wasm-stdlib.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm_store.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm_store.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/lib/tree-sitter.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/rustfmt.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/tags/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/tags/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/tags/include/tree_sitter/tags.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/tags/src/c_lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/tags/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/c_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/javascript_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/json_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/python_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/ruby_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/fixtures.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/grammars/.gitkeep +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/template_corpus/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/template_corpus/ruby_templates.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_inlined_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_inlined_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_token_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_token_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_unit_reductions/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_unit_reductions/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliases_in_root/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliases_in_root/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_error/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_error/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_left/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_left/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_missing/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_missing/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_right/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_right/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflicting_precedence/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflicting_precedence/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/depends_on_column/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/depends_on_column/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/depends_on_column/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_extra_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_extra_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_extra_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_rules/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_extra_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_extra_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_extra_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals_with_shared_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals_with_shared_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_eof/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_eof/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_eof/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_should_hang_not_crash/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_should_hang_not_crash/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_should_hang_not_crash/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/immediate_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/immediate_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/indirect_recursion_in_transitions/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/indirect_recursion_in_transitions/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inline_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inline_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inlined_aliased_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inlined_aliased_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inlined_aliased_rules/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/invisible_start_rule/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/invisible_start_rule/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/readme.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_rule_aliased_as_anonymous/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_rule_aliased_as_anonymous/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_rule_aliased_as_anonymous/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/nested_inlined_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/nested_inlined_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/nested_inlined_rules/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/next_sibling_from_zwt/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/next_sibling_from_zwt/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/partially_resolved_conflict/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/partially_resolved_conflict/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/partially_resolved_conflict/readme.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_missing/expected_error.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_missing/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_missing/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_negative/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_negative/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_negative/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_positive/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_positive/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_positive/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_subsequence/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_subsequence/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_token/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_token/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_token/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme_grammar/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme_grammar/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/reserved_words/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/reserved_words/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_blank/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_blank/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_token/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_token/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unicode_classes/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unicode_classes/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/uses_current_column/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/uses_current_column/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/uses_current_column/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/benchmark.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/build_wasm.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/bump.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/check_wasm_exports.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/clippy.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/fetch.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/generate.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/main.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/upgrade_emscripten.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/upgrade_wasmtime.rs +0 -0
- {codefinetuner-0.2.1/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl → codefinetuner-0.4.0rc1/third_party/tree-sitter-python/tree_sitter}/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/workflows/fuzz.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/workflows/regenerate.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.github/workflows/release.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/Contributing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/License.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/Readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/c/tree-sitter-vhdl.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/c/tree_sitter/tree-sitter-vhdl.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/go/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/node/binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/node/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/swift/TreeSitterVhdl/vhdl.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/bindings/swift/TreeSitterVhdlTests/TreeSitterVhdlTests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/examples/Screenshot.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/examples/Screenshot.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/examples/Screenshot_OneDark.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/examples/Screenshot_TokyoNight.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/get_queries.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/queries/Helix/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/queries/Neovim/context.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/queries/Neovim/folds.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/queries/Neovim/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/queries/Neovim/injections.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/queries/Neovim/textobjects.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/set_queries.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/TokenTree.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/TokenTree.inc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/TokenType.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/TokenType.inc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/core.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/debug_macros.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/grammar.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/ieee/fixed_pkg.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/ieee/float_pkg.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/ieee/math_complex.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/ieee/math_real.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/ieee/numeric_std.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/ieee/std_logic_1164.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/std/env.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/std/standard.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/libraries/std/textio.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/node-types.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/architecture_basic.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/bit_values.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/comments.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/entity.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/if_generate.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/if_statement.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/library_constant_break.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/literals.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/prioritised_if.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/architecture.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/configuration.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/entity.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/generate.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/literal.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/string_literal_std_logic.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/tool_directives.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/corpus/use_clause.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/highlight/architecture_basic.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/highlight/bit_values.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test/highlight/multiuse_keywords.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/test.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/tree-sitter.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.4.0rc1}/third_party/tree-sitter-vhdl/update_bindings.sh +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codefinetuner
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0rc1
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Project-URL: Homepage, https://github.com/cuolm/codefinetuner
|
|
6
6
|
Project-URL: Repository, https://github.com/cuolm/codefinetuner.git
|
|
@@ -23,12 +23,14 @@ Requires-Dist: nltk>=3.9.2
|
|
|
23
23
|
Requires-Dist: numpy>=2.3.4
|
|
24
24
|
Requires-Dist: omegaconf>=2.3.0
|
|
25
25
|
Requires-Dist: peft>=0.17.1
|
|
26
|
+
Requires-Dist: rapidfuzz>=3.14.5
|
|
26
27
|
Requires-Dist: scikit-learn>=1.7.2
|
|
27
28
|
Requires-Dist: sentencepiece>=0.2.1
|
|
28
29
|
Requires-Dist: torch>=2.9.0
|
|
29
30
|
Requires-Dist: transformers>=4.57.1
|
|
30
|
-
Requires-Dist: tree-sitter-language-pack
|
|
31
|
+
Requires-Dist: tree-sitter-language-pack<1.6.3,>=0.2.0
|
|
31
32
|
Requires-Dist: tree-sitter<0.23.0,>=0.22.0
|
|
33
|
+
Requires-Dist: unsloth>=2026.4.8; sys_platform == 'linux' or sys_platform == 'win32'
|
|
32
34
|
Description-Content-Type: text/markdown
|
|
33
35
|
|
|
34
36
|
# CodeFinetuner
|
|
@@ -44,8 +46,8 @@ It trains a Low-Rank Adapter ([LoRA](https://arxiv.org/abs/2106.09685)) on Fill-
|
|
|
44
46
|
- [Architecture](https://github.com/cuolm/codefinetuner/tree/master#architecture)
|
|
45
47
|
- [Project Structure](https://github.com/cuolm/codefinetuner/tree/master#project-structure)
|
|
46
48
|
- [How Training Examples Are Created](https://github.com/cuolm/codefinetuner/tree/master#how-training-examples-are-created)
|
|
47
|
-
- [Installation](https://github.com/cuolm/codefinetuner/tree/master#installation)
|
|
48
49
|
- [Quick Start](https://github.com/cuolm/codefinetuner/tree/master#quick-start)
|
|
50
|
+
- [Installation](https://github.com/cuolm/codefinetuner/tree/master#installation)
|
|
49
51
|
- [Configuration](https://github.com/cuolm/codefinetuner/tree/master#configuration)
|
|
50
52
|
- [Usage](https://github.com/cuolm/codefinetuner/tree/master#usage)
|
|
51
53
|
- [Finetuned Model Usage](https://github.com/cuolm/codefinetuner/tree/master#finetuned-model-usage)
|
|
@@ -69,7 +71,7 @@ Raw Code Files
|
|
|
69
71
|
[Finetune] -- LoRA adapter training -> merged safetensors model
|
|
70
72
|
|
|
|
71
73
|
v
|
|
72
|
-
[Evaluate] -- CodeBLEU, SentenceBLEU, exact match, line match, perplexity
|
|
74
|
+
[Evaluate] -- CodeBLEU, SentenceBLEU, edit similarity, exact match, line match, perplexity
|
|
73
75
|
|
|
|
74
76
|
v
|
|
75
77
|
[Convert] -- GGUF conversion -> quantized model for deployment
|
|
@@ -120,38 +122,43 @@ Here is an example illustrating how a single FIM example is created:
|
|
|
120
122
|
<|fim_suffix|> }\n return count;
|
|
121
123
|
<|fim_middle|>count = count + (value & 1);\n value = (value >> 1);
|
|
122
124
|
```
|
|
125
|
+
## Quick Start
|
|
126
|
+
Install CodeFinetuner globally to run the pipeline anywhere on your system:
|
|
127
|
+
```bash
|
|
128
|
+
uv tool install codefinetuner
|
|
129
|
+
```
|
|
130
|
+
Create a configuration file according to the [Configuration](https://github.com/cuolm/codefinetuner/tree/master#configuration) section and run the pipeline:
|
|
131
|
+
```bash
|
|
132
|
+
codefinetuner --config="codefinetuner_config.yaml"
|
|
133
|
+
```
|
|
123
134
|
|
|
124
135
|
## Installation
|
|
125
|
-
|
|
126
|
-
###
|
|
136
|
+
|
|
137
|
+
### As a Global CLI Tool
|
|
138
|
+
```bash
|
|
139
|
+
uv tool install codefinetuner
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### As a Library Dependency
|
|
127
143
|
```bash
|
|
128
144
|
uv add codefinetuner
|
|
129
145
|
# or
|
|
130
146
|
pip install codefinetuner
|
|
131
147
|
```
|
|
148
|
+
|
|
132
149
|
### From Source
|
|
133
150
|
```bash
|
|
134
151
|
git clone --recurse-submodules https://github.com/cuolm/codefinetuner
|
|
135
152
|
cd codefinetuner
|
|
136
|
-
|
|
153
|
+
|
|
137
154
|
# Using uv (Recommended)
|
|
138
155
|
uv sync
|
|
139
|
-
|
|
156
|
+
|
|
140
157
|
# Using pip
|
|
141
158
|
pip install -r requirements.txt
|
|
142
159
|
pip install -e .
|
|
143
160
|
```
|
|
144
161
|
|
|
145
|
-
---
|
|
146
|
-
|
|
147
|
-
## Quick Start
|
|
148
|
-
Create a configuration file according to the [Configuration](https://github.com/cuolm/codefinetuner/tree/master#configuration) section.
|
|
149
|
-
```python
|
|
150
|
-
import codefinetuner
|
|
151
|
-
|
|
152
|
-
codefinetuner.run_pipeline("codefinetuner_config.yaml")
|
|
153
|
-
```
|
|
154
|
-
|
|
155
162
|
## Configuration
|
|
156
163
|
The pipeline uses a single-source-of-truth YAML configuration file. It utilizes YAML anchors (`&globals`) to share core parameters across all stages (`preprocess`, `finetune`, `evaluate`, `convert`), ensuring consistency and reducing redundancy.
|
|
157
164
|
|
|
@@ -170,13 +177,14 @@ globals: &globals
|
|
|
170
177
|
fim_pad_token: "<|fim_pad|>"
|
|
171
178
|
eos_token: "<|endoftext|>"
|
|
172
179
|
label_pad_token_id: -100
|
|
180
|
+
max_token_sequence_length: 512
|
|
173
181
|
data_language: "c"
|
|
174
182
|
data_extensions: [".c", ".h"]
|
|
183
|
+
use_unsloth: True
|
|
175
184
|
|
|
176
185
|
preprocess:
|
|
177
186
|
<<: *globals # inherits all global parameters
|
|
178
187
|
split_mode: "manual"
|
|
179
|
-
max_token_sequence_length: 1024
|
|
180
188
|
# ... (preprocess specific settings)
|
|
181
189
|
|
|
182
190
|
finetune:
|
|
@@ -204,11 +212,16 @@ Place source files in your `raw_data_path` (default: `workspace_path/data`).
|
|
|
204
212
|
## Usage
|
|
205
213
|
|
|
206
214
|
### CLI Usage
|
|
207
|
-
|
|
215
|
+
If installed via `uv tool install`:
|
|
216
|
+
```bash
|
|
217
|
+
codefinetuner --config="codefinetuner_config.yaml"
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
If running within the source repository cloned from GitHub:
|
|
208
221
|
```bash
|
|
209
222
|
uv run codefinetuner --config="config/codefinetuner_config.yaml"
|
|
210
223
|
```
|
|
211
|
-
|
|
224
|
+
|
|
212
225
|
**Pipeline flags**
|
|
213
226
|
- `--config`: Use a different config file.
|
|
214
227
|
- `--skip-preprocess`: Skip preprocessing.
|
|
@@ -216,16 +229,17 @@ uv run codefinetuner --config="config/codefinetuner_config.yaml"
|
|
|
216
229
|
- `--skip-evaluate`: Skip evaluation.
|
|
217
230
|
- `--skip-convert`: Skip conversion.
|
|
218
231
|
|
|
232
|
+
|
|
219
233
|
### Python Module Usage
|
|
220
234
|
```python
|
|
221
235
|
import codefinetuner
|
|
222
236
|
|
|
223
237
|
# Full pipeline
|
|
224
|
-
codefinetuner.run_pipeline("
|
|
238
|
+
codefinetuner.run_pipeline("codefinetuner_config.yaml")
|
|
225
239
|
|
|
226
240
|
# Skip stages
|
|
227
241
|
codefinetuner.run_pipeline(
|
|
228
|
-
"
|
|
242
|
+
"codefinetuner_config.yaml",
|
|
229
243
|
skip_preprocess=True,
|
|
230
244
|
skip_convert=True
|
|
231
245
|
)
|
|
@@ -11,8 +11,8 @@ It trains a Low-Rank Adapter ([LoRA](https://arxiv.org/abs/2106.09685)) on Fill-
|
|
|
11
11
|
- [Architecture](#architecture)
|
|
12
12
|
- [Project Structure](#project-structure)
|
|
13
13
|
- [How Training Examples Are Created](#how-training-examples-are-created)
|
|
14
|
-
- [Installation](#installation)
|
|
15
14
|
- [Quick Start](#quick-start)
|
|
15
|
+
- [Installation](#installation)
|
|
16
16
|
- [Configuration](#configuration)
|
|
17
17
|
- [Usage](#usage)
|
|
18
18
|
- [Finetuned Model Usage](#finetuned-model-usage)
|
|
@@ -36,7 +36,7 @@ Raw Code Files
|
|
|
36
36
|
[Finetune] -- LoRA adapter training -> merged safetensors model
|
|
37
37
|
|
|
|
38
38
|
v
|
|
39
|
-
[Evaluate] -- CodeBLEU, SentenceBLEU, exact match, line match, perplexity
|
|
39
|
+
[Evaluate] -- CodeBLEU, SentenceBLEU, edit similarity, exact match, line match, perplexity
|
|
40
40
|
|
|
|
41
41
|
v
|
|
42
42
|
[Convert] -- GGUF conversion -> quantized model for deployment
|
|
@@ -87,38 +87,43 @@ Here is an example illustrating how a single FIM example is created:
|
|
|
87
87
|
<|fim_suffix|> }\n return count;
|
|
88
88
|
<|fim_middle|>count = count + (value & 1);\n value = (value >> 1);
|
|
89
89
|
```
|
|
90
|
+
## Quick Start
|
|
91
|
+
Install CodeFinetuner globally to run the pipeline anywhere on your system:
|
|
92
|
+
```bash
|
|
93
|
+
uv tool install codefinetuner
|
|
94
|
+
```
|
|
95
|
+
Create a configuration file according to the [Configuration](#configuration) section and run the pipeline:
|
|
96
|
+
```bash
|
|
97
|
+
codefinetuner --config="codefinetuner_config.yaml"
|
|
98
|
+
```
|
|
90
99
|
|
|
91
100
|
## Installation
|
|
92
|
-
|
|
93
|
-
###
|
|
101
|
+
|
|
102
|
+
### As a Global CLI Tool
|
|
103
|
+
```bash
|
|
104
|
+
uv tool install codefinetuner
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### As a Library Dependency
|
|
94
108
|
```bash
|
|
95
109
|
uv add codefinetuner
|
|
96
110
|
# or
|
|
97
111
|
pip install codefinetuner
|
|
98
112
|
```
|
|
113
|
+
|
|
99
114
|
### From Source
|
|
100
115
|
```bash
|
|
101
116
|
git clone --recurse-submodules https://github.com/cuolm/codefinetuner
|
|
102
117
|
cd codefinetuner
|
|
103
|
-
|
|
118
|
+
|
|
104
119
|
# Using uv (Recommended)
|
|
105
120
|
uv sync
|
|
106
|
-
|
|
121
|
+
|
|
107
122
|
# Using pip
|
|
108
123
|
pip install -r requirements.txt
|
|
109
124
|
pip install -e .
|
|
110
125
|
```
|
|
111
126
|
|
|
112
|
-
---
|
|
113
|
-
|
|
114
|
-
## Quick Start
|
|
115
|
-
Create a configuration file according to the [Configuration](#configuration) section.
|
|
116
|
-
```python
|
|
117
|
-
import codefinetuner
|
|
118
|
-
|
|
119
|
-
codefinetuner.run_pipeline("codefinetuner_config.yaml")
|
|
120
|
-
```
|
|
121
|
-
|
|
122
127
|
## Configuration
|
|
123
128
|
The pipeline uses a single-source-of-truth YAML configuration file. It utilizes YAML anchors (`&globals`) to share core parameters across all stages (`preprocess`, `finetune`, `evaluate`, `convert`), ensuring consistency and reducing redundancy.
|
|
124
129
|
|
|
@@ -137,13 +142,14 @@ globals: &globals
|
|
|
137
142
|
fim_pad_token: "<|fim_pad|>"
|
|
138
143
|
eos_token: "<|endoftext|>"
|
|
139
144
|
label_pad_token_id: -100
|
|
145
|
+
max_token_sequence_length: 512
|
|
140
146
|
data_language: "c"
|
|
141
147
|
data_extensions: [".c", ".h"]
|
|
148
|
+
use_unsloth: True
|
|
142
149
|
|
|
143
150
|
preprocess:
|
|
144
151
|
<<: *globals # inherits all global parameters
|
|
145
152
|
split_mode: "manual"
|
|
146
|
-
max_token_sequence_length: 1024
|
|
147
153
|
# ... (preprocess specific settings)
|
|
148
154
|
|
|
149
155
|
finetune:
|
|
@@ -171,11 +177,16 @@ Place source files in your `raw_data_path` (default: `workspace_path/data`).
|
|
|
171
177
|
## Usage
|
|
172
178
|
|
|
173
179
|
### CLI Usage
|
|
174
|
-
|
|
180
|
+
If installed via `uv tool install`:
|
|
181
|
+
```bash
|
|
182
|
+
codefinetuner --config="codefinetuner_config.yaml"
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
If running within the source repository cloned from GitHub:
|
|
175
186
|
```bash
|
|
176
187
|
uv run codefinetuner --config="config/codefinetuner_config.yaml"
|
|
177
188
|
```
|
|
178
|
-
|
|
189
|
+
|
|
179
190
|
**Pipeline flags**
|
|
180
191
|
- `--config`: Use a different config file.
|
|
181
192
|
- `--skip-preprocess`: Skip preprocessing.
|
|
@@ -183,16 +194,17 @@ uv run codefinetuner --config="config/codefinetuner_config.yaml"
|
|
|
183
194
|
- `--skip-evaluate`: Skip evaluation.
|
|
184
195
|
- `--skip-convert`: Skip conversion.
|
|
185
196
|
|
|
197
|
+
|
|
186
198
|
### Python Module Usage
|
|
187
199
|
```python
|
|
188
200
|
import codefinetuner
|
|
189
201
|
|
|
190
202
|
# Full pipeline
|
|
191
|
-
codefinetuner.run_pipeline("
|
|
203
|
+
codefinetuner.run_pipeline("codefinetuner_config.yaml")
|
|
192
204
|
|
|
193
205
|
# Skip stages
|
|
194
206
|
codefinetuner.run_pipeline(
|
|
195
|
-
"
|
|
207
|
+
"codefinetuner_config.yaml",
|
|
196
208
|
skip_preprocess=True,
|
|
197
209
|
skip_convert=True
|
|
198
210
|
)
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
# config/pipeline.yaml - Single Source of Truth
|
|
2
1
|
# Shared across all stages
|
|
3
2
|
globals: &globals
|
|
4
3
|
workspace_path: null # null: defaults to current working directory (CWD)
|
|
5
|
-
model_name: "
|
|
4
|
+
model_name: "unsloth/Qwen2.5-Coder-3B"
|
|
6
5
|
fim_prefix_token: "<|fim_prefix|>"
|
|
7
6
|
fim_middle_token: "<|fim_middle|>"
|
|
8
7
|
fim_suffix_token: "<|fim_suffix|>"
|
|
9
8
|
fim_pad_token: "<|fim_pad|>"
|
|
10
9
|
eos_token: "<|endoftext|>"
|
|
11
10
|
label_pad_token_id: -100
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
max_token_sequence_length: 512 # 1024
|
|
12
|
+
data_language: "iec61131_3_st"
|
|
13
|
+
data_extensions: [".st"]
|
|
14
|
+
use_unsloth: False
|
|
14
15
|
|
|
15
16
|
# Preprocess stage
|
|
16
17
|
preprocess:
|
|
17
18
|
<<: *globals
|
|
18
19
|
split_mode: "manual"
|
|
19
|
-
train_ratio: 0.8
|
|
20
|
-
eval_ratio: 0.1
|
|
21
|
-
test_ratio: 0.1
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
min_middle_tokens_length: 20
|
|
20
|
+
train_ratio: 0.8 # ignored when split mode manual
|
|
21
|
+
eval_ratio: 0.1 # ignored when split mode manual
|
|
22
|
+
test_ratio: 0.1 # ignored when split mode manual
|
|
23
|
+
max_code_blocks_ast_depth: 20
|
|
24
|
+
min_middle_tokens_length: 10
|
|
25
25
|
max_middle_tokens_length: 200
|
|
26
|
-
fim_examples_per_subblock_ratio: 1
|
|
26
|
+
fim_examples_per_subblock_ratio: 1
|
|
27
27
|
tokenizer_batch_size: 32
|
|
28
|
-
raw_data_path:
|
|
29
|
-
tree_sitter_parser_path:
|
|
28
|
+
raw_data_path: data/PLC-lang-oscat # null: defaults to <workspace_path>/data
|
|
29
|
+
tree_sitter_parser_path: third_party/tree-sitter-iec61131-3-st/libtree-sitter-iec61131-3-st.dylib # null: uses tree_sitter_language_pack parser
|
|
30
30
|
tree_sitter_definitions_path: null # null: uses package internal tree sitter definitions
|
|
31
31
|
rng_seed: 0
|
|
32
32
|
|
|
@@ -36,26 +36,27 @@ finetune:
|
|
|
36
36
|
model_attn_implementation: "sdpa"
|
|
37
37
|
lora_r: 32
|
|
38
38
|
lora_alpha: 64
|
|
39
|
-
lora_dropout: 0.
|
|
39
|
+
lora_dropout: 0.0
|
|
40
40
|
lora_bias: "none"
|
|
41
41
|
lora_target_modules: ["q_proj", "v_proj", "k_proj", "o_proj", "gate_proj", "down_proj", "up_proj"]
|
|
42
|
+
selected_checkpoint_strategy : "best" # "best" or "last"
|
|
42
43
|
trainer_resume_from_checkpoint: null # null->fresh start, "last"->take last checkpoint
|
|
43
44
|
trainer_clear_checkpoint_dir: false
|
|
44
45
|
trainer_num_train_epochs: 1
|
|
45
|
-
trainer_per_device_train_batch_size:
|
|
46
|
-
trainer_per_device_eval_batch_size:
|
|
47
|
-
trainer_gradient_accumulation_steps:
|
|
48
|
-
trainer_learning_rate:
|
|
49
|
-
trainer_weight_decay: 0.
|
|
46
|
+
trainer_per_device_train_batch_size: 1
|
|
47
|
+
trainer_per_device_eval_batch_size: 1
|
|
48
|
+
trainer_gradient_accumulation_steps: 16
|
|
49
|
+
trainer_learning_rate: 5e-5
|
|
50
|
+
trainer_weight_decay: 0.01
|
|
50
51
|
trainer_max_grad_norm: 1.0
|
|
51
52
|
trainer_lr_scheduler_type: "cosine"
|
|
52
|
-
trainer_warmup_steps:
|
|
53
|
+
trainer_warmup_steps: 10
|
|
53
54
|
trainer_gradient_checkpointing: true
|
|
54
55
|
trainer_logging_steps: 10
|
|
55
56
|
trainer_eval_strategy: "steps"
|
|
56
|
-
trainer_eval_steps:
|
|
57
|
+
trainer_eval_steps: 10
|
|
57
58
|
trainer_save_strategy: "steps"
|
|
58
|
-
trainer_save_steps:
|
|
59
|
+
trainer_save_steps: 10
|
|
59
60
|
trainer_logging_strategy: "steps"
|
|
60
61
|
dataset_shuffle_buffer_size: 50000
|
|
61
62
|
dataset_shuffle_seed: 0
|
|
@@ -63,25 +64,24 @@ finetune:
|
|
|
63
64
|
# Evaluate stage
|
|
64
65
|
evaluate:
|
|
65
66
|
<<: *globals
|
|
66
|
-
benchmark_sample_size:
|
|
67
|
-
benchmark_min_fim_middle_tokens: 0
|
|
67
|
+
benchmark_sample_size: 500
|
|
68
68
|
benchmark_shuffle_buffer_size: 10000000
|
|
69
69
|
benchmark_shuffle_seed: 42
|
|
70
|
+
generation_checkpoint: "pipeline" # "pipeline" -> selected checkpoint from finetune stage, "checkpoint-name" -> specific checkpoint
|
|
71
|
+
generation_batch_size: 5
|
|
70
72
|
generation_max_new_tokens: 128
|
|
71
73
|
generation_do_sample: false
|
|
72
|
-
generation_temperature: 0.
|
|
73
|
-
generation_top_p: 0.
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
codebleu_dataflow_weight: 0.25
|
|
74
|
+
generation_temperature: 0.1 # only active if generation_do_sample: true
|
|
75
|
+
generation_top_p: 0.99 # only active if generation_do_sample: true
|
|
76
|
+
codebleu_ngram_weight: 0.1
|
|
77
|
+
codebleu_weighted_ngram_weight: 0.1
|
|
78
|
+
codebleu_syntax_ast_weight: 0.4
|
|
79
|
+
codebleu_dataflow_weight: 0.4
|
|
79
80
|
sentencebleu_ngram_weight_1: 0.25
|
|
80
81
|
sentencebleu_ngram_weight_2: 0.25
|
|
81
82
|
sentencebleu_ngram_weight_3: 0.25
|
|
82
83
|
sentencebleu_ngram_weight_4: 0.25
|
|
83
84
|
line_match_number_of_lines: 2
|
|
84
|
-
trainer_checkpoint: "last"
|
|
85
85
|
plot_only: false
|
|
86
86
|
benchmark_use_existing_dataset: false
|
|
87
87
|
|
|
@@ -14,8 +14,10 @@ This document defines all mandatory and optional parameters in the YAML config f
|
|
|
14
14
|
| `fim_pad_token` | str | `"<\|fim_pad\|>"` | FIM padding token. |
|
|
15
15
|
| `eos_token` | str | `"<\|endoftext\|>"` | End-of-sequence token. |
|
|
16
16
|
| `label_pad_token_id` | int | `-100` | Token ID ignored in loss calculation. |
|
|
17
|
+
| `max_token_sequence_length` | int | `1024` | Maximum tokens per training example. |
|
|
17
18
|
| `data_language` | str | `"c"` | Tree-sitter language identifier. |
|
|
18
19
|
| `data_extensions` | list | `[".c", ".h"]` | File extensions to include in data preprocessing. |
|
|
20
|
+
| `use_unsloth` | bool | `false` | Enables Unsloth optimizations for faster training and lower VRAM. Requires CUDA.
|
|
19
21
|
|
|
20
22
|
## Preprocess Parameters (Optional)
|
|
21
23
|
*Controls how raw code is converted into FIM training examples.*
|
|
@@ -26,7 +28,6 @@ This document defines all mandatory and optional parameters in the YAML config f
|
|
|
26
28
|
| `train_ratio` | float | `0.8` | Training set ratio (used in `auto` split). |
|
|
27
29
|
| `eval_ratio` | float | `0.1` | Validation set ratio (used in `auto` split). |
|
|
28
30
|
| `test_ratio` | float | `0.1` | Test set ratio (used in `auto` split). |
|
|
29
|
-
| `max_token_sequence_length` | int | `1024` | Maximum tokens per training example. |
|
|
30
31
|
| `max_code_blocks_ast_depth` | int | `2` | Tree-Sitter AST depth limit for block extraction. Depth 1 is root, 2 includes child nodes (e.g. functions). |
|
|
31
32
|
| `min_middle_tokens_length` | int | `20` | Minimum tokens required in the FIM "middle" section of an example. |
|
|
32
33
|
| `max_middle_tokens_length` | int | `200` | Maximum tokens allowed in the FIM "middle" section of an example. |
|
|
@@ -48,6 +49,7 @@ This document defines all mandatory and optional parameters in the YAML config f
|
|
|
48
49
|
| `lora_dropout` | float | `0.1` | Dropout probability for LoRA layers to prevent overfitting on specific code snippets. |
|
|
49
50
|
| `lora_bias` | str | `"none"` | Specifies if bias parameters are trained (`"none"`, `"all"`, `"lora_only"`). |
|
|
50
51
|
| `lora_target_modules` | list | `["q_proj", "v_proj", "k_proj", "o_proj", "gate_proj", "down_proj", "up_proj"]` | Model layers targeted for adaptation. Increasing the list improves performance but consumes more VRAM. |
|
|
52
|
+
| `selected_checkpoint_strategy` | str |`"best"` |Which checkpoint to select as the pipeline output after training. `"best"` selects the checkpoint with the lowest eval loss, `"last"` selects the final checkpoint regardless of eval performance. The selected checkpoint is saved to selected_checkpoint_path. |
|
|
51
53
|
| `trainer_resume_from_checkpoint` | str/null| `null` | Path to a specific checkpoint or `"last"` to continue a previous run. |
|
|
52
54
|
| `trainer_clear_checkpoint_dir` | bool | `false` | If `true`, deletes the output folder before starting a new training run. |
|
|
53
55
|
| `trainer_num_train_epochs` | int | `1` | Total passes through the training dataset. |
|
|
@@ -75,10 +77,11 @@ This document defines all mandatory and optional parameters in the YAML config f
|
|
|
75
77
|
| Parameter | Type | Default | Description |
|
|
76
78
|
|-----------|------|---------|-------------|
|
|
77
79
|
| `benchmark_sample_size` | int | `4` | Total number of FIM examples extracted to form the evaluation suite. |
|
|
78
|
-
| `benchmark_min_fim_middle_tokens` | int | `0` | Examples with fewer tokens than this in the middle section are ignored for benchmark dataset creation. |
|
|
79
80
|
| `benchmark_shuffle_buffer_size` | int | `10000000` | Size of the shuffle buffer used to shuffle benchmark examples. |
|
|
80
81
|
| `benchmark_shuffle_seed` | int | `42` | Random seed ensuring that dataset shuffling is deterministic and reproducible. |
|
|
81
82
|
| `benchmark_use_existing_dataset` | bool | `false` | If `true`, the pipeline reuses a previously generated benchmark dataset file instead of creating a new one. |
|
|
83
|
+
| `generation_checkpoint`| str | `"pipeline"`| The checkpoint used for generation. `"pipeline"` loads the selected checkpoint from the finetune stage. Any other value is interpreted as a specific checkpoint name (e.g. `"checkpoint-250"`) and loaded directly from the finetune checkpoint directory. |
|
|
84
|
+
| `generation_batch_size` | int | `10` | The number of examples processed in parallel. Increasing this value maximizes GPU hardware utilization and significantly reduces total evaluation time.|
|
|
82
85
|
| `generation_max_new_tokens` | int | `128` | Upper limit on the number of tokens the models are permitted to generate for each code completion. |
|
|
83
86
|
| `generation_do_sample` | bool | `false` | Enables probabilistic sampling. If `false`, the model uses greedy decoding (picking only the top token) and `generation_temperature` and `generation_top_p` are ignored.|
|
|
84
87
|
| `generation_temperature` | float | `0.7` | Probability smoothing factor. Values < 1.0 make the model more confident; > 1.0 make it more random. Only active when `generation_do_sample` is `true`.|
|
|
@@ -93,7 +96,6 @@ This document defines all mandatory and optional parameters in the YAML config f
|
|
|
93
96
|
| `sentencebleu_ngram_weight_3` | float | `0.25` | Medium phrase accuracy. Weight of 3-token chains (3-grams) in the final BLEU score calculation. |
|
|
94
97
|
| `sentencebleu_ngram_weight_4` | float | `0.25` | Long phrase accuracy. Weight of 4-token blocks (4-grams) in the final BLEU score calculation. |
|
|
95
98
|
| `line_match_number_of_lines` | int | `2` | Number of identical consecutive lines required between prediction and ground truth to count as a line match. |
|
|
96
|
-
| `trainer_checkpoint` | str | `"last"` | Specifies the checkpoint folder to load. Use `last` for the latest or provide a specific directory name. |
|
|
97
99
|
| `plot_only` | bool | `false` | If `true`, skips the heavy inference and scoring steps to only generate charts from existing results. |
|
|
98
100
|
|
|
99
101
|
## Convert Parameters (Optional)
|
|
Binary file
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
import random
|
|
3
|
+
import re
|
|
4
|
+
from collections import defaultdict
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
from typing import Dict, List, Tuple
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def clean_st_content(content: str) -> str:
|
|
10
|
+
"""Strips all block and inline comments, IDE pragmas, and normalizes empty lines."""
|
|
11
|
+
content = re.sub(r"\(\*.*?\*\)", "", content, flags=re.DOTALL)
|
|
12
|
+
content = re.sub(r"//.*", "", content)
|
|
13
|
+
|
|
14
|
+
lines = [line.rstrip() for line in content.splitlines()]
|
|
15
|
+
cleaned_lines = []
|
|
16
|
+
for line in lines:
|
|
17
|
+
if line:
|
|
18
|
+
cleaned_lines.append(line)
|
|
19
|
+
elif cleaned_lines and cleaned_lines[-1] != "":
|
|
20
|
+
cleaned_lines.append("")
|
|
21
|
+
|
|
22
|
+
return "\n".join(cleaned_lines).strip()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def extract_blocks(content: str) -> List[str]:
|
|
26
|
+
"""Extracts all matching structured text blocks from the content, including modern OOP structures."""
|
|
27
|
+
pattern = re.compile(
|
|
28
|
+
r"\b(?:"
|
|
29
|
+
r"FUNCTION_BLOCK\b.*?\bEND_FUNCTION_BLOCK|"
|
|
30
|
+
r"FUNCTION\b.*?\bEND_FUNCTION|"
|
|
31
|
+
r"PROGRAM\b.*?\bEND_PROGRAM|"
|
|
32
|
+
r"TYPE\b.*?\bEND_TYPE|"
|
|
33
|
+
r"CONFIGURATION\b.*?\bEND_CONFIGURATION|"
|
|
34
|
+
r"VAR_GLOBAL\b.*?\bEND_VAR|"
|
|
35
|
+
r"CLASS\b.*?\bEND_CLASS|"
|
|
36
|
+
r"INTERFACE\b.*?\bEND_INTERFACE|"
|
|
37
|
+
r"NAMESPACE\b.*?\bEND_NAMESPACE|"
|
|
38
|
+
r"METHOD\b.*?\bEND_METHOD|"
|
|
39
|
+
r"PROPERTY\b.*?\bEND_PROPERTY"
|
|
40
|
+
r")",
|
|
41
|
+
re.DOTALL | re.IGNORECASE,
|
|
42
|
+
)
|
|
43
|
+
return [match.group(0) for match in pattern.finditer(content)]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def categorize_blocks(blocks: List[str]) -> Dict[str, List[str]]:
|
|
47
|
+
"""Groups blocks into a dictionary based on their starting keyword."""
|
|
48
|
+
categorized = defaultdict(list)
|
|
49
|
+
for block in blocks:
|
|
50
|
+
first_word = block.split(maxsplit=1)[0].upper()
|
|
51
|
+
categorized[first_word].append(block)
|
|
52
|
+
return categorized
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def stratify_blocks(
|
|
56
|
+
categorized: Dict[str, List[str]], train_ratio: float, eval_ratio: float
|
|
57
|
+
) -> Tuple[List[str], List[str], List[str]]:
|
|
58
|
+
"""Splits categorized blocks proportionally into train, eval, and test sets."""
|
|
59
|
+
train, eval_set, test = [], [], []
|
|
60
|
+
random.seed(42)
|
|
61
|
+
|
|
62
|
+
for category, block_list in categorized.items():
|
|
63
|
+
random.shuffle(block_list)
|
|
64
|
+
total = len(block_list)
|
|
65
|
+
|
|
66
|
+
train_end = int(total * train_ratio)
|
|
67
|
+
eval_end = train_end + int(total * eval_ratio)
|
|
68
|
+
|
|
69
|
+
train.extend(block_list[:train_end])
|
|
70
|
+
eval_set.extend(block_list[train_end:eval_end])
|
|
71
|
+
test.extend(block_list[eval_end:])
|
|
72
|
+
|
|
73
|
+
print(
|
|
74
|
+
f"Category {category:15} total: {total:<4} -> "
|
|
75
|
+
f"Train: {len(block_list[:train_end]):<4} "
|
|
76
|
+
f"Eval: {len(block_list[train_end:eval_end]):<4} "
|
|
77
|
+
f"Test: {len(block_list[eval_end:]):<4}"
|
|
78
|
+
)
|
|
79
|
+
|
|
80
|
+
random.shuffle(train)
|
|
81
|
+
random.shuffle(eval_set)
|
|
82
|
+
random.shuffle(test)
|
|
83
|
+
return train, eval_set, test
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def write_splits(target_dir: Path, splits: Dict[str, List[str]]) -> None:
|
|
87
|
+
"""Saves the distributed block splits into their respective files."""
|
|
88
|
+
print("-" * 50)
|
|
89
|
+
for filename, block_list in splits.items():
|
|
90
|
+
output_path = target_dir / filename
|
|
91
|
+
output_path.write_text("\n\n".join(block_list) + "\n", encoding="utf-8")
|
|
92
|
+
print(f"Wrote {len(block_list)} total stratified blocks to {output_path}")
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def split_st_by_structure(
|
|
96
|
+
input_file: Path,
|
|
97
|
+
output_dir: Path,
|
|
98
|
+
train_ratio: float,
|
|
99
|
+
eval_ratio: float,
|
|
100
|
+
test_ratio: float,
|
|
101
|
+
):
|
|
102
|
+
"""Coordinates file reading, processing, stratification, and export operations."""
|
|
103
|
+
target_dir = output_dir.resolve()
|
|
104
|
+
target_dir.mkdir(parents=True, exist_ok=True)
|
|
105
|
+
|
|
106
|
+
if not input_file.is_file():
|
|
107
|
+
print(f"Error: Input file not found at {input_file}")
|
|
108
|
+
return
|
|
109
|
+
|
|
110
|
+
raw_content = input_file.read_text(encoding="utf-8")
|
|
111
|
+
cleaned_content = clean_st_content(raw_content)
|
|
112
|
+
|
|
113
|
+
blocks = extract_blocks(cleaned_content)
|
|
114
|
+
if not blocks:
|
|
115
|
+
print("Error: No valid ST blocks found after cleaning.")
|
|
116
|
+
return
|
|
117
|
+
|
|
118
|
+
categorized = categorize_blocks(blocks)
|
|
119
|
+
train, eval_set, test = stratify_blocks(categorized, train_ratio, eval_ratio)
|
|
120
|
+
|
|
121
|
+
write_splits(
|
|
122
|
+
target_dir, {"train.st": train, "eval.st": eval_set, "test.st": test}
|
|
123
|
+
)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
def main():
|
|
127
|
+
parser = argparse.ArgumentParser(
|
|
128
|
+
description="Clean clutter and split Structured Text (ST) files structurally using stratified sampling."
|
|
129
|
+
)
|
|
130
|
+
parser.add_argument("input_file", type=Path, help="Path to the input .st source file")
|
|
131
|
+
parser.add_argument("output_dir", type=Path, help="Target directory for the clean splits")
|
|
132
|
+
parser.add_argument("--train", type=float, default=0.80, help="Train ratio (default: 0.80)")
|
|
133
|
+
parser.add_argument("--eval", type=float, default=0.10, help="Evaluation ratio (default: 0.10)")
|
|
134
|
+
parser.add_argument("--test", type=float, default=0.10, help="Test ratio (default: 0.10)")
|
|
135
|
+
|
|
136
|
+
args = parser.parse_args()
|
|
137
|
+
|
|
138
|
+
if not abs((args.train + args.eval + args.test) - 1.0) < 1e-4:
|
|
139
|
+
print(f"Error: Ratios must sum up to 1.0 (Current sum: {args.train + args.eval + args.test})")
|
|
140
|
+
return
|
|
141
|
+
|
|
142
|
+
split_st_by_structure(
|
|
143
|
+
input_file=args.input_file,
|
|
144
|
+
output_dir=args.output_dir,
|
|
145
|
+
train_ratio=args.train,
|
|
146
|
+
eval_ratio=args.eval,
|
|
147
|
+
test_ratio=args.test,
|
|
148
|
+
)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
if __name__ == "__main__":
|
|
152
|
+
main()
|