codefinetuner 0.2.1__tar.gz → 0.3.0__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.3.0}/.gitignore +1 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/PKG-INFO +2 -1
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/config/codefinetuner_config.yaml +13 -12
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/pyproject.toml +1 -0
- codefinetuner-0.3.0/scripts/analyze_dataset.py +37 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/finetune/config.py +5 -1
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/finetune/model.py +45 -2
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/finetune/train.py +1 -2
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/preprocess/config.py +1 -1
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/preprocess/process.py +35 -8
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/finetune/test_config.py +1 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/finetune/test_model.py +66 -12
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/preprocess/test_config.py +3 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/uv.lock +713 -180
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/.dockerignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/.github/workflows/release.yaml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/.github/workflows/release_test.yaml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/.github/workflows/tests.yaml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/.gitmodules +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/.python-version +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/Dockerfile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/LICENSE.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/InstallLlamaCpp.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/code_block.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/code_file.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/code_subblock.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/config-file.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/inference-vscode.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/install-nvidia-l4-driver.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/docs/tree-sitter-customization.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/requirements.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/backup_finetuned.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/decode_dataset.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/merge_lora_adapter_and_save.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/plot_loss.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/save_base_hf_model.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/test_ast_parser.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/scripts/unzip_all_in_directory.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/convert/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/convert/config.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/convert/convert_hf_to_gguf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/convert/convert_hf_to_gguf.version +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/convert/run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/analyze.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/benchmark.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/codebleu_shim.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/config.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/evaluate.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/generate.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/metrics.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/evaluate/run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/finetune/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/finetune/run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/pipeline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/preprocess/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/preprocess/extract.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/preprocess/run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/src/codefinetuner/preprocess/tree_sitter_definitions.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/codefinetuner/test_pipeline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/config/codefinetuner_config.yaml +1 -1
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/convert/test_config.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/convert/test_run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/data/eval/eval_test.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/data/test/test_test.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/data/train/train_test.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_analyze.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_benchmark.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_config.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_evaluate.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_generate.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_metrics.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/evaluate/test_run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/finetune/test_run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/finetune/test_train.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/models/Qwen2.5-Coder-0.5B/chat_template.jinja +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/models/Qwen2.5-Coder-0.5B/config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/models/Qwen2.5-Coder-0.5B/generation_config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/models/Qwen2.5-Coder-0.5B/tokenizer.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/models/Qwen2.5-Coder-0.5B/tokenizer_config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/evaluate/datasets/benchmark_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/finetune/results/lora_model/chat_template.jinja +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/finetune/results/lora_model/tokenizer.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/finetune/results/lora_model/tokenizer_config.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/finetune/results/trainer_log.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/preprocess/results/datasets/eval_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/preprocess/results/datasets/test_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/outputs/preprocess/results/datasets/train_dataset.jsonl +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/preprocess/test_extract.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/preprocess/test_process.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/tests/preprocess/test_run.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.git +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/FUNDING.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/workflows/lint.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/Cargo.lock +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/Package.resolved +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/c/tree-sitter-c.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/c/tree_sitter/tree-sitter-c.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/go/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/node/binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/node/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/swift/TreeSitterC/c.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/bindings/swift/TreeSitterCTests/TreeSitterCTests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/eslint.config.mjs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/examples/cluster.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/examples/malloc.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/examples/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/go.sum +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/queries/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/queries/tags.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/src/grammar.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/src/node-types.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/ambiguities.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/crlf.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/declarations.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/expressions.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/microsoft.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/preprocessor.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/statements.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/corpus/types.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/highlight/keywords.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/test/highlight/names.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-c/tree-sitter.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.git +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/workflows/fuzz.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/workflows/lint.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/Cargo.lock +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/Package.resolved +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-mojo.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-mojo.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-python.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/go/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/go/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/node/binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/node/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterMojo/mojo.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterPython/python.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterPythonTests/TreeSitterPythonTests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/eslint.config.mjs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/compound-statement-without-trailing-newline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/crlf-line-endings.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/mixed-spaces-tabs.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/multiple-newlines.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/python2-grammar-crlf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/python2-grammar.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/python3-grammar-crlf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/python3-grammar.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/python3.8_grammar.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/simple-statements-without-trailing-newline.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/tabs.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/examples/trailing-whitespace.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/go.sum +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/python.dylib.dSYM/Contents/Info.plist +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/python.dylib.dSYM/Contents/Resources/Relocations/aarch64/python.dylib.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/queries/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/queries/indents.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/queries/outline.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/queries/overrides.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/grammar.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/node-types.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/corpus/errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/corpus/expressions.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/corpus/literals.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/corpus/pattern_matching.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/corpus/statements.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/highlight/keywords.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/highlight/parameters.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/highlight/pattern_matching.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test/tags/main.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/test.mojo +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-mojo/tree-sitter.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.clang-format +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.git +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.github/workflows/docs.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.github/workflows/pypi.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/.gitmodules +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/MANIFEST.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/_static/favicon.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/_static/logo.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Language.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.LogType.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.LookaheadIterator.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Node.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Parser.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Point.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Query.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryCursor.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryError.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryPredicate.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Range.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Tree.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.TreeCursor.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/conf.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/docs/index.rst +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/examples/usage.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/examples/walk_tree.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/test_language.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/test_lookahead_iterator.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/test_node.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/test_parser.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/test_query.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tests/test_tree.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/language.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/lookahead_iterator.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/module.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/node.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/query.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/query_cursor.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/query_predicates.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/range.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/tree.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/tree_cursor.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/binding/types.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.cargo/config.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.dockerignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.git +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/FUNDING.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/actions/cache/action.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/cliff.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/close_unresponsive.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/cross.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/make.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/remove_response_label.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/reviewers_remove.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/tree-sitter.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/backport.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/bindgen.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/build.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/docs.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/emscripten.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/nvim_ts.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/release.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/response.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/reviewers_remove.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/sanitize.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/wasm_exports.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/CONTRIBUTING.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/Cargo.lock +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/Dockerfile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/FUNDING.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/build.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/build.zig.zon +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/benches/benchmark.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/config/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/config/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/config/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/coincident_tokens.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/item.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/token_conflicts.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/dedup.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/dsl.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/grammar_files.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/grammars.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/nfa.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/node_types.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/parse_grammar.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/expand_repeats.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/expand_tokens.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/extract_tokens.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/flatten_grammar.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/intern_symbols.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/process_inlines.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/render.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/rules.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/tables.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/emscripten-version +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/cli.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/dsl.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/install.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/allocations.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/corpus_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/edits.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/random.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/scope_sequence.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/highlight.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/init.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/input.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/logger.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/main.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/parse.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/playground.html +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/playground.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/query.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/query_testing.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tags.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/PARSER_NAME.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/PARSER_NAME.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/_cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.zig.zon +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/cmakelists.cmake +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/js-binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/py-binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/root.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/test.zig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/tests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test_highlight.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test_tags.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/async_context_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/corpus_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/detect_language.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/allocations.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/dirs.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/edits.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/fixtures.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/query_helpers.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/highlight_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/language_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/mod.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/node_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/parser_hang_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/parser_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/pathological_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/proc_macro/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/proc_macro/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/query_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/tags_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/test_highlight_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/test_tags_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/text_provider_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/tree_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/wasm_language_test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/util.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/version.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/wasm.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/book.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/3-syntax-highlighting.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/4-code-navigation.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/5-implementation.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/6-contributing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/7-playground.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/SUMMARY.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/css/mdbook-admonish.css +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/css/playground.css +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/favicon-16x16.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/favicon-32x32.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/tree-sitter-small.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/js/playground.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/schemas/config.schema.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/schemas/grammar.schema.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/build.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/complete.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/dump-languages.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/fuzz.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/generate.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/highlight.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/init-config.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/init.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/parse.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/playground.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/query.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/tags.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/test.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/version.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/1-getting-started.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/4-external-scanners.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/5-writing-tests.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/6-publishing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/1-getting-started.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/2-basic-parsing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/3-advanced-parsing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/4-walking-trees.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/1-syntax.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/2-operators.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/4-api.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/index.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/docs/theme/favicon.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/include/tree_sitter/highlight.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/src/c_lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/.ccls +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/bindings.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/ffi.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/util.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/wasm_language.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/CONTRIBUTING.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/eslint.config.mjs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/exports.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/imports.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/prefix.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/tree-sitter.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/tree-sitter.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/build.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/check-artifacts-fresh.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/generate-dts.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/bindings.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/constants.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/index.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/language.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/lookahead_iterator.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/marshal.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/node.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/parser.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/query.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/tree.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/tree_cursor.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/helper.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/language.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/node.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/parser.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/query.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/tree.test.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/tsconfig.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/vitest.config.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/web-tree-sitter.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/include/tree_sitter/api.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/language/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/language/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/language/language.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/alloc.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/atomic.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/clock.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/error_costs.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/get_changed_ranges.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/get_changed_ranges.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/host.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/language.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/language.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/length.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lexer.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lexer.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lib.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/node.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/point.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/portable/endian.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/query.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/reduce_action.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/reusable_node.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/stack.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/stack.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/subtree.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/subtree.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree_cursor.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree_cursor.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/ts_assert.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/ICU_SHA +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/LICENSE +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/ptypes.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/umachine.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/urename.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf16.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf8.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/stdlib-symbols.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/stdlib.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/wasm-stdlib.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm_store.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm_store.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/lib/tree-sitter.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/rustfmt.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/tags/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/tags/README.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/tags/include/tree_sitter/tags.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/tags/src/c_lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/tags/src/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/c_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/javascript_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/json_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/python_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/ruby_errors.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/fixtures.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/grammars/.gitkeep +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/template_corpus/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/template_corpus/ruby_templates.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_error/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_error/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_left/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_left/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_missing/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_right/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_right/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflicting_precedence/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/immediate_tokens/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/immediate_tokens/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inline_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inline_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/readme.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme_grammar/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme_grammar/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/reserved_words/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/reserved_words/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unicode_classes/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unicode_classes/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/corpus.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0}/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.3.0}/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.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/benchmark.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/build_wasm.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/bump.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/check_wasm_exports.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/clippy.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/fetch.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/generate.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/main.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/test.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/upgrade_emscripten.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/upgrade_wasmtime.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-python/tree_sitter/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.editorconfig +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.git +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.gitattributes +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/dependabot.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/workflows/fuzz.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/workflows/regenerate.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.github/workflows/release.yml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/.gitignore +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/CMakeLists.txt +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/Cargo.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/Contributing.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/License.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/Makefile +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/Package.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/Readme.md +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/binding.gyp +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/c/tree-sitter-vhdl.pc.in +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/c/tree_sitter/tree-sitter-vhdl.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/go/binding.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/node/binding.cc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/node/index.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/__init__.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/__init__.pyi +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/binding.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/py.typed +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/rust/build.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/swift/TreeSitterVhdl/vhdl.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/bindings/swift/TreeSitterVhdlTests/TreeSitterVhdlTests.swift +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/examples/Screenshot.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/examples/Screenshot.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/examples/Screenshot_OneDark.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/examples/Screenshot_TokyoNight.png +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/get_queries.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/go.mod +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/grammar.js +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/package-lock.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/package.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/pyproject.toml +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/queries/Helix/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/queries/Neovim/context.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/queries/Neovim/folds.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/queries/Neovim/highlights.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/queries/Neovim/injections.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/queries/Neovim/textobjects.scm +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/set_queries.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/setup.py +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/TokenTree.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/TokenTree.inc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/TokenType.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/TokenType.inc +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/core.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/debug_macros.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/grammar.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/fixed_pkg.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/float_pkg.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/math_complex.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/math_real.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/numeric_std.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/std_logic_1164.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/std/env.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/std/standard.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/libraries/std/textio.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/node-types.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/parser.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/scanner.c +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/architecture_basic.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/bit_values.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/comments.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/entity.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/if_generate.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/if_statement.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/library_constant_break.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/literals.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/prioritised_if.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/architecture.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/configuration.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/entity.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/generate.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/literal.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/string_literal_std_logic.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/tool_directives.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/corpus/use_clause.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/highlight/architecture_basic.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/highlight/bit_values.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test/highlight/multiuse_keywords.vhd +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/test.sh +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/third_party/tree-sitter-vhdl/tree-sitter.json +0 -0
- {codefinetuner-0.2.1 → codefinetuner-0.3.0}/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.3.0
|
|
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
|
|
@@ -29,6 +29,7 @@ Requires-Dist: torch>=2.9.0
|
|
|
29
29
|
Requires-Dist: transformers>=4.57.1
|
|
30
30
|
Requires-Dist: tree-sitter-language-pack>=0.2.0
|
|
31
31
|
Requires-Dist: tree-sitter<0.23.0,>=0.22.0
|
|
32
|
+
Requires-Dist: unsloth>=2026.4.8; sys_platform == 'linux' or sys_platform == 'win32'
|
|
32
33
|
Description-Content-Type: text/markdown
|
|
33
34
|
|
|
34
35
|
# CodeFinetuner
|
|
@@ -2,30 +2,30 @@
|
|
|
2
2
|
# Shared across all stages
|
|
3
3
|
globals: &globals
|
|
4
4
|
workspace_path: null # null: defaults to current working directory (CWD)
|
|
5
|
-
model_name: "Qwen/Qwen2.5-0.5B"
|
|
5
|
+
model_name: "Qwen/Qwen2.5-Coder-0.5B"
|
|
6
6
|
fim_prefix_token: "<|fim_prefix|>"
|
|
7
7
|
fim_middle_token: "<|fim_middle|>"
|
|
8
8
|
fim_suffix_token: "<|fim_suffix|>"
|
|
9
9
|
fim_pad_token: "<|fim_pad|>"
|
|
10
10
|
eos_token: "<|endoftext|>"
|
|
11
11
|
label_pad_token_id: -100
|
|
12
|
+
max_token_sequence_length: 512
|
|
12
13
|
data_language: "c"
|
|
13
14
|
data_extensions: [".c", ".h"]
|
|
14
15
|
|
|
15
16
|
# Preprocess stage
|
|
16
17
|
preprocess:
|
|
17
18
|
<<: *globals
|
|
18
|
-
split_mode: "
|
|
19
|
+
split_mode: "auto"
|
|
19
20
|
train_ratio: 0.8
|
|
20
21
|
eval_ratio: 0.1
|
|
21
22
|
test_ratio: 0.1
|
|
22
|
-
max_token_sequence_length: 1024
|
|
23
23
|
max_code_blocks_ast_depth: 2
|
|
24
24
|
min_middle_tokens_length: 20
|
|
25
25
|
max_middle_tokens_length: 200
|
|
26
26
|
fim_examples_per_subblock_ratio: 1.0
|
|
27
27
|
tokenizer_batch_size: 32
|
|
28
|
-
raw_data_path:
|
|
28
|
+
raw_data_path: null # null: defaults to <workspace_path>/data
|
|
29
29
|
tree_sitter_parser_path: null # 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
|
|
@@ -33,29 +33,30 @@ preprocess:
|
|
|
33
33
|
# Finetune stage
|
|
34
34
|
finetune:
|
|
35
35
|
<<: *globals
|
|
36
|
+
use_unsloth: True
|
|
36
37
|
model_attn_implementation: "sdpa"
|
|
37
38
|
lora_r: 32
|
|
38
39
|
lora_alpha: 64
|
|
39
|
-
lora_dropout: 0.
|
|
40
|
+
lora_dropout: 0.0
|
|
40
41
|
lora_bias: "none"
|
|
41
42
|
lora_target_modules: ["q_proj", "v_proj", "k_proj", "o_proj", "gate_proj", "down_proj", "up_proj"]
|
|
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: 2e-
|
|
49
|
-
trainer_weight_decay: 0.
|
|
46
|
+
trainer_per_device_train_batch_size: 4
|
|
47
|
+
trainer_per_device_eval_batch_size: 4
|
|
48
|
+
trainer_gradient_accumulation_steps: 16
|
|
49
|
+
trainer_learning_rate: 2e-4
|
|
50
|
+
trainer_weight_decay: 0.01
|
|
50
51
|
trainer_max_grad_norm: 1.0
|
|
51
52
|
trainer_lr_scheduler_type: "cosine"
|
|
52
53
|
trainer_warmup_steps: 50
|
|
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: 50
|
|
57
58
|
trainer_save_strategy: "steps"
|
|
58
|
-
trainer_save_steps:
|
|
59
|
+
trainer_save_steps: 50
|
|
59
60
|
trainer_logging_strategy: "steps"
|
|
60
61
|
dataset_shuffle_buffer_size: 50000
|
|
61
62
|
dataset_shuffle_seed: 0
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import json
|
|
2
|
+
|
|
3
|
+
def analyze_token_lengths(file_path, threshold):
|
|
4
|
+
max_len = 0
|
|
5
|
+
total_count = 0
|
|
6
|
+
under_threshold_count = 0
|
|
7
|
+
|
|
8
|
+
try:
|
|
9
|
+
with open(file_path, "r", encoding="utf-8") as f:
|
|
10
|
+
for line in f:
|
|
11
|
+
if not line.strip():
|
|
12
|
+
continue
|
|
13
|
+
|
|
14
|
+
total_count += 1
|
|
15
|
+
data = json.loads(line)
|
|
16
|
+
current_len = len(data.get("input_ids", []))
|
|
17
|
+
|
|
18
|
+
if current_len > max_len:
|
|
19
|
+
max_len = current_len
|
|
20
|
+
|
|
21
|
+
if current_len <= threshold:
|
|
22
|
+
under_threshold_count += 1
|
|
23
|
+
|
|
24
|
+
except FileNotFoundError:
|
|
25
|
+
print(f"Error: File '{file_path}' not found.")
|
|
26
|
+
return
|
|
27
|
+
|
|
28
|
+
print(f"Total examples: {total_count}")
|
|
29
|
+
print(f"Maximum token length: {max_len}")
|
|
30
|
+
print(f"Examples under/at threshold ({threshold}): {under_threshold_count} out of {total_count}")
|
|
31
|
+
|
|
32
|
+
if __name__ == "__main__":
|
|
33
|
+
# CONFIGURATION
|
|
34
|
+
file_path = "outputs/preprocess/results/datasets/train_dataset.jsonl"
|
|
35
|
+
threshold = 512
|
|
36
|
+
|
|
37
|
+
analyze_token_lengths(file_path, threshold)
|
|
@@ -13,10 +13,14 @@ logger = logging.getLogger(__name__)
|
|
|
13
13
|
|
|
14
14
|
@dataclass
|
|
15
15
|
class Config:
|
|
16
|
-
# --- Mandatory Parameters ---
|
|
16
|
+
# --- Mandatory Parameters ---
|
|
17
17
|
model_name: str = MISSING
|
|
18
18
|
fim_pad_token: str = MISSING
|
|
19
19
|
label_pad_token_id: int = MISSING
|
|
20
|
+
max_token_sequence_length: int = MISSING
|
|
21
|
+
|
|
22
|
+
# --- Unsloth Settings ---
|
|
23
|
+
use_unsloth: bool = False
|
|
20
24
|
|
|
21
25
|
# --- Model Settings ---
|
|
22
26
|
model_attn_implementation: str = "sdpa" # sdpa = built-in PyTorch implementation of scaled dot product attention, imporves performance and memory efficiency
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
import logging
|
|
3
2
|
|
|
4
3
|
from peft import LoraConfig, get_peft_model, prepare_model_for_kbit_training
|
|
@@ -10,7 +9,14 @@ from .config import Config
|
|
|
10
9
|
logger = logging.getLogger(__name__)
|
|
11
10
|
|
|
12
11
|
|
|
13
|
-
def load_and_configure_lora_model(config: Config)
|
|
12
|
+
def load_and_configure_lora_model(config: Config):
|
|
13
|
+
if config.use_unsloth:
|
|
14
|
+
return _load_unsloth_model(config)
|
|
15
|
+
else:
|
|
16
|
+
return _load_hf_model(config)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def _load_hf_model(config: Config) -> AutoModelForCausalLM:
|
|
14
20
|
if config.device == "cuda":
|
|
15
21
|
bnb_config = BitsAndBytesConfig(
|
|
16
22
|
load_in_4bit=True,
|
|
@@ -57,3 +63,40 @@ def load_and_configure_lora_model(config: Config) -> AutoModelForCausalLM:
|
|
|
57
63
|
)
|
|
58
64
|
lora_model = get_peft_model(model, lora_config)
|
|
59
65
|
return lora_model
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def _load_unsloth_model(config: Config):
|
|
69
|
+
# Import Unsloth lazily here so its import-time patches only affect the CUDA/Unsloth
|
|
70
|
+
# finetuning path. Importing it at module level can monkey-patch transformers/peft
|
|
71
|
+
# process-wide, change behavior for non-Unsloth code paths, and add unnecessary import overhead.
|
|
72
|
+
try:
|
|
73
|
+
from unsloth import FastLanguageModel
|
|
74
|
+
except ImportError:
|
|
75
|
+
raise ImportError("Unsloth is not installed. Run: uv add unsloth or pip install unsloth")
|
|
76
|
+
|
|
77
|
+
if config.device != "cuda":
|
|
78
|
+
raise RuntimeError("Unsloth requires CUDA. Either set use_unsloth=false or run on a CUDA device.")
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
model, _ = FastLanguageModel.from_pretrained(
|
|
82
|
+
model_name=config.model_name,
|
|
83
|
+
max_seq_length=config.max_token_sequence_length,
|
|
84
|
+
dtype=config.model_dtype,
|
|
85
|
+
load_in_4bit=True,
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
lora_model = FastLanguageModel.get_peft_model(
|
|
89
|
+
model,
|
|
90
|
+
lora_alpha=config.lora_alpha,
|
|
91
|
+
lora_dropout=config.lora_dropout,
|
|
92
|
+
r=config.lora_r,
|
|
93
|
+
bias=config.lora_bias,
|
|
94
|
+
target_modules=config.lora_target_modules,
|
|
95
|
+
use_gradient_checkpointing="unsloth" if config.trainer_gradient_checkpointing else False,
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
logger.info(
|
|
99
|
+
f"[Unsloth] Model: {config.model_name} | Device: {config.device} | "
|
|
100
|
+
f"Dtype: {config.model_dtype} | max_seq_length: {config.max_token_sequence_length}"
|
|
101
|
+
)
|
|
102
|
+
return lora_model
|
|
@@ -2,7 +2,6 @@ import gc
|
|
|
2
2
|
import json
|
|
3
3
|
import logging
|
|
4
4
|
import shutil
|
|
5
|
-
from pathlib import Path
|
|
6
5
|
from typing import Dict, List
|
|
7
6
|
|
|
8
7
|
import matplotlib.pyplot as plt
|
|
@@ -88,7 +87,7 @@ def train_lora_model(
|
|
|
88
87
|
save_steps=config.trainer_save_steps,
|
|
89
88
|
bf16=trainer_bf16,
|
|
90
89
|
fp16=trainer_fp16,
|
|
91
|
-
gradient_checkpointing=config.trainer_gradient_checkpointing
|
|
90
|
+
gradient_checkpointing=(config.trainer_gradient_checkpointing and not config.use_unsloth),
|
|
92
91
|
)
|
|
93
92
|
|
|
94
93
|
data_collator = FIMDataCollator(
|
|
@@ -24,13 +24,13 @@ class Config:
|
|
|
24
24
|
eos_token: str = MISSING
|
|
25
25
|
data_language: str = MISSING
|
|
26
26
|
data_extensions: list[str] = MISSING
|
|
27
|
+
max_token_sequence_length: int = MISSING # used with bytes_per_token_ratio to convert bytes to tokens, final token count is thus not exact
|
|
27
28
|
|
|
28
29
|
# --- Preprocess Local Parameters ---
|
|
29
30
|
split_mode: str = "auto"
|
|
30
31
|
train_ratio: float = 0.8
|
|
31
32
|
eval_ratio: float = 0.1
|
|
32
33
|
test_ratio: float = 0.1
|
|
33
|
-
max_token_sequence_length: int = 1024 # used with bytes_per_token_ratio to convert bytes to tokens, final token count is thus not exact
|
|
34
34
|
max_code_blocks_ast_depth: int = 2 # depth 1 is root, 2 includes child nodes (e.g. functions)
|
|
35
35
|
min_middle_tokens_length: int = 20 # used with estimated bytes_per_token_ratio to convert bytes to tokens, final token count is thus not exact
|
|
36
36
|
max_middle_tokens_length: int = 200 # used with estimated bytes_per_token_ratio to convert bytes to tokens, final token count is thus not exact
|
|
@@ -63,9 +63,9 @@ def _extract_subblock_ranges(config: Config, node: ts.Node, base_offset: int) ->
|
|
|
63
63
|
|
|
64
64
|
def _filter_subblocks(subblock_ranges: list[Tuple[int, int]], max_bytes_per_subblock: int) -> list[Tuple[int, int]]:
|
|
65
65
|
"""
|
|
66
|
-
Discard subblocks that have a larger end index than max_bytes_per_subblock
|
|
66
|
+
Discard subblocks that have a larger end index than max_bytes_per_subblock.
|
|
67
67
|
"""
|
|
68
|
-
subblock_ranges = sorted(subblock_ranges, key=lambda x: x[1])
|
|
68
|
+
subblock_ranges = sorted(subblock_ranges, key=lambda x: x[1]) # sort ranges by end index
|
|
69
69
|
i = 0
|
|
70
70
|
while i < len(subblock_ranges) and subblock_ranges[i][1] <= max_bytes_per_subblock:
|
|
71
71
|
i += 1
|
|
@@ -79,6 +79,8 @@ def _generate_fim_examples_from_code_block(config: Config, code_utf8: bytes, sub
|
|
|
79
79
|
eos_token_utf8 = config.eos_token.encode('utf8')
|
|
80
80
|
|
|
81
81
|
num_of_subblocks = len(subblock_ranges)
|
|
82
|
+
if num_of_subblocks == 0:
|
|
83
|
+
return []
|
|
82
84
|
num_of_fim_examples = max(1, int(num_of_subblocks * config.fim_examples_per_subblock_ratio))
|
|
83
85
|
unique_random_subblock_indices = config.rng.choice(len(subblock_ranges), size=num_of_fim_examples, replace=False)
|
|
84
86
|
|
|
@@ -126,13 +128,33 @@ def create_fim_examples(config: Config, code_blocks_iter: Iterator[Tuple[bytes,
|
|
|
126
128
|
|
|
127
129
|
subblock_ranges = _filter_subblocks(subblock_ranges, max_bytes_per_subblock)
|
|
128
130
|
|
|
129
|
-
code_block_utf8 = code_block_utf8[:max_bytes_per_subblock] # Trunctate code block code if it is larger than bytes_per_code_block, we only consider subblocks inside this range.
|
|
130
|
-
|
|
131
131
|
fim_examples = _generate_fim_examples_from_code_block(config, code_block_utf8, subblock_ranges, bytes_per_token_ratio)
|
|
132
132
|
for fim_example in fim_examples:
|
|
133
133
|
yield fim_example
|
|
134
134
|
|
|
135
135
|
|
|
136
|
+
def _filter_overlong_tokenized_examples(tokenized_batch: Mapping[str, List[List[int]]], max_length: int) -> Mapping[str, List[List[int]]]:
|
|
137
|
+
"""
|
|
138
|
+
Remove examples whose actual token count exceeds max_length.
|
|
139
|
+
Returns filtered batch.
|
|
140
|
+
"""
|
|
141
|
+
input_ids = tokenized_batch["input_ids"]
|
|
142
|
+
|
|
143
|
+
keep_indices = []
|
|
144
|
+
for idx, token_sequence in enumerate(input_ids):
|
|
145
|
+
if len(token_sequence) <= max_length:
|
|
146
|
+
keep_indices.append(idx)
|
|
147
|
+
|
|
148
|
+
filtered_batch = {}
|
|
149
|
+
for key, values in tokenized_batch.items():
|
|
150
|
+
filtered_values = []
|
|
151
|
+
for idx in keep_indices:
|
|
152
|
+
filtered_values.append(values[idx])
|
|
153
|
+
filtered_batch[key] = filtered_values
|
|
154
|
+
|
|
155
|
+
return filtered_batch
|
|
156
|
+
|
|
157
|
+
|
|
136
158
|
def _save_tokenized_batch_as_jsonl(file_path: Path, batch: Mapping[str, List[List[int]]]) -> None:
|
|
137
159
|
with open(file_path, 'a', encoding='utf-8') as f:
|
|
138
160
|
batch_size = len(batch['input_ids'])
|
|
@@ -154,7 +176,6 @@ def tokenize_and_save_fim_examples(config: Config, file_path: Path, fim_examples
|
|
|
154
176
|
batch = []
|
|
155
177
|
for fim_example in fim_examples_iter:
|
|
156
178
|
batch.append(fim_example.decode('utf-8'))
|
|
157
|
-
examples_counter += 1
|
|
158
179
|
if (len(batch) == config.tokenizer_batch_size):
|
|
159
180
|
tokenized_batch = tokenizer(
|
|
160
181
|
batch,
|
|
@@ -163,7 +184,10 @@ def tokenize_and_save_fim_examples(config: Config, file_path: Path, fim_examples
|
|
|
163
184
|
return_attention_mask=True
|
|
164
185
|
)
|
|
165
186
|
tokenized_batch["labels"] = tokenized_batch["input_ids"]
|
|
166
|
-
|
|
187
|
+
filtered_tokenized_batch = _filter_overlong_tokenized_examples(tokenized_batch, config.max_token_sequence_length)
|
|
188
|
+
if filtered_tokenized_batch["input_ids"]: # dont save if no examples left after filtering
|
|
189
|
+
_save_tokenized_batch_as_jsonl(file_path, filtered_tokenized_batch)
|
|
190
|
+
examples_counter += len(filtered_tokenized_batch["input_ids"])
|
|
167
191
|
batch = []
|
|
168
192
|
|
|
169
193
|
# last batch is smaller than config.tokenizer_batch_size, the "rest"
|
|
@@ -175,6 +199,9 @@ def tokenize_and_save_fim_examples(config: Config, file_path: Path, fim_examples
|
|
|
175
199
|
return_attention_mask=True
|
|
176
200
|
)
|
|
177
201
|
tokenized_batch["labels"] = tokenized_batch["input_ids"]
|
|
178
|
-
|
|
202
|
+
filtered_tokenized_batch = _filter_overlong_tokenized_examples(tokenized_batch, config.max_token_sequence_length)
|
|
203
|
+
if filtered_tokenized_batch["input_ids"]: # dont save if no examples left after filtering
|
|
204
|
+
_save_tokenized_batch_as_jsonl(file_path, filtered_tokenized_batch)
|
|
205
|
+
examples_counter += len(filtered_tokenized_batch["input_ids"])
|
|
179
206
|
|
|
180
|
-
logger.info(f"Processed and saved {examples_counter} FIM examples to {file_path}")
|
|
207
|
+
logger.info(f"Processed and saved {examples_counter} FIM examples to {file_path}")
|
|
@@ -50,6 +50,7 @@ def test_load_from_yaml_ignores_unknown_keys(tmp_path):
|
|
|
50
50
|
fim_pad_token: "<|fim_pad|>"
|
|
51
51
|
eos_token: "<|endoftext|>"
|
|
52
52
|
label_pad_token_id: -100
|
|
53
|
+
max_token_sequence_length: 1024
|
|
53
54
|
data_language: "c"
|
|
54
55
|
data_extensions: [".c", ".h"]
|
|
55
56
|
unknown_key_that_does_not_exist: 999
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import pathlib
|
|
2
|
-
import json
|
|
3
2
|
import pytest
|
|
4
|
-
import torch
|
|
5
3
|
from datasets import IterableDataset
|
|
6
4
|
from transformers import AutoTokenizer
|
|
7
5
|
|
|
@@ -10,7 +8,9 @@ test_config_path = tests_path / "config" / "codefinetuner_config.yaml"
|
|
|
10
8
|
|
|
11
9
|
from codefinetuner.finetune.config import Config
|
|
12
10
|
from codefinetuner.finetune.model import (
|
|
13
|
-
load_and_configure_lora_model
|
|
11
|
+
load_and_configure_lora_model,
|
|
12
|
+
_load_hf_model,
|
|
13
|
+
_load_unsloth_model
|
|
14
14
|
)
|
|
15
15
|
|
|
16
16
|
|
|
@@ -25,17 +25,37 @@ def config() -> Config:
|
|
|
25
25
|
|
|
26
26
|
# --- load_and_configure_lora_model ---
|
|
27
27
|
|
|
28
|
-
def
|
|
29
|
-
|
|
28
|
+
def test_load_and_configure_lora_model_dispatches_to_hf(config, mocker):
|
|
29
|
+
config.use_unsloth = False
|
|
30
|
+
|
|
31
|
+
hf_mock = mocker.patch("codefinetuner.finetune.model._load_hf_model")
|
|
32
|
+
load_and_configure_lora_model(config)
|
|
33
|
+
|
|
34
|
+
hf_mock.assert_called_once_with(config)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def test_load_and_configure_lora_model_dispatches_to_unsloth(config, mocker):
|
|
38
|
+
config.use_unsloth = True
|
|
39
|
+
|
|
40
|
+
unsloth_mock = mocker.patch("codefinetuner.finetune.model._load_unsloth_model")
|
|
41
|
+
load_and_configure_lora_model(config)
|
|
42
|
+
|
|
43
|
+
unsloth_mock.assert_called_once_with(config)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
# --- _load_hf_model ---
|
|
47
|
+
|
|
48
|
+
def test_load_hf_model_cuda(config, mocker):
|
|
30
49
|
config.device = "cuda"
|
|
31
|
-
|
|
50
|
+
config.use_unsloth = False
|
|
51
|
+
|
|
32
52
|
bnb_mock = mocker.patch("codefinetuner.finetune.model.BitsAndBytesConfig")
|
|
33
53
|
auto_model_mock = mocker.patch("codefinetuner.finetune.model.AutoModelForCausalLM.from_pretrained")
|
|
34
54
|
kbit_prep_mock = mocker.patch("codefinetuner.finetune.model.prepare_model_for_kbit_training")
|
|
35
55
|
lora_cfg_mock = mocker.patch("codefinetuner.finetune.model.LoraConfig")
|
|
36
56
|
get_peft_mock = mocker.patch("codefinetuner.finetune.model.get_peft_model")
|
|
37
57
|
|
|
38
|
-
|
|
58
|
+
_load_hf_model(config)
|
|
39
59
|
|
|
40
60
|
bnb_mock.assert_called_once()
|
|
41
61
|
auto_model_mock.assert_called_once()
|
|
@@ -44,13 +64,15 @@ def test_load_and_configure_lora_model_cuda(config, mocker):
|
|
|
44
64
|
get_peft_mock.assert_called_once()
|
|
45
65
|
|
|
46
66
|
|
|
47
|
-
def
|
|
67
|
+
def test_load_hf_model_mps(config, mocker):
|
|
48
68
|
config.device = "mps"
|
|
69
|
+
config.use_unsloth = False
|
|
70
|
+
|
|
49
71
|
auto_model_mock = mocker.patch("codefinetuner.finetune.model.AutoModelForCausalLM.from_pretrained")
|
|
50
72
|
lora_cfg_mock = mocker.patch("codefinetuner.finetune.model.LoraConfig")
|
|
51
73
|
get_peft_mock = mocker.patch("codefinetuner.finetune.model.get_peft_model")
|
|
52
74
|
|
|
53
|
-
|
|
75
|
+
_load_hf_model(config)
|
|
54
76
|
|
|
55
77
|
auto_model_mock.assert_called_once()
|
|
56
78
|
auto_model_mock.return_value.to.assert_called_once_with("mps")
|
|
@@ -58,15 +80,47 @@ def test_load_and_configure_lora_model_mps(config, mocker):
|
|
|
58
80
|
get_peft_mock.assert_called_once()
|
|
59
81
|
|
|
60
82
|
|
|
61
|
-
def
|
|
83
|
+
def test_load_hf_model_cpu(config, mocker):
|
|
62
84
|
config.device = "cpu"
|
|
85
|
+
config.use_unsloth = False
|
|
86
|
+
|
|
63
87
|
auto_model_mock = mocker.patch("codefinetuner.finetune.model.AutoModelForCausalLM.from_pretrained")
|
|
64
88
|
lora_cfg_mock = mocker.patch("codefinetuner.finetune.model.LoraConfig")
|
|
65
89
|
get_peft_mock = mocker.patch("codefinetuner.finetune.model.get_peft_model")
|
|
66
90
|
|
|
67
|
-
|
|
91
|
+
_load_hf_model(config)
|
|
68
92
|
|
|
69
93
|
auto_model_mock.assert_called_once()
|
|
70
94
|
auto_model_mock.return_value.to.assert_called_once_with("cpu")
|
|
71
95
|
lora_cfg_mock.assert_called_once()
|
|
72
|
-
get_peft_mock.assert_called_once()
|
|
96
|
+
get_peft_mock.assert_called_once()
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
# --- load_unsloth_model ---
|
|
100
|
+
|
|
101
|
+
def test_load_unsloth_model(config, mocker):
|
|
102
|
+
config.device = "cuda"
|
|
103
|
+
config.use_unsloth = True
|
|
104
|
+
|
|
105
|
+
# Mock the unsloth module in sys.modules
|
|
106
|
+
mock_unsloth = mocker.MagicMock()
|
|
107
|
+
mocker.patch.dict("sys.modules", {"unsloth": mock_unsloth})
|
|
108
|
+
|
|
109
|
+
# FastLanguageModel.from_pretrained returns a tuple: (model, tokenizer)
|
|
110
|
+
mock_model = mocker.MagicMock()
|
|
111
|
+
mock_unsloth.FastLanguageModel.from_pretrained.return_value = (mock_model, None)
|
|
112
|
+
|
|
113
|
+
load_and_configure_lora_model(config)
|
|
114
|
+
|
|
115
|
+
mock_unsloth.FastLanguageModel.from_pretrained.assert_called_once()
|
|
116
|
+
mock_unsloth.FastLanguageModel.get_peft_model.assert_called_once()
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
def test_load_unsloth_model_non_cuda(config, mocker):
|
|
120
|
+
config.device = "cuda"
|
|
121
|
+
config.use_unsloth = True
|
|
122
|
+
|
|
123
|
+
mocker.patch.dict("sys.modules", {"unsloth": None})
|
|
124
|
+
|
|
125
|
+
with pytest.raises(ImportError, match="Unsloth is not installed"):
|
|
126
|
+
load_and_configure_lora_model(config)
|
|
@@ -52,6 +52,7 @@ def test_load_from_yaml_ignores_unknown_keys(tmp_path):
|
|
|
52
52
|
fim_suffix_token: "<|fim_suffix|>"
|
|
53
53
|
fim_pad_token: "<|fim_pad|>"
|
|
54
54
|
eos_token: "<|endoftext|>"
|
|
55
|
+
max_token_sequence_length: 1024
|
|
55
56
|
data_language: "c"
|
|
56
57
|
data_extensions: [".c"]
|
|
57
58
|
unknown_key_that_does_not_exist: 999
|
|
@@ -74,6 +75,7 @@ def test_invalid_ratio_raises(tmp_path):
|
|
|
74
75
|
fim_suffix_token: "<|fim_suffix|>"
|
|
75
76
|
fim_pad_token: "<|fim_pad|>"
|
|
76
77
|
eos_token: "<|endoftext|>"
|
|
78
|
+
max_token_sequence_length: 1024
|
|
77
79
|
data_language: "c"
|
|
78
80
|
data_extensions: [".c"]
|
|
79
81
|
train_ratio: 0.8
|
|
@@ -121,6 +123,7 @@ def test_unknown_language_raises(tmp_path):
|
|
|
121
123
|
fim_suffix_token: "<|fim_suffix|>"
|
|
122
124
|
fim_pad_token: "<|fim_pad|>"
|
|
123
125
|
eos_token: "<|endoftext|>"
|
|
126
|
+
max_token_sequence_length: 1024
|
|
124
127
|
data_language: "unknown"
|
|
125
128
|
data_extensions: [".unknown"]
|
|
126
129
|
""")
|