localcode 0.3.33__tar.gz → 0.3.35__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.33/src/localcode.egg-info → localcode-0.3.35}/PKG-INFO +1 -1
- {localcode-0.3.33 → localcode-0.3.35}/pyproject.toml +1 -1
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/constants.py +10 -10
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/loop.py +68 -4
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/prompt_context.py +12 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/prompts.py +4 -0
- localcode-0.3.35/src/localcode/agent/reasoning_loop.py +79 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/streaming.py +41 -2
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/compaction.py +28 -2
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/entrypoint.py +9 -1
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/model_config.py +36 -8
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/runtime.py +38 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/thinking.py +8 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/app.py +18 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/screens/chat.py +31 -11
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/screens/model_picker.py +7 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/styles/app.tcss +14 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/widgets/chat_log.py +5 -1
- {localcode-0.3.33 → localcode-0.3.35/src/localcode.egg-info}/PKG-INFO +1 -1
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode.egg-info/SOURCES.txt +5 -0
- localcode-0.3.35/tests/test_anchor_guard.py +32 -0
- localcode-0.3.35/tests/test_compaction_threshold.py +46 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_tui.py +53 -8
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_execution_policies.py +14 -0
- localcode-0.3.35/tests/test_ram_ctx_ladder.py +48 -0
- localcode-0.3.35/tests/test_reasoning_loop.py +65 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_runtime.py +15 -0
- {localcode-0.3.33 → localcode-0.3.35}/LICENSE +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/MANIFEST.in +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/README.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/CMakePresets.json +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/LICENSE +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/arm64-apple-clang.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/arm64-windows-llvm.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/build-info.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/common.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/download-models.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/git-vars.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/license.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/llama-config.cmake.in +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/llama.pc.in +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/riscv64-spacemit-linux-gnu-gcc.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/cmake/x64-windows-llvm.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/arg.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/arg.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/base64.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-auto-parser.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-diff-analyzer.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-peg-parser.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat-peg-parser.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/chat.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/common.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/console.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/console.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/debug.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/debug.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/download.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/download.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/hf-cache.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/hf-cache.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/http.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/caps.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/caps.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/lexer.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/lexer.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/parser.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/parser.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/runtime.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/runtime.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/string.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/string.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/value.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/jinja/value.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/json-partial.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/json-partial.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/json-schema-to-grammar.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/llguidance.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/log.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/log.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/ngram-cache.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/ngram-cache.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/ngram-map.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/ngram-map.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/ngram-mod.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/ngram-mod.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/peg-parser.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/peg-parser.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/preset.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/preset.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/reasoning-budget.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/reasoning-budget.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/regex-partial.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/regex-partial.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/sampling.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/sampling.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/speculative.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/speculative.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/unicode.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/common/unicode.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-alloc.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-backend.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-blas.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-cann.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-cpp.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-cpu.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-cuda.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-hexagon.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-metal.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-opencl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-openvino.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-opt.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-rpc.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-sycl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-virtgpu.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-vulkan.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-webgpu.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-zdnn.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml-zendnn.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/ggml.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/include/gguf.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-alloc.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-backend-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-backend.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-blas/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch-fallback.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-gemm.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-mappings.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-msg.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/main.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/libdl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hexagon/op-desc.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-hip/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.metal +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-matrices.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-wht.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-musa/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-opt.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-quants.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-quants.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/backend.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/presets.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/quantize.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/quants.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/type.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-threading.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-threading.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-turbo-quant.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/common.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml.c +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/ggml.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/ggml/src/gguf.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/include/llama-cpp.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/include/llama.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/licenses/LICENSE-jsonhpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-adapter.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-adapter.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-arch.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-arch.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-batch.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-batch.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-chat.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-chat.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-context.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-context.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-cparams.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-cparams.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-ext.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-grammar.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-grammar.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-graph.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-graph.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-hparams.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-hparams.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-impl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-io.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-io.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-kv-cache-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-kv-cache-iswa.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-kv-cache.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-kv-cache.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-kv-cells.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory-hybrid.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory-hybrid.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory-recurrent.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory-recurrent.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-memory.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-mmap.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-mmap.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-model-loader.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-model-loader.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-model-saver.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-model-saver.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-model.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-model.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-quant.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-quant.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-sampler.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-sampler.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-vocab.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama-vocab.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/llama.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/afmoe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/apertus.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/arcee.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/arctic.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/arwkv7.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/baichuan.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/bailingmoe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/bailingmoe2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/bert.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/bitnet.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/bloom.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/chameleon.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/chatglm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/codeshell.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/cogvlm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/cohere2-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/command-r.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/dbrx.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/deci.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/deepseek.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/deepseek2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/delta-net-base.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/dots1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/dream.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/ernie4-5-moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/ernie4-5.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/eurobert.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/exaone-moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/exaone.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/exaone4.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/falcon-h1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/falcon.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gemma-embedding.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gemma.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gemma2-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gemma3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gemma3n-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gemma4-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/glm4-moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/glm4.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gpt2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/gptneox.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/granite-hybrid.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/granite.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/grok.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/grovemoe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/hunyuan-dense.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/hunyuan-moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/internlm2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/jais.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/jais2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/jamba.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/kimi-linear.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/lfm2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/llada-moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/llada.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/llama-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/llama.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/maincoder.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/mamba-base.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/mamba.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/mimo2-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/minicpm3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/minimax-m2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/mistral3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/models.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/modern-bert.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/mpt.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/nemotron-h.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/nemotron.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/neo-bert.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/olmo.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/olmo2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/olmoe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/openai-moe-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/openelm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/orion.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/paddleocr.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/pangu-embedded.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/phi2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/phi3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/plamo.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/plamo2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/plamo3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/plm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen2moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen2vl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen35.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen35moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen3moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen3next.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen3vl-moe.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/qwen3vl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/refact.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/rnd1.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/rwkv6-base.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/rwkv6.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/rwkv6qwen2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/rwkv7-base.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/rwkv7.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/seed-oss.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/smallthinker.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/smollm3.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/stablelm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/starcoder.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/starcoder2.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/step35-iswa.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/t5-dec.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/t5-enc.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/wavtokenizer-dec.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/models/xverse.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/turbo-rotation-data-32.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/turbo-rotation-data.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/unicode-data.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/unicode-data.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/unicode.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/src/unicode.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/batched-bench/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/batched-bench/batched-bench.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/cli/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/cli/cli.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/completion/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/completion/completion.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/cvector-generator/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/cvector-generator/cvector-generator.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/cvector-generator/mean.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/cvector-generator/pca.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/export-lora/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/export-lora/export-lora.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/fit-params/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/fit-params/fit-params.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/gguf-split/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/gguf-split/gguf-split.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/imatrix/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/imatrix/imatrix.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/llama-bench/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/llama-bench/llama-bench.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/clip-graph.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/clip-impl.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/clip-model.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/clip.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/clip.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/deprecation-warning.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/cogvlm.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/conformer.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/deepseekocr.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/gemma4v.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/glm4v.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/hunyuanocr.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/internvl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/kimik25.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/kimivl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/llama4.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/llava.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/minicpmv.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/mobilenetv5.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/models.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/nemotron-v2-vl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/paddleocr.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/pixtral.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/qwen2vl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/qwen3vl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/siglip.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/whisper-enc.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/models/youtuvl.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-cli.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-image.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd-image.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/mtmd/mtmd.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/parser/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/parser/debug-template-parser.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/parser/template-analysis.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/perplexity/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/perplexity/perplexity.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/quantize/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/quantize/quantize.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/results/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/results/results.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/rpc/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/rpc/rpc-server.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-common.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-common.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-context.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-context.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-cors-proxy.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-http.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-http.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-models.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-models.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-queue.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-queue.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-task.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-task.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-tools.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server-tools.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/server/server.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/tokenize/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/tokenize/tokenize.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/tts/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/tools/tts/tts.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/cpp-httplib/CMakeLists.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.cpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/miniaudio/miniaudio.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/nlohmann/json.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/nlohmann/json_fwd.hpp +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/sheredom/subprocess.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/llama-cpp-turboquant/vendor/stb/stb_image.h +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/setup.cfg +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/setup.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/__main__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/_subproc_env.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/app_tasks.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/context.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/goal.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/helpers.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/hooks.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/recovery.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/sections.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/state_machine.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/tool_execution.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/tool_orchestration.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/agent/turn_finalization.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/app.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/approvals.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/auto_compact.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/autonomy.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/bin/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/bin/llama-server +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/bootstrap.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/cache.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/checkpoint.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/compact.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/composer.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/config.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/context.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/display.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/embeddings.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/errors.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/events.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/evidence.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/execution_policy.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/features.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/formatting.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/headless_json.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/health.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/hf_quants.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/history.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/hooks.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/indexer.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/injection_defense.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/launcher.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/logging_utils.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/lsp.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/mcp/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/mcp/_bridge.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/mcp/_config.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/mcp/_transports.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/mcp/client.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/memory_guard.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/model_delete.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/model_families.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/models.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/models_catalog.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/notebook.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/output.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/patching.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/paths.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/performance.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/permissions.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/permissions_v2.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/plans.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/process_registry.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/recommendations.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/recovery.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/runtime_diffusion.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/server_manager.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/session.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/shell.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/debug.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/edit-verified.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/explain.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/finish-verified.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/git-commit-safely.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/locate.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/plan-task.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/review.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills/run-tests.md +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/skills.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/snapshots.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/sounds.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/telemetry.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/theme.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/thermal.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tool_router.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/toolkit.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/agent.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/append_file.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/background_process.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/base.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/bash.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/code_navigation.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/edit_diff.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/edit_file.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/facts.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/glob_tool.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/grep.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/launch_app.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/list_files.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/multi_edit.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/plan_mode.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/project_check.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/read_file.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/read_state.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/skill_tool.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/syntax_check.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/todo_write.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/tool_call_repair.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/web_fetch.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/web_search.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tools/write_file.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/bridge.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/clipboard_image.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/paste_collapse.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/screens/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/screens/mode_picker.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/screens/setup.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/styles/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/widgets/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/widgets/approval.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/widgets/messages/__init__.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/widgets/messages/diff.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/tui/widgets/voice_visualizer.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/turn_diff.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/undo.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/verification.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode/voice.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode.egg-info/dependency_links.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode.egg-info/entry_points.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode.egg-info/requires.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/src/localcode.egg-info/top_level.txt +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_agent_event_regressions.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_agent_state_machine.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_architecture.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_bootstrap.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_checkpoint.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_churn_detection.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_clipboard_image.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_code_navigation_and_processes.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_compaction.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_agent.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_bg_download.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_binary.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_cli.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_diffusion.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_download.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_hardening.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_install.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_machines.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_model_picker.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_models_matrix.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_vision.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_voice.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_comprehensive_whisper.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_config.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_context.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_context_pipeline_e2e.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_delete_command.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_download.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_edit_guard_and_fuzzy.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_embeddings_retrieval.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_evidence_and_lifecycle_hooks.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_fresh_install.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_home_build_anchor.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_kv_cap.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_loop_recovery_ladder.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_model_config.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_models_catalog.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_not_found_recovery.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_output.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_paste_collapse.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_path_healing.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_prompt_language_steering.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_quant_browser_and_thinking.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_real_models.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_run_json.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_security_hardening.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_subproc_env.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_syntax_check.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_task_statement_pinning.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_thermal.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_toolkit.py +0 -0
- {localcode-0.3.33 → localcode-0.3.35}/tests/test_tui_input.py +0 -0
|
@@ -81,20 +81,20 @@ leaves ~125K tokens of generation headroom ≈ ~28 minutes of nonstop
|
|
|
81
81
|
decode. A real 40-minute / no-output hang (thinking on, no answer emitted)
|
|
82
82
|
was traced to exactly this.
|
|
83
83
|
|
|
84
|
-
The
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
84
|
+
The primary control is llama.cpp's per-request `thinking_budget_tokens`: it
|
|
85
|
+
forces the template's end-thinking sequence and lets the SAME generation move
|
|
86
|
+
on to a tool call. Feature.THINKING_CAPS + MAX_THINKING_SECONDS / CHARS are
|
|
87
|
+
compatibility backstops for templates whose thinking tags the server cannot
|
|
88
|
+
identify. Leaving MAX_OUTPUT_TOKENS at -1 keeps valid long tool calls intact
|
|
89
|
+
without leaving the reasoning channel unbounded."""
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
# ── Thinking-phase safety caps ──────────────────────────────────────
|
|
93
93
|
#
|
|
94
|
-
# Bound how much reasoning
|
|
95
|
-
#
|
|
96
|
-
# `_thinking_abort
|
|
97
|
-
#
|
|
94
|
+
# Bound how much reasoning Python will accept if the server-side token budget
|
|
95
|
+
# cannot recognize the model's thinking delimiters. Either cap trips a
|
|
96
|
+
# `_thinking_abort`. Exact periodic loops retry once with thinking disabled;
|
|
97
|
+
# other runaways surface a clear user message.
|
|
98
98
|
#
|
|
99
99
|
# These are a RUNAWAY guard, not a reasoning budget. The earlier tight
|
|
100
100
|
# values (90 s / 4000 chars ≈ 1000 tokens) aborted legitimate long
|
|
@@ -262,11 +262,18 @@ def run_agent_loop(
|
|
|
262
262
|
from ..app import is_online
|
|
263
263
|
online = is_online()
|
|
264
264
|
if online:
|
|
265
|
-
network_status =
|
|
265
|
+
network_status = (
|
|
266
|
+
"Network: ONLINE — you can download files, install packages, fetch URLs. "
|
|
267
|
+
"PREFER your tools over writing from memory: web_search / web_fetch to "
|
|
268
|
+
"confirm current facts, versions, and library docs; your skills and other "
|
|
269
|
+
"tools for anything they cover. Don't hand-write what a tool can get right."
|
|
270
|
+
)
|
|
266
271
|
else:
|
|
267
272
|
network_status = (
|
|
268
273
|
"Network: OFFLINE — NO internet. Do NOT attempt downloads, pip install, curl, wget, or any network requests. "
|
|
269
|
-
"Use only local files
|
|
274
|
+
"Use only local files, already-installed packages, and your LOCAL skills and "
|
|
275
|
+
"tools (read/grep/edit, installed CLIs). Generate sample/mock data locally "
|
|
276
|
+
"instead of downloading."
|
|
270
277
|
)
|
|
271
278
|
def _current_task_stage_for_thinking() -> str:
|
|
272
279
|
stage = str(_last_announced_task_stage or getattr(_task_state, "current_stage", "") or "").strip()
|
|
@@ -431,6 +438,9 @@ def run_agent_loop(
|
|
|
431
438
|
_todo_stuck_count = 0
|
|
432
439
|
_last_todo_remaining = 10**9
|
|
433
440
|
_edit_recovery_nudges = 0
|
|
441
|
+
# Set when a round aborts on a detected reasoning loop; forces the very next
|
|
442
|
+
# round to decode with thinking off so the retry escapes the attractor.
|
|
443
|
+
_force_no_think_next_round = False
|
|
434
444
|
_MAX_CONSECUTIVE_CORRECTIONS = 2
|
|
435
445
|
_generic_correction_nudges = 0
|
|
436
446
|
# Fires at most once per turn when an identical failing call crosses the
|
|
@@ -454,6 +464,11 @@ def run_agent_loop(
|
|
|
454
464
|
# agent/recovery.py (T0.1-d split).
|
|
455
465
|
_empty_rounds_this_turn = 0
|
|
456
466
|
_MAX_EMPTY_ROUND_RETRIES = MAX_EMPTY_ROUND_RETRIES
|
|
467
|
+
# Loop-abort decode-recovery: how many times this turn a detected reasoning
|
|
468
|
+
# loop forced a no-thinking retry. Capped so a model that keeps degenerating
|
|
469
|
+
# even without the reasoning channel can't spin the turn forever.
|
|
470
|
+
_thinking_loop_recoveries = 0
|
|
471
|
+
_MAX_THINKING_LOOP_RECOVERIES = 2
|
|
457
472
|
_last_round_signature: tuple[int, str] | None = None
|
|
458
473
|
_same_round_signature_count = 0
|
|
459
474
|
_same_round_synthetic_rejections = 0
|
|
@@ -785,6 +800,16 @@ def run_agent_loop(
|
|
|
785
800
|
task_stage=round_task_stage,
|
|
786
801
|
user_text=user_text,
|
|
787
802
|
)
|
|
803
|
+
# Cycle-breaker: the PREVIOUS round degenerated into a reasoning loop and
|
|
804
|
+
# aborted. Retrying with the reasoning channel still on re-enters the same
|
|
805
|
+
# attractor (same prompt, same samplers, same template) — a text nudge
|
|
806
|
+
# alone doesn't change the decode. So force this one retry to decode with
|
|
807
|
+
# thinking OFF, which actually changes the generation path and lets the
|
|
808
|
+
# model emit a tool call. This is fault recovery, not a reinterpretation
|
|
809
|
+
# of the user's `on` setting: normal rounds keep thinking.
|
|
810
|
+
if _force_no_think_next_round:
|
|
811
|
+
round_use_thinking = False
|
|
812
|
+
_force_no_think_next_round = False
|
|
788
813
|
try:
|
|
789
814
|
_ctx_chars = None
|
|
790
815
|
try:
|
|
@@ -962,9 +987,48 @@ def run_agent_loop(
|
|
|
962
987
|
_loop_exit_reason = f"stream_error:{type(exc).__name__}"
|
|
963
988
|
break
|
|
964
989
|
|
|
965
|
-
# If
|
|
966
|
-
#
|
|
990
|
+
# If the server-side reasoning budget could not transition the model,
|
|
991
|
+
# recover a periodic loop automatically; report other cap aborts.
|
|
967
992
|
if _stream_result.thinking_abort:
|
|
993
|
+
try:
|
|
994
|
+
from ..events import emit as _emit_ta
|
|
995
|
+
_emit_ta(
|
|
996
|
+
"thinking_abort",
|
|
997
|
+
round_idx=round_num,
|
|
998
|
+
reason=_stream_result.thinking_abort_reason or "unknown",
|
|
999
|
+
)
|
|
1000
|
+
except Exception:
|
|
1001
|
+
pass
|
|
1002
|
+
if (
|
|
1003
|
+
_stream_result.thinking_abort_reason == "loop"
|
|
1004
|
+
and _thinking_loop_recoveries < _MAX_THINKING_LOOP_RECOVERIES
|
|
1005
|
+
):
|
|
1006
|
+
# Detected a degenerate repetition loop early. This is DECODE
|
|
1007
|
+
# recovery, not an optional textual nudge — do it explicitly and
|
|
1008
|
+
# independently of AUTO_NUDGE_RECOVERY. Drop the aborted (empty)
|
|
1009
|
+
# round entirely (never append its assistant message) and re-run
|
|
1010
|
+
# the SAME round with thinking off (consumed at the top of the
|
|
1011
|
+
# loop), which changes the generation path and breaks the loop.
|
|
1012
|
+
_thinking_loop_recoveries += 1
|
|
1013
|
+
_force_no_think_next_round = True
|
|
1014
|
+
out.notice(
|
|
1015
|
+
"Model reasoning started repeating itself — retrying this "
|
|
1016
|
+
"step without deep reasoning so it acts instead of looping."
|
|
1017
|
+
)
|
|
1018
|
+
out._stop_indicator()
|
|
1019
|
+
sys.stdout.write("\r\033[K")
|
|
1020
|
+
sys.stdout.flush()
|
|
1021
|
+
continue # next round: decodes with think=False
|
|
1022
|
+
if _stream_result.thinking_abort_reason == "loop":
|
|
1023
|
+
# Recovery budget exhausted: the model kept looping even without
|
|
1024
|
+
# the reasoning channel. End the turn with an honest message.
|
|
1025
|
+
out.notice(
|
|
1026
|
+
"Model kept repeating itself even without deep reasoning — "
|
|
1027
|
+
"ending the turn. Try `/model` to switch models or split the "
|
|
1028
|
+
"task into smaller steps."
|
|
1029
|
+
)
|
|
1030
|
+
_loop_exit_reason = "thinking_loop_exhausted"
|
|
1031
|
+
break
|
|
968
1032
|
out.notice(
|
|
969
1033
|
f"Stopped: model reasoning exceeded the per-round cap "
|
|
970
1034
|
f"({MAX_THINKING_SECONDS}s or {MAX_THINKING_CHARS} chars) without "
|
|
@@ -122,6 +122,18 @@ def build_target_grounding_block(repo_root: Any, goal_state: Any) -> str:
|
|
|
122
122
|
root = str(repo_root or "")
|
|
123
123
|
if not root:
|
|
124
124
|
return ""
|
|
125
|
+
# Don't anchor to $HOME. When localcode is launched outside any project
|
|
126
|
+
# (no .git/package.json/etc. marker found), repo_root falls back to the
|
|
127
|
+
# user's home dir. Telling the model "the project root is /Users/<name>,
|
|
128
|
+
# create all files under that root" then makes it try to build in $HOME —
|
|
129
|
+
# or conflict with the path the user actually named in the task ("work at
|
|
130
|
+
# root vs. the Anki/... path they gave"). In that unanchored case, emit no
|
|
131
|
+
# directive and let the model follow the location from the user's request.
|
|
132
|
+
try:
|
|
133
|
+
if Path(root) == Path.home():
|
|
134
|
+
return ""
|
|
135
|
+
except Exception:
|
|
136
|
+
pass
|
|
125
137
|
return (
|
|
126
138
|
"\n\nTarget location (work here, do not drift):\n"
|
|
127
139
|
f"- The project root is: {root}\n"
|
|
@@ -68,6 +68,10 @@ VERIFY BEFORE YOU CLAIM DONE:
|
|
|
68
68
|
- After building something runnable, actually run it (build, tests, or a real probe) and read the output. "It should work" is not verification.
|
|
69
69
|
- Report outcomes faithfully: if a build/test fails, say so with the output; if you skipped a step, say that.
|
|
70
70
|
|
|
71
|
+
END WITH A SUMMARY, NOT A DEBUG NOTE:
|
|
72
|
+
- Your FINAL message (the one where you stop and hand back to the user) must be a short completion summary — never a low-level note like "cleared the cache" or "that fixed it". The user needs to know what they got and how to use it.
|
|
73
|
+
- Say, in a few lines: WHAT you built, WHERE it lives (the project path), and the EXACT commands to run it — e.g. `cd <project-dir> && npm install && npm run dev`, and the URL/port it serves on. For a library/script, show the run/import command. Note anything the user still needs to do.
|
|
74
|
+
|
|
71
75
|
If the request is ambiguous in a way that changes your approach (stack, interface, scope), ask ONE short question first — otherwise pick the sensible default and proceed.
|
|
72
76
|
|
|
73
77
|
Working directory: {cwd}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"""Detect a degenerate reasoning loop in the model's thinking stream.
|
|
2
|
+
|
|
3
|
+
Small quantized local models sometimes collapse the reasoning channel into a
|
|
4
|
+
repetition loop: the same short phrase ("let me read the file", "OK let me call
|
|
5
|
+
read_file") is emitted over and over without ever transitioning to a tool call.
|
|
6
|
+
Token-level sampler penalties (presence/repeat) don't reliably break a tight
|
|
7
|
+
periodic oscillation, and the length cap (MAX_THINKING_CHARS) only fires after
|
|
8
|
+
tens of thousands of wasted characters — minutes later on a local model.
|
|
9
|
+
|
|
10
|
+
Detection is by STRUCTURE, not content: we look for exact *periodicity* in the
|
|
11
|
+
tail of the reasoning stream — a substring that repeats with a fixed period.
|
|
12
|
+
That is what an autoregressive degeneration loop actually is, and it catches the
|
|
13
|
+
phrase in any language on any task within a few repetitions.
|
|
14
|
+
|
|
15
|
+
Design notes (why this shape):
|
|
16
|
+
- Operate on a raw character tail, NOT on split lines. The reasoning arrives as
|
|
17
|
+
arbitrary streaming chunks; the repeated unit may contain no newline and the
|
|
18
|
+
chunk boundaries fall differently each time, so line-splitting is fragile.
|
|
19
|
+
- Anchor on the final n-gram and find its previous occurrence to derive the
|
|
20
|
+
period in one `str.rfind` (C-fast), then verify true periodicity by scanning
|
|
21
|
+
back. Cost is O(window), independent of total reasoning length, so the caller
|
|
22
|
+
can pass a bounded tail buffer and stay linear overall.
|
|
23
|
+
- Require the periodic run to be both long enough (absolute chars) and to repeat
|
|
24
|
+
enough times before firing, so genuine reasoning — which is not exactly
|
|
25
|
+
periodic — is never cut.
|
|
26
|
+
"""
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
29
|
+
__all__ = ["reasoning_is_looping"]
|
|
30
|
+
|
|
31
|
+
# Need this many chars of uninterrupted reasoning before we judge at all — a
|
|
32
|
+
# floor against cutting short, legitimately-repetitive planning.
|
|
33
|
+
_MIN_TAIL = 300
|
|
34
|
+
# Rolling tail we actually score. The caller passes a bounded buffer; we also
|
|
35
|
+
# clamp here so a full-transcript caller stays cheap.
|
|
36
|
+
_WINDOW = 2400
|
|
37
|
+
# Length of the trailing n-gram we anchor on to recover the period. Long enough
|
|
38
|
+
# to be specific (won't coincidentally reappear in prose), short enough that a
|
|
39
|
+
# tight loop still contains two copies inside the window.
|
|
40
|
+
_ANCHOR = 32
|
|
41
|
+
# Only fire early on TIGHT loops; a very long period is better left to the
|
|
42
|
+
# length/time cap (and is far likelier to be genuine varied reasoning).
|
|
43
|
+
_MAX_PERIOD = 400
|
|
44
|
+
# The periodic unit must repeat at least this many times...
|
|
45
|
+
_MIN_REPEATS = 4
|
|
46
|
+
# ...spanning at least this many characters. Whichever is larger gates.
|
|
47
|
+
_MIN_SPAN = 240
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def reasoning_is_looping(text: str) -> bool:
|
|
51
|
+
"""True when the tail of `text` has collapsed into an exact periodic loop.
|
|
52
|
+
|
|
53
|
+
Content-agnostic and chunk-boundary robust. Conservative: returns False on
|
|
54
|
+
short input and only fires on a genuinely periodic, sufficiently-repeated
|
|
55
|
+
tail, so varied reasoning is never aborted.
|
|
56
|
+
"""
|
|
57
|
+
if not text or len(text) < _MIN_TAIL:
|
|
58
|
+
return False
|
|
59
|
+
tail = text[-_WINDOW:]
|
|
60
|
+
n = len(tail)
|
|
61
|
+
if n < _ANCHOR * 2:
|
|
62
|
+
return False
|
|
63
|
+
anchor = tail[-_ANCHOR:]
|
|
64
|
+
# Where did the final n-gram last occur before its trailing copy? The gap
|
|
65
|
+
# between the two occurrences is the loop period.
|
|
66
|
+
prev = tail.rfind(anchor, 0, n - _ANCHOR)
|
|
67
|
+
if prev == -1:
|
|
68
|
+
return False
|
|
69
|
+
period = (n - _ANCHOR) - prev
|
|
70
|
+
if period <= 0 or period > _MAX_PERIOD:
|
|
71
|
+
return False
|
|
72
|
+
# Verify the tail really is periodic with this period, measuring how far the
|
|
73
|
+
# exact repetition extends back from the end.
|
|
74
|
+
span = 0
|
|
75
|
+
i = n - 1
|
|
76
|
+
while i - period >= 0 and tail[i] == tail[i - period]:
|
|
77
|
+
span += 1
|
|
78
|
+
i -= 1
|
|
79
|
+
return span >= max(_MIN_SPAN, _MIN_REPEATS * period)
|
|
@@ -8,8 +8,16 @@ import time
|
|
|
8
8
|
from typing import Any, TYPE_CHECKING
|
|
9
9
|
|
|
10
10
|
from .constants import MAX_OUTPUT_TOKENS, MAX_THINKING_CHARS, MAX_THINKING_SECONDS
|
|
11
|
+
from .reasoning_loop import reasoning_is_looping
|
|
11
12
|
from ..tools import ALL_SCHEMAS as TOOL_SCHEMAS
|
|
12
13
|
|
|
14
|
+
# Rolling reasoning-tail window handed to the loop detector, and how many new
|
|
15
|
+
# reasoning chars to accumulate between rescans. The window comfortably exceeds
|
|
16
|
+
# the detector's own clamp so a tight loop always has two copies to anchor on;
|
|
17
|
+
# the stride keeps detection to O(window) amortized per chunk.
|
|
18
|
+
_THINKING_TAIL_CHARS = 2600
|
|
19
|
+
_LOOP_SCAN_STRIDE = 200
|
|
20
|
+
|
|
13
21
|
if TYPE_CHECKING:
|
|
14
22
|
from ..app import LocalCodeApp
|
|
15
23
|
from ..output import OutputManager
|
|
@@ -97,6 +105,16 @@ class StreamRoundResult:
|
|
|
97
105
|
thinking_shown: bool = False
|
|
98
106
|
content_streaming: bool = False
|
|
99
107
|
thinking_abort: bool = False
|
|
108
|
+
# Why the thinking phase was aborted: "loop" (degenerate repetition detected
|
|
109
|
+
# early) or "length" (per-round char/time cap). Drives both the user-facing
|
|
110
|
+
# notice and the recovery decision (a loop-abort forces a no-thinking retry).
|
|
111
|
+
thinking_abort_reason: str = ""
|
|
112
|
+
# Bounded rolling tail of the reasoning stream, kept for the loop detector so
|
|
113
|
+
# detection stays O(window) per chunk instead of O(total) — see the thinking
|
|
114
|
+
# handler. Not part of the model transcript.
|
|
115
|
+
_thinking_tail: str = ""
|
|
116
|
+
_thinking_total_chars: int = 0
|
|
117
|
+
_last_loop_scan_total: int = 0
|
|
100
118
|
finish_reason: str = ""
|
|
101
119
|
raw_tail: str = ""
|
|
102
120
|
content_chars: int = 0
|
|
@@ -177,14 +195,35 @@ def stream_model_round(
|
|
|
177
195
|
out.feed_thinking(chunk)
|
|
178
196
|
if result.content_streaming or result.tool_calls:
|
|
179
197
|
return
|
|
198
|
+
# Running total (avoids re-summing thinking_parts every chunk) and a
|
|
199
|
+
# bounded rolling tail for the loop detector, so both guards stay
|
|
200
|
+
# O(window) per chunk regardless of how long reasoning gets.
|
|
201
|
+
result._thinking_total_chars += len(chunk)
|
|
202
|
+
tail = result._thinking_tail + chunk
|
|
203
|
+
if len(tail) > _THINKING_TAIL_CHARS:
|
|
204
|
+
tail = tail[-_THINKING_TAIL_CHARS:]
|
|
205
|
+
result._thinking_tail = tail
|
|
180
206
|
from ..features import Feature, is_enabled
|
|
181
207
|
if is_enabled(Feature.THINKING_CAPS):
|
|
182
|
-
|
|
208
|
+
# Degenerate-repetition guard fires FIRST: it catches a tight
|
|
209
|
+
# loop within a few repeats (~1s), where the length/time cap
|
|
210
|
+
# would burn minutes. Only rescan every _LOOP_SCAN_STRIDE new
|
|
211
|
+
# chars to bound cost.
|
|
212
|
+
if (
|
|
213
|
+
result._thinking_total_chars - result._last_loop_scan_total
|
|
214
|
+
>= _LOOP_SCAN_STRIDE
|
|
215
|
+
):
|
|
216
|
+
result._last_loop_scan_total = result._thinking_total_chars
|
|
217
|
+
if reasoning_is_looping(result._thinking_tail):
|
|
218
|
+
result.thinking_abort = True
|
|
219
|
+
result.thinking_abort_reason = "loop"
|
|
220
|
+
return
|
|
183
221
|
if (
|
|
184
222
|
time.monotonic() - stream_start > MAX_THINKING_SECONDS
|
|
185
|
-
or
|
|
223
|
+
or result._thinking_total_chars > MAX_THINKING_CHARS
|
|
186
224
|
):
|
|
187
225
|
result.thinking_abort = True
|
|
226
|
+
result.thinking_abort_reason = "length"
|
|
188
227
|
return
|
|
189
228
|
if typ == "content":
|
|
190
229
|
chunk = _strip_thinking_tokens(event.get("content", ""))
|
|
@@ -113,6 +113,29 @@ def estimate_tokens(messages: list[dict[str, Any]]) -> int:
|
|
|
113
113
|
return total_chars // _CHARS_PER_TOKEN
|
|
114
114
|
|
|
115
115
|
|
|
116
|
+
def _compact_fraction() -> float:
|
|
117
|
+
"""The fraction of the usable window at which auto-compaction fires.
|
|
118
|
+
|
|
119
|
+
Default COMPACT_THRESHOLD_FRACTION (0.70). Overridable via
|
|
120
|
+
LOCALCODE_COMPACT_PCT (1-100, like Claude Code's CLAUDE_AUTOCOMPACT_PCT_
|
|
121
|
+
OVERRIDE) so a user with a big machine can let context grow closer to the
|
|
122
|
+
full window before summarising, or compact earlier on a small one. Always
|
|
123
|
+
relative to the machine's real RAM-scaled context window — never a fixed
|
|
124
|
+
token count.
|
|
125
|
+
"""
|
|
126
|
+
import os
|
|
127
|
+
raw = os.environ.get("LOCALCODE_COMPACT_PCT")
|
|
128
|
+
if raw is None:
|
|
129
|
+
return COMPACT_THRESHOLD_FRACTION
|
|
130
|
+
try:
|
|
131
|
+
pct = float(raw)
|
|
132
|
+
except (TypeError, ValueError):
|
|
133
|
+
return COMPACT_THRESHOLD_FRACTION
|
|
134
|
+
# Accept either a percent (1-100) or a fraction (0-1); clamp to a sane band.
|
|
135
|
+
frac = pct / 100.0 if pct > 1.0 else pct
|
|
136
|
+
return min(max(frac, 0.30), 0.95)
|
|
137
|
+
|
|
138
|
+
|
|
116
139
|
def should_compact(
|
|
117
140
|
messages: list[dict[str, Any]],
|
|
118
141
|
context_window: int,
|
|
@@ -121,13 +144,16 @@ def should_compact(
|
|
|
121
144
|
"""Return True when the prompt is about to crowd out new generation.
|
|
122
145
|
|
|
123
146
|
`context_window` is the number of tokens llama-server was launched
|
|
124
|
-
with (`-c`)
|
|
147
|
+
with (`-c`) — the machine's real RAM-scaled window. `reserve_tokens` is
|
|
148
|
+
headroom we promise to keep free. The trigger is always a fraction of THAT
|
|
149
|
+
window (see `_compact_fraction`), so a 256K-capable machine compacts near
|
|
150
|
+
256K and a 64K one near 64K.
|
|
125
151
|
"""
|
|
126
152
|
est = estimate_tokens(messages)
|
|
127
153
|
available = context_window - reserve_tokens
|
|
128
154
|
if available <= 0:
|
|
129
155
|
return True
|
|
130
|
-
return est > int(available *
|
|
156
|
+
return est > int(available * _compact_fraction())
|
|
131
157
|
|
|
132
158
|
|
|
133
159
|
def _split_at_keep_recent(
|
|
@@ -371,8 +371,16 @@ def main(argv: list[str] | None = None) -> None:
|
|
|
371
371
|
# prior session's messages before showing the chat screen.
|
|
372
372
|
if getattr(args, "resume", None):
|
|
373
373
|
app._resume_session_id = args.resume
|
|
374
|
+
# Mouse capture OFF by default (same as tui.app.main). Capturing the mouse
|
|
375
|
+
# disables the terminal's NATIVE text selection, so Cmd+C on an empty
|
|
376
|
+
# native selection makes the terminal ring its bell — the persistent copy
|
|
377
|
+
# "beep". This is the entry point `localcode` actually uses; it previously
|
|
378
|
+
# called app.run() with Textual's mouse=True default, so the beep fix in
|
|
379
|
+
# tui.app.main never reached it. Opt back in with LOCALCODE_MOUSE=1.
|
|
380
|
+
import os as _os
|
|
381
|
+
_mouse = _os.environ.get("LOCALCODE_MOUSE", "0") == "1"
|
|
374
382
|
try:
|
|
375
|
-
app.run()
|
|
383
|
+
app.run(mouse=_mouse)
|
|
376
384
|
finally:
|
|
377
385
|
try:
|
|
378
386
|
_reset_terminal_state()
|
|
@@ -36,12 +36,30 @@ from __future__ import annotations
|
|
|
36
36
|
# Qwen checkpoint path is disabled due a measured Metal SIGKILL, forcing a
|
|
37
37
|
# full prompt prefill every round. 128K keeps four checkpoints and is faster
|
|
38
38
|
# for long agentic tasks; 256K remains an explicit override.
|
|
39
|
+
# Dedicated tier for every Apple Silicon RAM variant (MBA/MBP/Studio/Mini).
|
|
40
|
+
# The VALIDATED anchors are 16→64K, 48→96K, 64→128K; every other tier is
|
|
41
|
+
# INTERPOLATED strictly between its validated neighbours (or below the 16 GB
|
|
42
|
+
# floor), so no tier ever exceeds a value that's already been validated on real
|
|
43
|
+
# hardware — a 32 GB machine at 80K uses less KV than the 48 GB-validated 96K
|
|
44
|
+
# and more than the 16 GB-validated 64K. Sizes are multiples of 8192 (clean
|
|
45
|
+
# batch alignment). 256K stays an explicit override, never an auto default
|
|
46
|
+
# (its checkpoint path SIGKILLs on Metal — see runtime.py).
|
|
39
47
|
RAM_CTX_CEILING_TIERS: tuple[tuple[int, int], ...] = (
|
|
40
|
-
(
|
|
41
|
-
(
|
|
42
|
-
(
|
|
48
|
+
(192, 131072), # 192-512 GB (Studio/Pro) — 128K default; 256K via override
|
|
49
|
+
(128, 131072), # 128 GB — 128K
|
|
50
|
+
(96, 131072), # 96 GB — 128K
|
|
51
|
+
(64, 131072), # 64 GB — 128K (validated)
|
|
52
|
+
(48, 98304), # 48 GB — 96K (validated)
|
|
53
|
+
(36, 90112), # 36 GB — 88K (interp 64K@16 → 96K@48)
|
|
54
|
+
(32, 81920), # 32 GB — 80K (was lumped at 64K — the gap, now dedicated)
|
|
55
|
+
(24, 73728), # 24 GB — 72K (interp)
|
|
56
|
+
(18, 65536), # 18 GB — 64K
|
|
57
|
+
(16, 65536), # 16 GB — 64K (validated floor)
|
|
43
58
|
)
|
|
44
|
-
|
|
59
|
+
# <16 GB is below LocalCode's supported floor; keep the validated 64K rather
|
|
60
|
+
# than a lower value, since _target_num_ctx floors there anyway (a smaller
|
|
61
|
+
# ceiling would just contradict it). 16 GB is the smallest supported Mac.
|
|
62
|
+
RAM_CTX_CEILING_DEFAULT = 65536
|
|
45
63
|
|
|
46
64
|
|
|
47
65
|
def ram_ctx_ceiling(ram_gb: int) -> int:
|
|
@@ -57,12 +75,22 @@ def ram_ctx_ceiling(ram_gb: int) -> int:
|
|
|
57
75
|
# (~4x heavier per token, no -fit guard). Much tighter than the turbo ladder
|
|
58
76
|
# so a long unconditional-reasoning turn can't grow the KV cache until OOM.
|
|
59
77
|
# Monotonic; same (min_ram_gb, ctx) high→low form.
|
|
78
|
+
# Dedicated per-variant tier for the cohere2moe model too. Validated anchors:
|
|
79
|
+
# 16→16K, 32→32K, 48→48K, 128→64K; intermediates interpolated between them.
|
|
80
|
+
# Uncompressed f16 KV (~4x heavier than turbo), so every value is much tighter
|
|
81
|
+
# than the turbo ladder above.
|
|
60
82
|
COHERE_CTX_CEILING_TIERS: tuple[tuple[int, int], ...] = (
|
|
61
|
-
(
|
|
62
|
-
(
|
|
63
|
-
(
|
|
83
|
+
(192, 65536), # 64K
|
|
84
|
+
(128, 65536), # 64K (validated)
|
|
85
|
+
(96, 65536), # 64K
|
|
86
|
+
(64, 57344), # 56K (interp 48K@48 → 64K@96)
|
|
87
|
+
(48, 49152), # 48K (validated)
|
|
88
|
+
(36, 40960), # 40K (interp 32K@32 → 48K@48)
|
|
89
|
+
(32, 32768), # 32K (validated)
|
|
90
|
+
(24, 24576), # 24K (interp 16K@16 → 32K@32)
|
|
91
|
+
(16, 16384), # 16K (validated)
|
|
64
92
|
)
|
|
65
|
-
COHERE_CTX_CEILING_DEFAULT = 16384 # <
|
|
93
|
+
COHERE_CTX_CEILING_DEFAULT = 16384 # <16 GB: 16K (32 GB+ is the recommended floor)
|
|
66
94
|
|
|
67
95
|
|
|
68
96
|
def cohere_ctx_ceiling(ram_gb: int) -> int:
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
import json
|
|
4
|
+
import os
|
|
4
5
|
import re
|
|
5
6
|
from typing import Any, Iterator
|
|
6
7
|
|
|
@@ -10,6 +11,24 @@ from .config import RuntimeConfig
|
|
|
10
11
|
from .runtime_diffusion import _DiffusionMixin
|
|
11
12
|
|
|
12
13
|
|
|
14
|
+
def _thinking_budget_tokens() -> int:
|
|
15
|
+
"""Per-request reasoning-token budget sent to llama.cpp on thinking rounds.
|
|
16
|
+
|
|
17
|
+
8192 tokens ≈ 32K chars of genuine planning, but caps a degenerate phrase
|
|
18
|
+
before it eats the remaining 100K+ context. Overridable per deployment /
|
|
19
|
+
model family via LOCALCODE_THINKING_BUDGET; <= 0 disables the budget (falls
|
|
20
|
+
back to the Python-side char/time/periodicity guards only). Not yet
|
|
21
|
+
calibrated per model — see the open item to tune it against eval data.
|
|
22
|
+
"""
|
|
23
|
+
raw = os.environ.get("LOCALCODE_THINKING_BUDGET", "").strip()
|
|
24
|
+
if not raw:
|
|
25
|
+
return 8192
|
|
26
|
+
try:
|
|
27
|
+
return int(raw)
|
|
28
|
+
except ValueError:
|
|
29
|
+
return 8192
|
|
30
|
+
|
|
31
|
+
|
|
13
32
|
from .model_families import (
|
|
14
33
|
ModelFamily, get_adapter, infer_family_from_profile,
|
|
15
34
|
strip_thinking_tokens as _family_strip,
|
|
@@ -2190,6 +2209,25 @@ class LocalCodeRuntimeGateway(_DiffusionMixin):
|
|
|
2190
2209
|
# few hundred new tokens.
|
|
2191
2210
|
"cache_prompt": True,
|
|
2192
2211
|
}
|
|
2212
|
+
if think:
|
|
2213
|
+
# Bound the reasoning channel at the sampler, before the stream
|
|
2214
|
+
# reaches the Python-side runaway guards. The bundled llama.cpp
|
|
2215
|
+
# recognizes the active chat template's think tags and, when this
|
|
2216
|
+
# budget is exhausted, forces the matching end tag so the SAME
|
|
2217
|
+
# generation can proceed to text/tool calls. This preserves the
|
|
2218
|
+
# one-pass reasoning -> action protocol used by Codex, OpenCode,
|
|
2219
|
+
# and pi while adopting Claude Code's separately bounded thinking
|
|
2220
|
+
# budget. It is the primary transition mechanism; the streaming
|
|
2221
|
+
# char/time/periodicity checks remain compatibility backstops for
|
|
2222
|
+
# templates whose reasoning tags cannot be identified.
|
|
2223
|
+
#
|
|
2224
|
+
# 8K tokens is deliberately not a terse "reasoning quality" cap:
|
|
2225
|
+
# it allows roughly 32K chars of genuine planning, but prevents a
|
|
2226
|
+
# degenerate phrase from consuming the remaining 100K+ context.
|
|
2227
|
+
# Named + env-overridable (LOCALCODE_THINKING_BUDGET); <=0 omits it.
|
|
2228
|
+
_budget = _thinking_budget_tokens()
|
|
2229
|
+
if _budget > 0:
|
|
2230
|
+
payload["thinking_budget_tokens"] = _budget
|
|
2193
2231
|
# Forward the FULL vendor-recommended sampler (see _sampler_params).
|
|
2194
2232
|
# Previously top_k / top_p / presence_penalty were never sent (server
|
|
2195
2233
|
# defaults top_k=40 / top_p=0.95 stood) and min_p=0.0 was dropped as
|
|
@@ -80,6 +80,14 @@ def should_use_thinking(
|
|
|
80
80
|
if policy in {"0", "false", "no", "off", "none", ""}:
|
|
81
81
|
return False
|
|
82
82
|
if policy in {"1", "true", "yes", "on"}:
|
|
83
|
+
# `on` FORCES thinking on every round — it respects the user's explicit
|
|
84
|
+
# opt-in and never second-guesses it by stage. Stage is inferred from the
|
|
85
|
+
# last completed action, not what the next round must decide, so a round
|
|
86
|
+
# after a read/edit during `implement` may genuinely need reasoning;
|
|
87
|
+
# gating it off here would silently break the contract. Reasoning-loop
|
|
88
|
+
# prevention lives in the layers that don't lie about intent: the
|
|
89
|
+
# server-side thinking budget, the periodicity detector, and the
|
|
90
|
+
# verified no-thinking retry. Use `auto` for stage-aware reasoning.
|
|
83
91
|
return True
|
|
84
92
|
if policy == "legacy":
|
|
85
93
|
return runtime_mode.endswith("-think")
|
|
@@ -85,6 +85,11 @@ class LocalCodeTUI(App):
|
|
|
85
85
|
|
|
86
86
|
BINDINGS = [
|
|
87
87
|
Binding("ctrl+c", "copy_or_quit", "Copy/Quit", show=False, priority=True),
|
|
88
|
+
# Attach an image from the OS clipboard. Cmd+V can't be relied on for
|
|
89
|
+
# images: most terminals send NO paste event when the clipboard holds
|
|
90
|
+
# an image and no text, so the paste hook never fires. This dedicated
|
|
91
|
+
# key reads the clipboard directly, terminal-independent.
|
|
92
|
+
Binding("ctrl+g", "attach_image", "Attach image", show=False, priority=True),
|
|
88
93
|
]
|
|
89
94
|
|
|
90
95
|
SCREENS = {
|
|
@@ -395,6 +400,19 @@ class LocalCodeTUI(App):
|
|
|
395
400
|
if callable(_hint):
|
|
396
401
|
_hint()
|
|
397
402
|
|
|
403
|
+
def action_attach_image(self) -> None:
|
|
404
|
+
"""Ctrl+G: pull an image off the OS clipboard and attach it (works even
|
|
405
|
+
when the terminal won't deliver a Cmd+V paste event for an image)."""
|
|
406
|
+
screen = self.screen
|
|
407
|
+
handler = getattr(screen, "_attach_clipboard_image", None)
|
|
408
|
+
if callable(handler):
|
|
409
|
+
try:
|
|
410
|
+
if not handler():
|
|
411
|
+
log = screen.query_one("#chat-log")
|
|
412
|
+
log.append_info("[dim]No image on the clipboard — copy or screenshot one first.[/]")
|
|
413
|
+
except Exception:
|
|
414
|
+
pass
|
|
415
|
+
|
|
398
416
|
# Route bridge messages to the active screen
|
|
399
417
|
def on_agent_event(self, event: AgentEvent) -> None:
|
|
400
418
|
screen = self.screen
|