localcode 0.3.19__tar.gz → 0.3.20__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.
- {localcode-0.3.19/src/localcode.egg-info → localcode-0.3.20}/PKG-INFO +1 -1
- {localcode-0.3.19 → localcode-0.3.20}/pyproject.toml +1 -1
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/__init__.py +1 -1
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/app_tasks.py +0 -10
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/context.py +101 -42
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/goal.py +0 -9
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/loop.py +150 -35
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/prompts.py +6 -9
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/recovery.py +124 -1
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/tool_execution.py +7 -7
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/app.py +1 -1
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/context.py +4 -3
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/runtime.py +222 -279
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/server_manager.py +5 -1
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/edit_file.py +150 -8
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/multi_edit.py +39 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/read_file.py +14 -2
- localcode-0.3.20/src/localcode/tools/read_state.py +223 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/write_file.py +22 -0
- localcode-0.3.20/src/localcode/tui/paste_collapse.py +95 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/screens/chat.py +94 -11
- {localcode-0.3.19 → localcode-0.3.20/src/localcode.egg-info}/PKG-INFO +1 -1
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode.egg-info/SOURCES.txt +5 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_agent_event_regressions.py +3 -1
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_context_pipeline_e2e.py +25 -13
- localcode-0.3.20/tests/test_edit_guard_and_fuzzy.py +291 -0
- localcode-0.3.20/tests/test_loop_recovery_ladder.py +122 -0
- localcode-0.3.20/tests/test_paste_collapse.py +115 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_runtime.py +109 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_tui_input.py +47 -3
- {localcode-0.3.19 → localcode-0.3.20}/LICENSE +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/MANIFEST.in +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/README.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/CMakePresets.json +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/LICENSE +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/arm64-apple-clang.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/arm64-windows-llvm.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/build-info.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/common.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/download-models.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/git-vars.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/license.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/llama-config.cmake.in +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/llama.pc.in +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/riscv64-spacemit-linux-gnu-gcc.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/cmake/x64-windows-llvm.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/arg.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/arg.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/base64.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-auto-parser.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-diff-analyzer.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-peg-parser.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat-peg-parser.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/chat.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/common.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/console.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/console.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/debug.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/debug.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/download.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/download.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/hf-cache.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/hf-cache.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/http.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/caps.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/caps.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/lexer.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/lexer.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/parser.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/parser.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/runtime.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/runtime.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/string.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/string.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/value.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/jinja/value.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/json-partial.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/json-partial.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/json-schema-to-grammar.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/llguidance.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/log.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/log.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/ngram-cache.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/ngram-cache.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/ngram-map.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/ngram-map.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/ngram-mod.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/ngram-mod.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/peg-parser.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/peg-parser.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/preset.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/preset.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/reasoning-budget.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/reasoning-budget.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/regex-partial.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/regex-partial.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/sampling.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/sampling.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/speculative.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/speculative.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/unicode.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/common/unicode.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-alloc.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-backend.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-blas.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-cann.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-cpp.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-cpu.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-cuda.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-hexagon.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-metal.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-opencl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-openvino.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-opt.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-rpc.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-sycl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-virtgpu.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-vulkan.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-webgpu.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-zdnn.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml-zendnn.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/ggml.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/include/gguf.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-alloc.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-backend-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-backend.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-blas/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch-fallback.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-gemm.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-mappings.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-msg.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/main.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/libdl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hexagon/op-desc.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-hip/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.metal +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-matrices.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-wht.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-musa/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-opt.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-quants.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-quants.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/backend.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/presets.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/quantize.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/quants.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/type.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-threading.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-threading.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-turbo-quant.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/common.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml.c +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/ggml.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/ggml/src/gguf.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/include/llama-cpp.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/include/llama.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/licenses/LICENSE-jsonhpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-adapter.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-adapter.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-arch.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-arch.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-batch.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-batch.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-chat.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-chat.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-context.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-context.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-cparams.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-cparams.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-ext.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-grammar.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-grammar.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-graph.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-graph.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-hparams.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-hparams.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-impl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-io.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-io.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-kv-cache-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-kv-cache-iswa.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-kv-cache.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-kv-cache.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-kv-cells.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory-hybrid.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory-hybrid.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory-recurrent.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory-recurrent.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-memory.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-mmap.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-mmap.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-model-loader.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-model-loader.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-model-saver.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-model-saver.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-model.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-model.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-quant.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-quant.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-sampler.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-sampler.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-vocab.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama-vocab.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/llama.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/afmoe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/apertus.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/arcee.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/arctic.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/arwkv7.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/baichuan.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/bailingmoe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/bailingmoe2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/bert.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/bitnet.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/bloom.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/chameleon.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/chatglm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/codeshell.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/cogvlm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/cohere2-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/command-r.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/dbrx.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/deci.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/deepseek.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/deepseek2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/delta-net-base.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/dots1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/dream.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/ernie4-5-moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/ernie4-5.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/eurobert.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/exaone-moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/exaone.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/exaone4.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/falcon-h1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/falcon.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gemma-embedding.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gemma.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gemma2-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gemma3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gemma3n-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gemma4-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/glm4-moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/glm4.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gpt2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/gptneox.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/granite-hybrid.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/granite.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/grok.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/grovemoe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/hunyuan-dense.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/hunyuan-moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/internlm2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/jais.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/jais2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/jamba.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/kimi-linear.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/lfm2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/llada-moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/llada.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/llama-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/llama.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/maincoder.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/mamba-base.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/mamba.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/mimo2-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/minicpm3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/minimax-m2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/mistral3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/models.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/modern-bert.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/mpt.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/nemotron-h.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/nemotron.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/neo-bert.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/olmo.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/olmo2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/olmoe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/openai-moe-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/openelm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/orion.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/paddleocr.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/pangu-embedded.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/phi2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/phi3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/plamo.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/plamo2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/plamo3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/plm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen2moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen2vl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen35.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen35moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen3moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen3next.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen3vl-moe.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/qwen3vl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/refact.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/rnd1.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/rwkv6-base.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/rwkv6.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/rwkv6qwen2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/rwkv7-base.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/rwkv7.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/seed-oss.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/smallthinker.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/smollm3.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/stablelm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/starcoder.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/starcoder2.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/step35-iswa.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/t5-dec.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/t5-enc.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/wavtokenizer-dec.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/models/xverse.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/turbo-rotation-data-32.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/turbo-rotation-data.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/unicode-data.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/unicode-data.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/unicode.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/src/unicode.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/batched-bench/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/batched-bench/batched-bench.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/cli/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/cli/cli.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/completion/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/completion/completion.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/cvector-generator/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/cvector-generator/cvector-generator.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/cvector-generator/mean.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/cvector-generator/pca.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/export-lora/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/export-lora/export-lora.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/fit-params/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/fit-params/fit-params.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/gguf-split/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/gguf-split/gguf-split.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/imatrix/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/imatrix/imatrix.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/llama-bench/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/llama-bench/llama-bench.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/clip-graph.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/clip-impl.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/clip-model.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/clip.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/clip.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/deprecation-warning.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/cogvlm.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/conformer.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/deepseekocr.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/gemma4v.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/glm4v.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/hunyuanocr.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/internvl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/kimik25.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/kimivl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/llama4.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/llava.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/minicpmv.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/mobilenetv5.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/models.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/nemotron-v2-vl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/paddleocr.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/pixtral.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/qwen2vl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/qwen3vl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/siglip.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/whisper-enc.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/models/youtuvl.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-cli.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-image.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd-image.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/mtmd/mtmd.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/parser/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/parser/debug-template-parser.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/parser/template-analysis.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/perplexity/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/perplexity/perplexity.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/quantize/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/quantize/quantize.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/results/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/results/results.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/rpc/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/rpc/rpc-server.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-common.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-common.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-context.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-context.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-cors-proxy.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-http.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-http.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-models.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-models.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-queue.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-queue.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-task.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-task.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-tools.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server-tools.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/server/server.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/tokenize/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/tokenize/tokenize.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/tts/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/tools/tts/tts.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/cpp-httplib/CMakeLists.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.cpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/miniaudio/miniaudio.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/nlohmann/json.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/nlohmann/json_fwd.hpp +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/sheredom/subprocess.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/llama-cpp-turboquant/vendor/stb/stb_image.h +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/setup.cfg +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/setup.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/__main__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/_subproc_env.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/constants.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/helpers.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/hooks.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/prompt_context.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/sections.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/streaming.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/tool_orchestration.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/agent/turn_finalization.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/approvals.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/auto_compact.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/autonomy.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/bin/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/bin/llama-server +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/bootstrap.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/cache.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/checkpoint.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/compact.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/compaction.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/composer.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/config.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/display.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/embeddings.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/entrypoint.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/errors.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/events.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/features.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/formatting.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/headless_json.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/health.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/hf_quants.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/history.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/hooks.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/indexer.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/injection_defense.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/launcher.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/logging_utils.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/lsp.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/mcp/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/mcp/_bridge.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/mcp/_config.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/mcp/_transports.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/mcp/client.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/memory_guard.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/model_config.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/model_families.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/models.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/models_catalog.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/notebook.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/output.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/patching.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/paths.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/performance.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/permissions.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/permissions_v2.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/plans.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/process_registry.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/recommendations.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/recovery.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/runtime_diffusion.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/session.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/shell.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/debug.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/edit-verified.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/explain.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/git-commit-safely.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/locate.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/plan-task.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/review.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills/run-tests.md +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/skills.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/snapshots.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/sounds.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/telemetry.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/theme.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/thermal.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/thinking.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tool_router.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/toolkit.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/agent.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/append_file.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/base.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/bash.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/edit_diff.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/facts.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/glob_tool.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/grep.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/launch_app.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/list_files.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/plan_mode.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/project_check.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/skill_tool.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/syntax_check.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/todo_write.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/tool_call_repair.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/web_fetch.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tools/web_search.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/app.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/bridge.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/clipboard_image.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/screens/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/screens/mode_picker.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/screens/model_picker.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/screens/setup.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/styles/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/styles/app.tcss +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/widgets/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/widgets/approval.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/widgets/chat_log.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/widgets/messages/__init__.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/widgets/messages/diff.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/tui/widgets/voice_visualizer.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/turn_diff.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/undo.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/verification.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode/voice.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode.egg-info/dependency_links.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode.egg-info/entry_points.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode.egg-info/requires.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/src/localcode.egg-info/top_level.txt +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_architecture.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_bootstrap.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_checkpoint.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_churn_detection.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_clipboard_image.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_compaction.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_agent.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_bg_download.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_binary.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_cli.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_diffusion.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_download.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_hardening.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_install.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_machines.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_model_picker.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_models_matrix.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_tui.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_vision.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_voice.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_comprehensive_whisper.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_config.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_context.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_download.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_embeddings_retrieval.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_fresh_install.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_kv_cap.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_model_config.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_models_catalog.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_not_found_recovery.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_output.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_prompt_language_steering.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_real_models.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_run_json.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_subproc_env.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_syntax_check.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_thermal.py +0 -0
- {localcode-0.3.19 → localcode-0.3.20}/tests/test_toolkit.py +0 -0
|
@@ -5,11 +5,6 @@ from pathlib import Path
|
|
|
5
5
|
import re
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
APP_BUILD_RE = re.compile(
|
|
9
|
-
r"\b(?:build|make|create|start|scaffold|help me build)\b.{0,80}\b"
|
|
10
|
-
r"(?:app|website|site|dashboard|frontend|web app|react app|streamlit|flask app)\b",
|
|
11
|
-
re.IGNORECASE | re.DOTALL,
|
|
12
|
-
)
|
|
13
8
|
PARTIAL_HANDOFF_RE = re.compile(
|
|
14
9
|
r"(?:\bnext steps\b|\bimplemented features so far\b|\bi have started building\b|"
|
|
15
10
|
r"\bready to proceed\b|\bready to continue\b|\barchitecture overview\b|"
|
|
@@ -19,7 +14,6 @@ PARTIAL_HANDOFF_RE = re.compile(
|
|
|
19
14
|
BLOCKING_QUESTION_RE = re.compile(r"^(?:[^?]{0,320}\?)$", re.DOTALL)
|
|
20
15
|
PORT_RE = re.compile(r"(?:--port\s+|-p\s+|localhost:|127\.0\.0\.1:)(\d{2,5})")
|
|
21
16
|
__all__ = [
|
|
22
|
-
"is_app_build_request",
|
|
23
17
|
"looks_like_partial_handoff",
|
|
24
18
|
"is_focused_blocking_question",
|
|
25
19
|
"extract_port",
|
|
@@ -31,10 +25,6 @@ __all__ = [
|
|
|
31
25
|
]
|
|
32
26
|
|
|
33
27
|
|
|
34
|
-
def is_app_build_request(user_text: str) -> bool:
|
|
35
|
-
return bool(APP_BUILD_RE.search(user_text or ""))
|
|
36
|
-
|
|
37
|
-
|
|
38
28
|
def looks_like_partial_handoff(content: str) -> bool:
|
|
39
29
|
return bool(PARTIAL_HANDOFF_RE.search(content or ""))
|
|
40
30
|
|
|
@@ -224,10 +224,54 @@ def _truncate_result(result: str, tool_name: str, ctx_tokens: int = 0) -> str:
|
|
|
224
224
|
# to constants.py during the T0.1 split; re-exported at the top of
|
|
225
225
|
# this module for back-compat.
|
|
226
226
|
|
|
227
|
+
# Only these tools' RESULTS are safe to age. They are REPLAYABLE
|
|
228
|
+
# OBSERVATIONS: their output is a snapshot of external state (the filesystem,
|
|
229
|
+
# a search, a shell command) that the model can regenerate on demand by
|
|
230
|
+
# re-running the exact same call. Aging them is lossless-in-effect — the model
|
|
231
|
+
# can always get them back. This mirrors claude-code's `COMPACTABLE_TOOLS` set
|
|
232
|
+
# (microCompact.ts) and opencode's prune (which protects non-replayable tool
|
|
233
|
+
# output). Deliberately EXCLUDED: write_file / edit_file / multi_edit /
|
|
234
|
+
# append_file. Their result is the DIFF of what the model just wrote — the only
|
|
235
|
+
# record in history of the change it made. Aging it away is what made the model
|
|
236
|
+
# "forget" what it wrote after a build failure and rewrite whole files from
|
|
237
|
+
# scratch (churn). Anything we can't attribute to a replayable tool is also left
|
|
238
|
+
# intact (conservative default).
|
|
239
|
+
_REPLAYABLE_TOOLS: frozenset[str] = frozenset({
|
|
240
|
+
"read_file", "grep", "glob", "list_files", "bash",
|
|
241
|
+
"web_search", "web_fetch",
|
|
242
|
+
})
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
def _tool_names_by_call_id(messages: list[dict]) -> dict[str, str]:
|
|
246
|
+
"""Map tool_call_id -> tool name by scanning assistant tool_calls, so a
|
|
247
|
+
tool-role result (which only carries `tool_call_id`) can be attributed to
|
|
248
|
+
the tool that produced it."""
|
|
249
|
+
names: dict[str, str] = {}
|
|
250
|
+
for m in messages:
|
|
251
|
+
if m.get("role") != "assistant":
|
|
252
|
+
continue
|
|
253
|
+
for tc in m.get("tool_calls") or []:
|
|
254
|
+
tc_id = tc.get("id")
|
|
255
|
+
name = ((tc.get("function") or {}).get("name") or "").strip()
|
|
256
|
+
if tc_id and name:
|
|
257
|
+
names[tc_id] = name
|
|
258
|
+
return names
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
def _result_tool_name(m: dict, id_to_name: dict[str, str]) -> str:
|
|
262
|
+
"""Best-effort tool name for a tool-role result: explicit `name` field if
|
|
263
|
+
present (some providers set it), else via the tool_call_id map."""
|
|
264
|
+
explicit = (m.get("name") or "").strip()
|
|
265
|
+
if explicit:
|
|
266
|
+
return explicit
|
|
267
|
+
return id_to_name.get(m.get("tool_call_id"), "")
|
|
268
|
+
|
|
269
|
+
|
|
227
270
|
def _compact_old_tool_results(
|
|
228
271
|
messages: list[dict], keep_recent: int = COMPACT_KEEP_RECENT_TOOL_RESULTS
|
|
229
272
|
) -> list[dict]:
|
|
230
|
-
"""Return a copy of `messages` with older
|
|
273
|
+
"""Return a copy of `messages` with older REPLAYABLE-OBSERVATION tool
|
|
274
|
+
results summarized.
|
|
231
275
|
|
|
232
276
|
Gated on `Feature.TOOL_RESULT_AGING` — when disabled the caller gets
|
|
233
277
|
the input list back unchanged, which is what eval uses to A/B
|
|
@@ -235,27 +279,42 @@ def _compact_old_tool_results(
|
|
|
235
279
|
|
|
236
280
|
We keep the last `keep_recent` tool results verbatim (the model usually
|
|
237
281
|
only needs the recent ones to decide the next step) and replace earlier
|
|
238
|
-
ones with a compact "[summarized ...]" placeholder
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
282
|
+
ones with a compact "[summarized ...]" placeholder — but ONLY for tools in
|
|
283
|
+
`_REPLAYABLE_TOOLS`. write_file/edit_file/multi_edit results (the diffs of
|
|
284
|
+
what the model wrote) are NEVER aged, so the model doesn't lose sight of
|
|
285
|
+
its own changes. `keep_recent` scales with the context window (more on a big
|
|
286
|
+
machine — see `_prepare_model_messages`), floored at 1 so aging never clears
|
|
287
|
+
the entire working set. User/assistant/system messages pass through
|
|
288
|
+
unchanged, and `tool_call_id` is preserved so the chat protocol still
|
|
289
|
+
reconciles ids correctly.
|
|
244
290
|
"""
|
|
245
291
|
from ..features import Feature, is_enabled
|
|
246
292
|
if not is_enabled(Feature.TOOL_RESULT_AGING):
|
|
247
293
|
return messages
|
|
294
|
+
# Floor at 1 so we never age away the entire working set of tool output.
|
|
248
295
|
keep_recent = max(1, keep_recent)
|
|
249
|
-
|
|
250
|
-
|
|
296
|
+
id_to_name = _tool_names_by_call_id(messages)
|
|
297
|
+
# Only REPLAYABLE-observation results are age-eligible; keep the last
|
|
298
|
+
# `keep_recent` of THOSE verbatim (counting non-replayable results toward
|
|
299
|
+
# the recency window would let a burst of writes push a still-needed read
|
|
300
|
+
# out of the kept set).
|
|
301
|
+
ageable_idxs = [
|
|
302
|
+
i for i, m in enumerate(messages)
|
|
303
|
+
if m.get("role") == "tool"
|
|
304
|
+
and _result_tool_name(m, id_to_name) in _REPLAYABLE_TOOLS
|
|
305
|
+
]
|
|
306
|
+
if len(ageable_idxs) <= keep_recent:
|
|
251
307
|
return messages
|
|
252
308
|
|
|
253
|
-
cutoff_idx =
|
|
309
|
+
cutoff_idx = ageable_idxs[-keep_recent]
|
|
254
310
|
out: list[dict] = []
|
|
255
311
|
for i, m in enumerate(messages):
|
|
256
312
|
if i >= cutoff_idx or m.get("role") != "tool":
|
|
257
313
|
out.append(m)
|
|
258
314
|
continue
|
|
315
|
+
if _result_tool_name(m, id_to_name) not in _REPLAYABLE_TOOLS:
|
|
316
|
+
out.append(m) # non-replayable (write/edit diff, etc.) — preserve
|
|
317
|
+
continue
|
|
259
318
|
content = m.get("content") or ""
|
|
260
319
|
if not isinstance(content, str) or len(content) < COMPACT_MIN_CONTENT_CHARS:
|
|
261
320
|
out.append(m)
|
|
@@ -311,42 +370,42 @@ def _semantic_tool_summary(content: str) -> str:
|
|
|
311
370
|
# this module for back-compat.
|
|
312
371
|
|
|
313
372
|
def _redact_old_write_args(messages: list[dict]) -> list[dict]:
|
|
314
|
-
"""
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
input unchanged, which is what eval uses to A/B "how much bloat
|
|
343
|
-
is this preventing per session?"
|
|
373
|
+
"""Pass-through: the model's OWN write/edit bodies are NEVER stripped.
|
|
374
|
+
|
|
375
|
+
History note (this used to strip them, and that was a bug)
|
|
376
|
+
----------------------------------------------------------
|
|
377
|
+
This pass previously replaced older write_file `content` (and edit_file /
|
|
378
|
+
multi_edit anchors) in the assistant tool_calls with a "[REDACTED — file is
|
|
379
|
+
on disk, call read_file to reload]" stub, keeping only the last
|
|
380
|
+
`REDACT_KEEP_RECENT_WRITES` verbatim. The intent was to cut context bloat.
|
|
381
|
+
|
|
382
|
+
The real cost (observed in logs): after a build failure the model could no
|
|
383
|
+
longer SEE what it had written a few rounds earlier — the body was a stub —
|
|
384
|
+
so instead of a targeted fix it rewrote the whole file from scratch, over
|
|
385
|
+
and over (churn). What the model wrote is exactly what it needs to reason
|
|
386
|
+
about its own change; that record must stay in history.
|
|
387
|
+
|
|
388
|
+
The reference agents agree: claude-code's microCompact clears old tool
|
|
389
|
+
RESULTS but never the write BODIES in assistant messages; codex/opencode
|
|
390
|
+
likewise summarize whole turns wholesale only when over budget rather than
|
|
391
|
+
surgically deleting the code the model wrote. So this function no longer
|
|
392
|
+
strips anything. Context is bounded instead by:
|
|
393
|
+
* `_compact_old_tool_results` — ages only REPLAYABLE observation results
|
|
394
|
+
(read/grep/glob/list_files/bash), never write/edit diffs;
|
|
395
|
+
* `_redact_duplicate_reads` — collapses re-reads of the same path;
|
|
396
|
+
* `_microcompact_for_prompt_budget` / `_compact_messages` — summarize old
|
|
397
|
+
turns wholesale when the prompt genuinely approaches the window budget.
|
|
398
|
+
|
|
399
|
+
Kept as a named no-op (rather than deleted) so callers, telemetry, and the
|
|
400
|
+
A/B feature flag keep working. Still gated on `Feature.WRITE_ARG_REDACTION`.
|
|
344
401
|
"""
|
|
345
402
|
from ..features import Feature, is_enabled
|
|
346
403
|
if not is_enabled(Feature.WRITE_ARG_REDACTION):
|
|
347
404
|
return messages
|
|
348
|
-
|
|
349
|
-
|
|
405
|
+
# Never strip write/edit bodies — see docstring. Older-write redaction is
|
|
406
|
+
# intentionally disabled; the empty target set makes the rest of this
|
|
407
|
+
# function a structural no-op while preserving its shape for back-compat.
|
|
408
|
+
REDACT_TOOLS: set[str] = set()
|
|
350
409
|
|
|
351
410
|
# Collect (outer_idx, tool_call_idx, tool_name) for every targeted call.
|
|
352
411
|
targets: list[tuple[int, int, str]] = []
|
|
@@ -102,14 +102,6 @@ def extract_feature_criteria(runtime, user_text: str, *, max_features: int = 12)
|
|
|
102
102
|
return out
|
|
103
103
|
|
|
104
104
|
|
|
105
|
-
_APP_BUILD_RE = re.compile(
|
|
106
|
-
r"\b(?:build|make|create|start|scaffold|help me build)\b.{0,80}\b"
|
|
107
|
-
r"(?:app|website|site|dashboard|frontend|web app|react app|streamlit|flask app)\b",
|
|
108
|
-
re.IGNORECASE | re.DOTALL,
|
|
109
|
-
)
|
|
110
|
-
_ASK_RE = re.compile(r"\b(?:what|which|where|when|why|how|explain|show)\b", re.IGNORECASE)
|
|
111
|
-
_RUN_RE = re.compile(r"\b(?:run|start|launch|execute|open)\b", re.IGNORECASE)
|
|
112
|
-
_EDIT_RE = re.compile(r"\b(?:fix|edit|change|update|modify|refactor|patch)\b", re.IGNORECASE)
|
|
113
105
|
_SLUG_STOPWORDS = {
|
|
114
106
|
"a",
|
|
115
107
|
"an",
|
|
@@ -142,7 +134,6 @@ _SLUG_STOPWORDS = {
|
|
|
142
134
|
"using",
|
|
143
135
|
"via",
|
|
144
136
|
"with",
|
|
145
|
-
"levels",
|
|
146
137
|
}
|
|
147
138
|
|
|
148
139
|
|
|
@@ -78,6 +78,9 @@ from .recovery import (
|
|
|
78
78
|
detect_churn,
|
|
79
79
|
churn_nudge_for,
|
|
80
80
|
command_token,
|
|
81
|
+
detect_reject_reread_loop,
|
|
82
|
+
reject_reread_nudge,
|
|
83
|
+
todo_close_verification_suffix,
|
|
81
84
|
)
|
|
82
85
|
from .tool_orchestration import prefetch_parallel_tool_calls
|
|
83
86
|
from .streaming import finish_thinking_display, stream_model_round
|
|
@@ -111,7 +114,6 @@ from .app_tasks import (
|
|
|
111
114
|
ground_run_or_launch_text,
|
|
112
115
|
has_launch_signal,
|
|
113
116
|
has_runtime_verification_signal,
|
|
114
|
-
is_app_build_request,
|
|
115
117
|
is_focused_blocking_question,
|
|
116
118
|
looks_like_partial_handoff,
|
|
117
119
|
)
|
|
@@ -404,15 +406,13 @@ def run_agent_loop(
|
|
|
404
406
|
tools_called=tools_called,
|
|
405
407
|
)
|
|
406
408
|
hook_before_turn(_hook_state)
|
|
407
|
-
_app_build_request = is_app_build_request(user_text) or _goal_state.goal_type == "build_app"
|
|
408
409
|
# Per-turn tool-output budget (in chars) scales with the model's REAL
|
|
409
410
|
# context window instead of a fixed cap: allow tool results to fill up to
|
|
410
411
|
# ~35% of the window before further output this turn is truncated. Dynamic
|
|
411
|
-
# per RAM/model — a 256K window keeps far more than a 64K one.
|
|
412
|
-
#
|
|
413
|
-
#
|
|
414
|
-
#
|
|
415
|
-
# the window-aware compaction pass at the top of each round.
|
|
412
|
+
# per RAM/model — a 256K window keeps far more than a 64K one. A single
|
|
413
|
+
# fixed cap starves big machines; the floor keeps small windows usable, and
|
|
414
|
+
# within-turn overflow is still caught by the window-aware compaction pass
|
|
415
|
+
# at the top of each round.
|
|
416
416
|
try:
|
|
417
417
|
_ctx_tokens_turn = int(app.engine._target_num_ctx())
|
|
418
418
|
except Exception:
|
|
@@ -524,8 +524,37 @@ def run_agent_loop(
|
|
|
524
524
|
# rounds (zero tools) reset the read-only streak. Resets to 0 the moment
|
|
525
525
|
# a round changes a file or runs a build.
|
|
526
526
|
_planning_streak = 0
|
|
527
|
-
# Build-verification gate:
|
|
527
|
+
# Build-verification STOP gate: a true completion gate (claude-code
|
|
528
|
+
# query.ts stop-hook pattern). When the model tries to END a build_app turn
|
|
529
|
+
# that changed code, we run the project's real typecheck/test and, if it
|
|
530
|
+
# reports errors, inject them and FORCE another round instead of accepting
|
|
531
|
+
# "done". Bounded by _MAX_BUILD_VERIFY_RETRIES so a genuinely unfixable
|
|
532
|
+
# project can't spin forever; each retry RE-RUNS the check so the gate keeps
|
|
533
|
+
# holding until the project is clean or the bound is hit.
|
|
528
534
|
_build_verify_nudges = 0
|
|
535
|
+
_MAX_BUILD_VERIFY_RETRIES = 2
|
|
536
|
+
# Reject → re-read → reject spin: ONE actionable redirect per turn
|
|
537
|
+
# (recovery.detect_reject_reread_loop, recomputed from the transcript).
|
|
538
|
+
_reject_reread_nudge_done = False
|
|
539
|
+
# Last synthetic-nudge kind we injected, so the recovery ladder never fires
|
|
540
|
+
# the SAME nag twice in a row (claude-code attachments.ts two-and-threshold
|
|
541
|
+
# discipline). Routed through `_append_nudge` below.
|
|
542
|
+
_last_nudge_kind = ""
|
|
543
|
+
|
|
544
|
+
def _append_nudge(content: str, kind: str, *, ephemeral: bool = True) -> bool:
|
|
545
|
+
"""Append a synthetic SYSTEM nudge unless the SAME `kind` was the
|
|
546
|
+
immediately-previous nudge (never the same nag twice running — the
|
|
547
|
+
two-and-threshold discipline). Records the injected index for
|
|
548
|
+
end-of-turn ephemeral cleanup. Returns True when it actually appended.
|
|
549
|
+
"""
|
|
550
|
+
nonlocal _last_nudge_kind
|
|
551
|
+
if kind and kind == _last_nudge_kind:
|
|
552
|
+
return False
|
|
553
|
+
messages.append({"role": "user", "content": content})
|
|
554
|
+
if ephemeral:
|
|
555
|
+
_ephemeral_nudge_indices.append(len(messages) - 1)
|
|
556
|
+
_last_nudge_kind = kind
|
|
557
|
+
return True
|
|
529
558
|
# Cross-round repeated-call breaker: count identical (tool, args) calls
|
|
530
559
|
# across the WHOLE turn (the in-round breaker only catches one round).
|
|
531
560
|
# NUDGE-only — never withholds a tool result (avoids the read-dedup-stub
|
|
@@ -1264,8 +1293,13 @@ def run_agent_loop(
|
|
|
1264
1293
|
f"continue… (auto-retry {_empty_rounds_this_turn}/"
|
|
1265
1294
|
f"{_MAX_EMPTY_ROUND_RETRIES})"
|
|
1266
1295
|
)
|
|
1267
|
-
|
|
1268
|
-
|
|
1296
|
+
# Route through the guard so the SAME stall nudge never fires
|
|
1297
|
+
# two rounds running (two-and-threshold discipline). If it's
|
|
1298
|
+
# suppressed we still continue — the retry counter advanced and
|
|
1299
|
+
# the assistant's dead "about to act" message was already
|
|
1300
|
+
# dropped, so the model gets another clean shot without the
|
|
1301
|
+
# self-conditioning duplicate nag.
|
|
1302
|
+
_append_nudge(nudge_for(stall), kind=f"stall:{stall.name}")
|
|
1269
1303
|
continue # next round of the main loop
|
|
1270
1304
|
else:
|
|
1271
1305
|
out.print_info(
|
|
@@ -1298,30 +1332,38 @@ def run_agent_loop(
|
|
|
1298
1332
|
# permission question, the user gets to answer — the runtime
|
|
1299
1333
|
# does not silently force a retry.
|
|
1300
1334
|
_blocking_question = is_focused_blocking_question(content)
|
|
1301
|
-
# ── Build-verification gate ──
|
|
1302
|
-
# The model wants to
|
|
1303
|
-
#
|
|
1304
|
-
#
|
|
1305
|
-
#
|
|
1306
|
-
#
|
|
1307
|
-
#
|
|
1308
|
-
#
|
|
1335
|
+
# ── Build-verification STOP gate (claude-code query.ts stop-hook) ──
|
|
1336
|
+
# The model wants to END a build_app turn that changed CODE. This is
|
|
1337
|
+
# a TRUE completion gate, not a one-shot nudge: we RUN the project's
|
|
1338
|
+
# own typecheck/test ourselves and, if it reports errors, inject them
|
|
1339
|
+
# and FORCE another round — the model cannot declare "done" while the
|
|
1340
|
+
# gate is red. Each completion attempt RE-RUNS the check, so the gate
|
|
1341
|
+
# keeps holding until the project is clean or _MAX_BUILD_VERIFY_RETRIES
|
|
1342
|
+
# is hit (a genuinely unfixable project can't spin forever).
|
|
1343
|
+
#
|
|
1344
|
+
# NOTE: gated on build_app, which `infer_goal_state` (now generalist)
|
|
1345
|
+
# never sets — so this stop-gate is currently DORMANT. That's
|
|
1346
|
+
# intentional for 0.3.20: making it general ("any code-changing turn
|
|
1347
|
+
# + a checker") fires a full project typecheck on every one-line edit,
|
|
1348
|
+
# which is too aggressive and slow. A proper general trigger (fire on
|
|
1349
|
+
# a multi-file / new-file BUILD completion, not a small edit) is a
|
|
1350
|
+
# follow-up. Left dormant rather than shipped half-tuned.
|
|
1309
1351
|
if (
|
|
1310
1352
|
not _blocking_question
|
|
1311
1353
|
and _goal_state.goal_type == "build_app"
|
|
1312
|
-
and _build_verify_nudges <
|
|
1354
|
+
and _build_verify_nudges < _MAX_BUILD_VERIFY_RETRIES
|
|
1313
1355
|
and _is_enabled(Feature.AUTO_NUDGE_RECOVERY)
|
|
1314
1356
|
and _changed_code_files(changed_files)
|
|
1315
|
-
and not has_runtime_verification_signal(bash_history)
|
|
1316
|
-
and not ran_build_or_test(bash_history)
|
|
1317
1357
|
):
|
|
1318
|
-
|
|
1358
|
+
_self_verified = (
|
|
1359
|
+
has_runtime_verification_signal(bash_history)
|
|
1360
|
+
or ran_build_or_test(bash_history)
|
|
1361
|
+
)
|
|
1319
1362
|
# TIER-2 VERIFICATION: don't just NUDGE the model to typecheck
|
|
1320
1363
|
# (a small model skips it or mishandles output) — RUN the
|
|
1321
1364
|
# project's real typecheck/lint ourselves and feed the concrete
|
|
1322
1365
|
# errors back. Catches semantic errors (wrong names, missing
|
|
1323
|
-
# imports) the per-write syntax check can't.
|
|
1324
|
-
# turn, at completion. See tools.project_check.
|
|
1366
|
+
# imports) the per-write syntax check can't. See project_check.
|
|
1325
1367
|
_proj_errors = None
|
|
1326
1368
|
try:
|
|
1327
1369
|
from ..tools.project_check import run_project_check
|
|
@@ -1331,11 +1373,19 @@ def run_agent_loop(
|
|
|
1331
1373
|
_proj_errors = None
|
|
1332
1374
|
try:
|
|
1333
1375
|
from ..events import emit as _emit_bg
|
|
1334
|
-
_emit_bg("auto_nudge", signal="
|
|
1335
|
-
round_idx=round_num,
|
|
1376
|
+
_emit_bg("auto_nudge", signal="build_verify_gate",
|
|
1377
|
+
round_idx=round_num, attempt=_build_verify_nudges,
|
|
1378
|
+
had_errors=bool(_proj_errors),
|
|
1379
|
+
self_verified=bool(_self_verified))
|
|
1336
1380
|
except Exception:
|
|
1337
1381
|
pass
|
|
1338
1382
|
if _proj_errors:
|
|
1383
|
+
# STOP: cannot finish while the gate is red. Errors are fresh
|
|
1384
|
+
# actionable feedback (they change as the model fixes them),
|
|
1385
|
+
# so this is NOT routed through the "not twice in a row" nag
|
|
1386
|
+
# guard — but we record the kind so a following reminder-style
|
|
1387
|
+
# nudge doesn't stack on top of it.
|
|
1388
|
+
_build_verify_nudges += 1
|
|
1339
1389
|
out.print_info("Typecheck found errors — sending them back to fix.")
|
|
1340
1390
|
messages.append({"role": "user", "content": (
|
|
1341
1391
|
"SYSTEM: the project's typecheck/build was run for you and "
|
|
@@ -1343,17 +1393,25 @@ def run_agent_loop(
|
|
|
1343
1393
|
"then finish. Do not claim it works until these are gone:\n\n"
|
|
1344
1394
|
+ _proj_errors
|
|
1345
1395
|
)})
|
|
1346
|
-
|
|
1347
|
-
|
|
1396
|
+
_ephemeral_nudge_indices.append(len(messages) - 1)
|
|
1397
|
+
_last_nudge_kind = "build_verify_errors"
|
|
1398
|
+
continue # don't accept completion — the gate is red
|
|
1399
|
+
if not _self_verified and _build_verify_nudges < 1:
|
|
1400
|
+
# Gate is clean (checker passed OR none configured) AND the
|
|
1401
|
+
# model never ran a build/test itself — advise ONCE to verify.
|
|
1402
|
+
# This one IS a recurring-style nag → routed through the guard.
|
|
1403
|
+
_build_verify_nudges += 1
|
|
1348
1404
|
out.print_info("Changed code but never built/ran it — nudging to verify.")
|
|
1349
|
-
|
|
1405
|
+
if _append_nudge(
|
|
1350
1406
|
"SYSTEM: You changed code but never built, type-checked, or ran "
|
|
1351
1407
|
"it. Run the project's build/typecheck (npm run build / npx tsc "
|
|
1352
1408
|
"--noEmit for TS; tests or an import smoke-check for Python), fix "
|
|
1353
|
-
"every error, then finish. Don't claim it works without building."
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1409
|
+
"every error, then finish. Don't claim it works without building.",
|
|
1410
|
+
kind="build_verify_advise",
|
|
1411
|
+
):
|
|
1412
|
+
continue # let it verify before finishing
|
|
1413
|
+
# else: gate clean and either self-verified or already advised →
|
|
1414
|
+
# fall through and accept completion.
|
|
1357
1415
|
if _goal_state.goal_type == "run_or_launch":
|
|
1358
1416
|
_task_port = int(getattr(_task_state, "active_port", 0) or 0)
|
|
1359
1417
|
content = ground_run_or_launch_text(content, _task_port)
|
|
@@ -1552,8 +1610,8 @@ def run_agent_loop(
|
|
|
1552
1610
|
# Same-call 3× guard for tools without their own dedup
|
|
1553
1611
|
# (bash / web_fetch / web_search / launch_app). Took the
|
|
1554
1612
|
# place of the broader exact-repeat counter that was retired
|
|
1555
|
-
# 2026-04-26 — re-added narrowly after
|
|
1556
|
-
#
|
|
1613
|
+
# 2026-04-26 — re-added narrowly after an info-fetch turn
|
|
1614
|
+
# fired the same read-only `curl` command 4× in a
|
|
1557
1615
|
# row. dedup_stub wins ties so list_files/glob/grep keep
|
|
1558
1616
|
# their existing message.
|
|
1559
1617
|
if _dedup_stub is None:
|
|
@@ -1881,6 +1939,30 @@ def run_agent_loop(
|
|
|
1881
1939
|
_stub_chars = max(500, int(_ctx_tokens_turn * 3.5 * 0.01)) if _ctx_tokens_turn else 500
|
|
1882
1940
|
tool_result = tool_result[:_stub_chars] + "\n[Truncated — context budget exceeded this turn]"
|
|
1883
1941
|
|
|
1942
|
+
# ── Todo-close verification nudge (claude-code TodoWriteTool) ──
|
|
1943
|
+
# When the model just marked a 3+ item todo list fully done and none
|
|
1944
|
+
# of the items was a verification step, append a one-line "verify
|
|
1945
|
+
# before your final summary" reminder that RIDES ON this tool result
|
|
1946
|
+
# — no extra round. Appended after truncation so the short reminder
|
|
1947
|
+
# can't be clipped. General + cheap (pure fn of the todos it sent).
|
|
1948
|
+
if tool_name == "todo_write" and isinstance(args, dict):
|
|
1949
|
+
try:
|
|
1950
|
+
_todo_suffix = todo_close_verification_suffix(args.get("todos"))
|
|
1951
|
+
except Exception:
|
|
1952
|
+
_todo_suffix = ""
|
|
1953
|
+
if _todo_suffix:
|
|
1954
|
+
tool_result = f"{tool_result}{_todo_suffix}"
|
|
1955
|
+
try:
|
|
1956
|
+
from ..events import emit as _emit_todo_verify
|
|
1957
|
+
_emit_todo_verify(
|
|
1958
|
+
"todo_close_verify_nudge",
|
|
1959
|
+
turn_id=_turn_id,
|
|
1960
|
+
round_idx=round_num,
|
|
1961
|
+
item_count=len(args.get("todos") or []),
|
|
1962
|
+
)
|
|
1963
|
+
except Exception:
|
|
1964
|
+
pass
|
|
1965
|
+
|
|
1884
1966
|
# Add to history
|
|
1885
1967
|
messages.append({
|
|
1886
1968
|
"role": "tool",
|
|
@@ -2034,6 +2116,39 @@ def run_agent_loop(
|
|
|
2034
2116
|
)
|
|
2035
2117
|
messages.append({"role": "user", "content": churn_nudge_for(_churn)})
|
|
2036
2118
|
_ephemeral_nudge_indices.append(len(messages) - 1)
|
|
2119
|
+
_last_nudge_kind = "churn"
|
|
2120
|
+
|
|
2121
|
+
# ── Reject → re-read → reject recovery rung (bounded, single-shot) ──
|
|
2122
|
+
# The remaining log loop the other detectors miss: a mutation keeps
|
|
2123
|
+
# coming back REJECTED (dedup / "already modified" / old_string-not-found)
|
|
2124
|
+
# and the model reacts by re-reading the file and retrying the same
|
|
2125
|
+
# shape. detect_reject_reread_loop RECOMPUTES the signal from the
|
|
2126
|
+
# transcript tail (survives compaction). We give ONE actionable redirect
|
|
2127
|
+
# per turn, then stop nagging (the guard boolean). Composes with the
|
|
2128
|
+
# existing breakers: gated so it won't fire in a round another nudge
|
|
2129
|
+
# already fired, and `_append_nudge` blocks the same nag twice running.
|
|
2130
|
+
if (
|
|
2131
|
+
not _reject_reread_nudge_done
|
|
2132
|
+
and not _churn_nudge_done
|
|
2133
|
+
and not _spin_nudge_done
|
|
2134
|
+
and not _xround_repeat_nudge_done
|
|
2135
|
+
and not _hard_stop_nudge_fired
|
|
2136
|
+
and _is_enabled(Feature.AUTO_NUDGE_RECOVERY)
|
|
2137
|
+
):
|
|
2138
|
+
_rr_count = detect_reject_reread_loop(messages)
|
|
2139
|
+
if _rr_count is not None:
|
|
2140
|
+
if _append_nudge(reject_reread_nudge(), kind="reject_reread"):
|
|
2141
|
+
_reject_reread_nudge_done = True
|
|
2142
|
+
out.print_info(
|
|
2143
|
+
"Detected a reject → re-read loop — giving it one "
|
|
2144
|
+
"targeted redirect."
|
|
2145
|
+
)
|
|
2146
|
+
try:
|
|
2147
|
+
from ..events import emit as _emit_rr
|
|
2148
|
+
_emit_rr("auto_nudge", signal="reject_reread_loop",
|
|
2149
|
+
count=_rr_count, round_idx=round_num)
|
|
2150
|
+
except Exception:
|
|
2151
|
+
pass
|
|
2037
2152
|
|
|
2038
2153
|
# Break outer loop if loop was detected
|
|
2039
2154
|
if loop_detected:
|
|
@@ -44,7 +44,7 @@ You are LocalCode, a coding agent running locally on the user's machine with ful
|
|
|
44
44
|
Top rules (most important first):
|
|
45
45
|
1. ACT, DON'T NARRATE. If you say "let me read/fix/write X", the tool call that does it MUST come next, in the same turn. Never end a turn on a statement of intent. At most one short sentence of preamble per tool call.
|
|
46
46
|
2. FINISH THE JOB. Cover every requirement the user named. Write complete, runnable code — no TODOs, stubs, placeholders, or "should I do X next?". If a piece is too big for one call, split it across calls; never drop it.
|
|
47
|
-
3. MATCH SCOPE. Answer plain questions plainly; build only what was asked.
|
|
47
|
+
3. MATCH SCOPE & BE TERSE. Answer plain questions plainly and briefly — a sentence or two, no preamble ("Here is…") or postamble ("Let me know if…"); build only what was asked. Terseness is about your PROSE, not the code — write complete code, few words around it.
|
|
48
48
|
4. DON'T REPEAT WORK. Don't re-read a file or re-run a command you already did — the result is still above. After a tool result, continue from where you left off; don't restate the plan.
|
|
49
49
|
5. DON'T INVENT. If you don't recognize a term, library, or command, say so — never guess a plausible meaning. Search the web before asserting facts; if results are empty, say that.
|
|
50
50
|
|
|
@@ -54,10 +54,9 @@ Plan & tools:
|
|
|
54
54
|
- For files and dirs use list_files/read_file/write_file/edit_file — NOT bash (`ls`, `cat`, `cat >`, `>`). bash is only for running commands (npm, git, build, test).
|
|
55
55
|
- edit_file for existing files: anchor `old_string` on 2–4 adjacent lines (matching is whitespace-tolerant; the leading `<n>\\t` from read_file is stripped for you). write_file to create or fully rewrite.
|
|
56
56
|
- On a tool error, read it, fix the specific cause, and retry — don't give up after one failure, and don't repeat the same failing call.
|
|
57
|
-
- New project → prefer a small multi-file layout with a thin entrypoint. Write code valid for the file's real language and match the project's existing conventions.
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
- Never assume a library's API. Before using a package's exports, types, or signatures, verify them — read its files in node_modules, check how neighboring files use it, or web_fetch its docs. Don't guess names. Port known algorithms from the real reference (web_fetch), not from memory.
|
|
57
|
+
- New project → prefer a small multi-file layout with a thin entrypoint. Write code valid for the file's real language and match the project's existing conventions.
|
|
58
|
+
- Don't invent dependencies: before importing a library confirm it's in the project's manifest (package.json / requirements.txt / Cargo.toml / go.mod) or a neighboring file; when installing, don't pin a guessed version — let the package manager's resolver pick a real one.
|
|
59
|
+
- Never assume a library's API. Before using a package's exports, types, or signatures, verify them — read its installed source, check how neighboring files use it, or web_fetch its docs. Don't guess names.
|
|
61
60
|
|
|
62
61
|
Runtime facts:
|
|
63
62
|
- bash returns an exit code; non-zero = failure. Background long-running commands (`cmd &`) so bash returns.
|
|
@@ -135,10 +134,8 @@ def model_identity_line(model: str) -> str:
|
|
|
135
134
|
f"the work: take the next action directly. Only state your name if the "
|
|
136
135
|
f"user explicitly asks who you are. "
|
|
137
136
|
f"The model currently powering you is \"{friendly}\". Report it as EXACTLY "
|
|
138
|
-
f"\"{friendly}\" when the user asks which model/version/quant you are
|
|
139
|
-
f"
|
|
140
|
-
f"in that case use \"{friendly}\" as the name and create it. Never say you "
|
|
141
|
-
f"are unsure and never name a different model or provider.\n"
|
|
137
|
+
f"\"{friendly}\" when the user asks which model/version/quant you are. "
|
|
138
|
+
f"Never say you are unsure and never name a different model or provider.\n"
|
|
142
139
|
)
|
|
143
140
|
|
|
144
141
|
|