localcode 0.3.0__tar.gz → 0.3.1__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.0/src/localcode.egg-info → localcode-0.3.1}/PKG-INFO +1 -1
- {localcode-0.3.0 → localcode-0.3.1}/pyproject.toml +1 -1
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/__init__.py +1 -1
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/context.py +11 -4
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/loop.py +17 -2
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/prompts.py +1 -1
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/tool_orchestration.py +2 -1
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/app.py +0 -393
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/bootstrap.py +2 -572
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/cache.py +5 -3
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/checkpoint.py +18 -2
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/composer.py +12 -29
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/config.py +28 -18
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/entrypoint.py +9 -54
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/errors.py +3 -3
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/headless_json.py +3 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/history.py +15 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/models.py +0 -13
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/models_catalog.py +13 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/performance.py +14 -21
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/runtime.py +70 -407
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/runtime_diffusion.py +31 -2
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/server_manager.py +3 -3
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills.py +5 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/app.py +12 -56
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/screens/chat.py +215 -49
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/screens/model_picker.py +3 -2
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/screens/setup.py +14 -42
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/styles/app.tcss +9 -23
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/widgets/chat_log.py +35 -8
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/voice.py +4 -2
- {localcode-0.3.0 → localcode-0.3.1/src/localcode.egg-info}/PKG-INFO +1 -1
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode.egg-info/SOURCES.txt +0 -1
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_architecture.py +0 -12
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_bootstrap.py +0 -33
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_cli.py +9 -25
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_vision.py +1 -18
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_models_catalog.py +28 -9
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_runtime.py +61 -38
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_tui_input.py +136 -0
- localcode-0.3.0/src/localcode/tool_parsing.py +0 -367
- {localcode-0.3.0 → localcode-0.3.1}/LICENSE +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/MANIFEST.in +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/README.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/CMakePresets.json +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/LICENSE +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/arm64-apple-clang.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/arm64-windows-llvm.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/build-info.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/common.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/download-models.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/git-vars.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/license.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/llama-config.cmake.in +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/llama.pc.in +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/riscv64-spacemit-linux-gnu-gcc.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/cmake/x64-windows-llvm.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/arg.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/arg.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/base64.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-auto-parser.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-diff-analyzer.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-peg-parser.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat-peg-parser.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/chat.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/common.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/console.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/console.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/debug.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/debug.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/download.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/download.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/hf-cache.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/hf-cache.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/http.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/caps.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/caps.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/lexer.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/lexer.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/parser.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/parser.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/runtime.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/runtime.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/string.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/string.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/value.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/jinja/value.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/json-partial.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/json-partial.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/json-schema-to-grammar.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/llguidance.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/log.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/log.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/ngram-cache.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/ngram-cache.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/ngram-map.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/ngram-map.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/ngram-mod.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/ngram-mod.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/peg-parser.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/peg-parser.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/preset.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/preset.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/reasoning-budget.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/reasoning-budget.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/regex-partial.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/regex-partial.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/sampling.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/sampling.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/speculative.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/speculative.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/unicode.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/common/unicode.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-alloc.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-backend.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-blas.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-cann.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-cpp.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-cpu.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-cuda.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-hexagon.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-metal.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-opencl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-openvino.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-opt.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-rpc.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-sycl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-virtgpu.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-vulkan.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-webgpu.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-zdnn.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml-zendnn.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/ggml.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/include/gguf.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-alloc.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-backend-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-backend.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-blas/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch-fallback.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-gemm.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-mappings.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-msg.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/main.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/libdl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hexagon/op-desc.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-hip/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.metal +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-matrices.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-wht.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-musa/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-opt.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-quants.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-quants.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/backend.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/presets.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/quantize.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/quants.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/type.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-threading.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-threading.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-turbo-quant.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/common.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml.c +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/ggml.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/ggml/src/gguf.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/include/llama-cpp.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/include/llama.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/licenses/LICENSE-jsonhpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-adapter.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-adapter.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-arch.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-arch.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-batch.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-batch.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-chat.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-chat.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-context.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-context.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-cparams.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-cparams.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-ext.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-grammar.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-grammar.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-graph.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-graph.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-hparams.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-hparams.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-impl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-io.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-io.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-kv-cache-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-kv-cache-iswa.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-kv-cache.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-kv-cache.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-kv-cells.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory-hybrid.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory-hybrid.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory-recurrent.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory-recurrent.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-memory.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-mmap.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-mmap.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-model-loader.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-model-loader.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-model-saver.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-model-saver.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-model.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-model.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-quant.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-quant.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-sampler.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-sampler.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-vocab.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama-vocab.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/llama.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/afmoe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/apertus.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/arcee.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/arctic.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/arwkv7.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/baichuan.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/bailingmoe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/bailingmoe2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/bert.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/bitnet.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/bloom.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/chameleon.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/chatglm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/codeshell.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/cogvlm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/cohere2-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/command-r.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/dbrx.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/deci.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/deepseek.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/deepseek2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/delta-net-base.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/dots1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/dream.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/ernie4-5-moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/ernie4-5.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/eurobert.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/exaone-moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/exaone.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/exaone4.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/falcon-h1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/falcon.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gemma-embedding.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gemma.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gemma2-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gemma3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gemma3n-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gemma4-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/glm4-moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/glm4.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gpt2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/gptneox.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/granite-hybrid.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/granite.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/grok.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/grovemoe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/hunyuan-dense.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/hunyuan-moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/internlm2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/jais.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/jais2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/jamba.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/kimi-linear.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/lfm2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/llada-moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/llada.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/llama-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/llama.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/maincoder.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/mamba-base.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/mamba.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/mimo2-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/minicpm3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/minimax-m2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/mistral3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/models.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/modern-bert.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/mpt.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/nemotron-h.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/nemotron.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/neo-bert.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/olmo.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/olmo2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/olmoe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/openai-moe-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/openelm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/orion.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/paddleocr.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/pangu-embedded.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/phi2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/phi3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/plamo.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/plamo2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/plamo3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/plm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen2moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen2vl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen35.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen35moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen3moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen3next.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen3vl-moe.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/qwen3vl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/refact.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/rnd1.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/rwkv6-base.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/rwkv6.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/rwkv6qwen2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/rwkv7-base.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/rwkv7.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/seed-oss.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/smallthinker.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/smollm3.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/stablelm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/starcoder.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/starcoder2.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/step35-iswa.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/t5-dec.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/t5-enc.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/wavtokenizer-dec.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/models/xverse.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/turbo-rotation-data-32.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/turbo-rotation-data.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/unicode-data.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/unicode-data.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/unicode.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/src/unicode.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/batched-bench/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/batched-bench/batched-bench.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/cli/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/cli/cli.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/completion/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/completion/completion.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/cvector-generator/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/cvector-generator/cvector-generator.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/cvector-generator/mean.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/cvector-generator/pca.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/export-lora/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/export-lora/export-lora.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/fit-params/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/fit-params/fit-params.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/gguf-split/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/gguf-split/gguf-split.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/imatrix/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/imatrix/imatrix.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/llama-bench/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/llama-bench/llama-bench.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/clip-graph.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/clip-impl.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/clip-model.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/clip.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/clip.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/deprecation-warning.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/cogvlm.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/conformer.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/deepseekocr.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/gemma4v.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/glm4v.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/hunyuanocr.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/internvl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/kimik25.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/kimivl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/llama4.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/llava.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/minicpmv.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/mobilenetv5.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/models.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/nemotron-v2-vl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/paddleocr.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/pixtral.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/qwen2vl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/qwen3vl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/siglip.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/whisper-enc.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/models/youtuvl.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-cli.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-image.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd-image.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/mtmd/mtmd.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/parser/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/parser/debug-template-parser.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/parser/template-analysis.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/perplexity/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/perplexity/perplexity.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/quantize/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/quantize/quantize.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/results/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/results/results.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/rpc/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/rpc/rpc-server.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-common.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-common.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-context.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-context.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-cors-proxy.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-http.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-http.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-models.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-models.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-queue.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-queue.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-task.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-task.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-tools.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server-tools.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/server/server.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/tokenize/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/tokenize/tokenize.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/tts/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/tools/tts/tts.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/cpp-httplib/CMakeLists.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.cpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/miniaudio/miniaudio.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/nlohmann/json.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/nlohmann/json_fwd.hpp +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/sheredom/subprocess.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/llama-cpp-turboquant/vendor/stb/stb_image.h +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/setup.cfg +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/setup.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/__main__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/_subproc_env.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/app_tasks.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/constants.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/goal.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/helpers.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/hooks.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/prompt_context.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/recovery.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/sections.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/streaming.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/tool_execution.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/agent/turn_finalization.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/approvals.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/auto_compact.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/autonomy.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/bin/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/bin/llama-server +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/compact.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/compaction.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/context.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/display.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/embeddings.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/events.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/features.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/formatting.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/health.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/hf_quants.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/hooks.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/indexer.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/injection_defense.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/launcher.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/logging_utils.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/lsp.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/mcp/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/mcp/_bridge.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/mcp/_config.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/mcp/_transports.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/mcp/client.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/memory_guard.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/model_config.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/model_families.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/notebook.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/output.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/patching.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/paths.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/permissions.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/permissions_v2.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/plans.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/process_registry.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/recommendations.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/recovery.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/session.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/shell.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/debug.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/edit-verified.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/explain.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/git-commit-safely.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/locate.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/plan-task.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/review.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/skills/run-tests.md +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/snapshots.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/sounds.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/telemetry.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/theme.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/thermal.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/thinking.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tool_router.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/toolkit.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/agent.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/append_file.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/base.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/bash.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/edit_diff.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/edit_file.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/facts.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/glob_tool.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/grep.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/launch_app.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/list_files.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/multi_edit.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/plan_mode.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/read_file.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/skill_tool.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/web_fetch.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/web_search.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tools/write_file.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/bridge.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/screens/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/screens/mode_picker.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/styles/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/widgets/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/widgets/approval.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/widgets/messages/__init__.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/widgets/messages/diff.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/tui/widgets/voice_visualizer.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/turn_diff.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/undo.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode/verification.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode.egg-info/dependency_links.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode.egg-info/entry_points.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode.egg-info/requires.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/src/localcode.egg-info/top_level.txt +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_agent_event_regressions.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_checkpoint.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_churn_detection.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_compaction.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_agent.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_bg_download.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_binary.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_diffusion.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_download.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_hardening.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_install.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_machines.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_model_picker.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_models_matrix.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_tui.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_voice.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_comprehensive_whisper.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_config.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_context.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_context_pipeline_e2e.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_download.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_embeddings_retrieval.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_fresh_install.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_kv_cap.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_model_config.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_output.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_prompt_language_steering.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_real_models.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_run_json.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_subproc_env.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_thermal.py +0 -0
- {localcode-0.3.0 → localcode-0.3.1}/tests/test_toolkit.py +0 -0
|
@@ -412,7 +412,8 @@ def _redact_duplicate_reads(messages: list[dict]) -> list[dict]:
|
|
|
412
412
|
if not tc_id:
|
|
413
413
|
continue
|
|
414
414
|
try:
|
|
415
|
-
|
|
415
|
+
_raw = (tc.get("function") or {}).get("arguments") or "{}"
|
|
416
|
+
args = _raw if isinstance(_raw, dict) else json.loads(_raw)
|
|
416
417
|
except Exception:
|
|
417
418
|
continue
|
|
418
419
|
path = args.get("path")
|
|
@@ -629,7 +630,8 @@ def _compact_history_summary(messages: list[dict]) -> str:
|
|
|
629
630
|
fn = tc.get("function") or {}
|
|
630
631
|
name = str(fn.get("name") or "").strip()
|
|
631
632
|
try:
|
|
632
|
-
|
|
633
|
+
_raw = fn.get("arguments") or "{}"
|
|
634
|
+
args = _raw if isinstance(_raw, dict) else json.loads(_raw)
|
|
633
635
|
except Exception:
|
|
634
636
|
args = {}
|
|
635
637
|
path = args.get("path") or args.get("file_path")
|
|
@@ -769,8 +771,13 @@ def _compact_messages(messages: list[dict], out: "OutputManager") -> list[dict]:
|
|
|
769
771
|
fn = tc.get("function", {})
|
|
770
772
|
name = fn.get("name", "")
|
|
771
773
|
try:
|
|
772
|
-
|
|
773
|
-
|
|
774
|
+
# `arguments` may be a JSON string OR an already-decoded
|
|
775
|
+
# dict (some providers/parsers do that) — json.loads on a
|
|
776
|
+
# dict raises TypeError, which used to escape and kill the
|
|
777
|
+
# turn with E3102 during compaction.
|
|
778
|
+
_raw = fn.get("arguments", "{}")
|
|
779
|
+
args = _raw if isinstance(_raw, dict) else json.loads(_raw)
|
|
780
|
+
except (json.JSONDecodeError, TypeError, ValueError):
|
|
774
781
|
args = {}
|
|
775
782
|
if name in ("write_file", "append_file", "edit_file"):
|
|
776
783
|
files_modified.add(args.get("path", "?"))
|
|
@@ -24,6 +24,7 @@ you hit them.
|
|
|
24
24
|
from __future__ import annotations
|
|
25
25
|
|
|
26
26
|
import json
|
|
27
|
+
import os
|
|
27
28
|
import re
|
|
28
29
|
import sys
|
|
29
30
|
import time
|
|
@@ -1328,8 +1329,12 @@ def run_agent_loop(
|
|
|
1328
1329
|
fn = tc.get("function", {})
|
|
1329
1330
|
tool_name = fn.get("name", "unknown")
|
|
1330
1331
|
try:
|
|
1331
|
-
|
|
1332
|
-
|
|
1332
|
+
_raw_args = fn.get("arguments", "{}")
|
|
1333
|
+
# `arguments` is normally a JSON string, but some providers/
|
|
1334
|
+
# parsers hand back an already-decoded dict — json.loads on a
|
|
1335
|
+
# dict raises TypeError, which used to escape and crash the loop.
|
|
1336
|
+
args = _raw_args if isinstance(_raw_args, dict) else json.loads(_raw_args)
|
|
1337
|
+
except (json.JSONDecodeError, TypeError, ValueError):
|
|
1333
1338
|
args = {}
|
|
1334
1339
|
out.print_info(f"Warning: malformed args for {tool_name}")
|
|
1335
1340
|
|
|
@@ -1337,6 +1342,16 @@ def run_agent_loop(
|
|
|
1337
1342
|
stage = _tool_stage_label(tool_name, args)
|
|
1338
1343
|
out.set_stage(stage)
|
|
1339
1344
|
idx = out.log_tool(tool_name, _summarize_args(args))
|
|
1345
|
+
# RL trace fidelity: the normal `tool_start` event carries only a
|
|
1346
|
+
# summarized + 200-char-truncated arg preview. When capturing
|
|
1347
|
+
# trajectories for fine-tuning we need the FULL arguments (e.g. the
|
|
1348
|
+
# whole write_file body). Env-gated so normal TUI/headless runs are
|
|
1349
|
+
# unaffected; dev/rl/collect sets LOCALCODE_TRACE_FULL_ARGS=1.
|
|
1350
|
+
if os.environ.get("LOCALCODE_TRACE_FULL_ARGS"):
|
|
1351
|
+
out._emit_event(
|
|
1352
|
+
"tool_call_full", index=str(idx),
|
|
1353
|
+
name=tool_name, arguments=args,
|
|
1354
|
+
)
|
|
1340
1355
|
|
|
1341
1356
|
# Safety: confirm destructive commands (honors current autonomy
|
|
1342
1357
|
# level so /permissions toggles take effect immediately).
|
|
@@ -57,7 +57,7 @@ How to work:
|
|
|
57
57
|
- MATCH THE PROJECT'S LANGUAGE AND CONVENTIONS. Code MUST be valid for the file's actual language. Never write Python syntax (triple-quoted docstrings, snake_case, `import x`/`from x import y`) in a .ts/.tsx/.js/.jsx/.go/.rs or other non-Python file. Use that language's real comment, naming, and import/module syntax, and mirror the patterns already present in the project (imports, formatting, framework idioms).
|
|
58
58
|
- For new projects, create a small multi-file structure by default. Keep entrypoints thin; move reusable logic, styles, data/config, templates, and assets into focused files. Use one large file only if requested.
|
|
59
59
|
- Prefer edit_file for existing files. Use write_file when creating a new file or doing a deliberate full rewrite.
|
|
60
|
-
- When a tool returns an error, read it, fix the specific problem, and retry. Don't give up after one failed call.
|
|
60
|
+
- When a tool returns an error, read it, fix the specific problem, and retry with DIFFERENT input. Never repeat an identical failing call: if the same call fails or returns the same result twice, change the arguments or the approach, or move on — do not loop. Don't give up after one failed call, but don't spin on it either.
|
|
61
61
|
- DON'T CONFABULATE. If the user names a person, song, place, term, library, command, or concept you do not recognize, your FIRST move is to say "I don't recognize that" — NOT to invent a plausible-sounding meaning by phonetic association. Phonetic fits ("Alombasi sounds Bantu so it must be a Zambian chant", "Pyfoo sounds like a Python library so it must do X") are exactly the failure mode. If a web search would help, run it BEFORE asserting facts; if results are empty, say so plainly. Never write paragraph-length cultural/etymological/technical descriptions of something you can't actually source — "I'd love to know more, what's it from?" is the correct answer. Doubling down when the user repeats the unknown term is also forbidden; repetition is not evidence.
|
|
62
62
|
|
|
63
63
|
Runtime facts (true today; rely on these instead of guessing):
|
|
@@ -31,7 +31,8 @@ def prefetch_parallel_tool_calls(
|
|
|
31
31
|
fn = tc.get("function", {}) or {}
|
|
32
32
|
name = (fn.get("name", "") or "").strip()
|
|
33
33
|
try:
|
|
34
|
-
|
|
34
|
+
_raw = fn.get("arguments", "{}")
|
|
35
|
+
args = _raw if isinstance(_raw, dict) else json.loads(_raw)
|
|
35
36
|
except Exception:
|
|
36
37
|
continue
|
|
37
38
|
if not is_concurrency_safe(name, args):
|
|
@@ -744,399 +744,6 @@ class LocalCodeApp:
|
|
|
744
744
|
self._thinking_buffer = ""
|
|
745
745
|
self._thinking_revealed = 0
|
|
746
746
|
|
|
747
|
-
def _run_tool_loop_streaming(self, composed_messages: list[dict], stream: bool = True, _indicator: ThinkingIndicator | None = None) -> str:
|
|
748
|
-
"""Tool-calling loop with clean display."""
|
|
749
|
-
working_messages = composed_messages
|
|
750
|
-
|
|
751
|
-
# Route tools based on user message
|
|
752
|
-
user_text = ""
|
|
753
|
-
for msg in reversed(composed_messages):
|
|
754
|
-
if msg.get("role") == "user":
|
|
755
|
-
user_text = str(msg.get("content", ""))
|
|
756
|
-
break
|
|
757
|
-
routing = route_tools(
|
|
758
|
-
user_text,
|
|
759
|
-
self.toolkit.list_tool_names(),
|
|
760
|
-
conversation_history=self.session.messages[-4:],
|
|
761
|
-
online=is_online(),
|
|
762
|
-
)
|
|
763
|
-
if self.logger:
|
|
764
|
-
self.logger.log_user_input(user_text, intent=",".join(routing.intents))
|
|
765
|
-
if not routing.tool_names:
|
|
766
|
-
return self._run_stream_simple(composed_messages, stream)
|
|
767
|
-
if stream:
|
|
768
|
-
route_bits = ", ".join(routing.intents[:3]) or "chat"
|
|
769
|
-
tool_bits = ", ".join(routing.tool_names[:3])
|
|
770
|
-
self.out.print_info(f"route: {route_bits}")
|
|
771
|
-
if tool_bits:
|
|
772
|
-
self.out.print_info(f"tool lane: {tool_bits}")
|
|
773
|
-
|
|
774
|
-
ctx_size = self._select_task_context(user_text, routing.intents)
|
|
775
|
-
output_budget = self._select_task_output_budget(user_text, routing.intents)
|
|
776
|
-
|
|
777
|
-
# ── Speed optimization: speculative pre-execution ──
|
|
778
|
-
# Start running predicted tools NOW while model thinks
|
|
779
|
-
if hasattr(self, '_spec_executor'):
|
|
780
|
-
self._spec_executor.predict_and_prefetch(user_text, routing.tool_names)
|
|
781
|
-
|
|
782
|
-
# DIRECT FILE EDIT: if intent is edit and we can identify the file,
|
|
783
|
-
# skip the model tool-call loop entirely. Read file, ask model for
|
|
784
|
-
# updated content, write it. One shot. No multi-round failures.
|
|
785
|
-
# Also trigger if recent conversation was about editing a file
|
|
786
|
-
recent_edit_file = self._get_recent_edit_file()
|
|
787
|
-
is_question = "?" in user_text
|
|
788
|
-
is_edit_intent = ("file_edit" in routing.intents or "file_write" in routing.intents) and not is_question
|
|
789
|
-
is_followup_edit = (
|
|
790
|
-
bool(recent_edit_file)
|
|
791
|
-
and not is_edit_intent
|
|
792
|
-
and not is_question
|
|
793
|
-
and any(w in user_text.lower() for w in [
|
|
794
|
-
"add", "change", "remove", "update", "make",
|
|
795
|
-
"modify", "replace", "delete", "insert",
|
|
796
|
-
"improve", "fix", "refactor", "optimize", "rewrite",
|
|
797
|
-
"just", "dunno", "better", "clean",
|
|
798
|
-
])
|
|
799
|
-
)
|
|
800
|
-
if (is_edit_intent or is_followup_edit) and self.profile.feature_variant in ("compact", "balanced"):
|
|
801
|
-
if stream and (recent_edit_file if is_followup_edit else True):
|
|
802
|
-
target = recent_edit_file if is_followup_edit else "resolved from request"
|
|
803
|
-
self.out.print_info(f"edit path: direct file edit ({target})")
|
|
804
|
-
result = self._direct_file_edit(
|
|
805
|
-
user_text, stream,
|
|
806
|
-
force_file=recent_edit_file if is_followup_edit else None,
|
|
807
|
-
)
|
|
808
|
-
if result is not None:
|
|
809
|
-
return result
|
|
810
|
-
|
|
811
|
-
use_minimal = self.profile.feature_variant == "compact"
|
|
812
|
-
all_schemas = self.toolkit.schemas(minimal=use_minimal)
|
|
813
|
-
tools = [t for t in all_schemas if t["function"]["name"] in routing.tool_names]
|
|
814
|
-
# Use centralized output manager
|
|
815
|
-
out = self.out
|
|
816
|
-
|
|
817
|
-
try:
|
|
818
|
-
consecutive_errors = 0
|
|
819
|
-
last_tool_call = ""
|
|
820
|
-
max_rounds = 20 # safety cap — agent has none but we need one for local models
|
|
821
|
-
for _round in range(max_rounds):
|
|
822
|
-
thinking_parts: list[str] = []
|
|
823
|
-
content_parts: list[str] = []
|
|
824
|
-
tool_calls_found: list[dict] = []
|
|
825
|
-
content_started = False
|
|
826
|
-
round_started = time.time()
|
|
827
|
-
first_token_s: float | None = None
|
|
828
|
-
|
|
829
|
-
# ── Thinking mode ──
|
|
830
|
-
# Reasoning mode (/switch): think on every round
|
|
831
|
-
# Fast mode: never think
|
|
832
|
-
from .thinking import should_use_thinking
|
|
833
|
-
goal_type = infer_goal_state(user_text).goal_type
|
|
834
|
-
use_think = should_use_thinking(
|
|
835
|
-
self.config.runtime.laptop_26b_runtime_mode,
|
|
836
|
-
self.config.runtime.internal_thinking_mode,
|
|
837
|
-
goal_type=goal_type,
|
|
838
|
-
task_stage=getattr(getattr(self.session, "current_task", None), "current_stage", ""),
|
|
839
|
-
user_text=user_text,
|
|
840
|
-
)
|
|
841
|
-
round_budget = output_budget if _round == 0 else min(800, output_budget)
|
|
842
|
-
for event in self.engine.stream_chat_events(
|
|
843
|
-
working_messages,
|
|
844
|
-
tools=tools,
|
|
845
|
-
think=use_think,
|
|
846
|
-
num_ctx=ctx_size,
|
|
847
|
-
num_predict=round_budget,
|
|
848
|
-
):
|
|
849
|
-
if event["type"] == "thinking":
|
|
850
|
-
chunk = str(event["content"])
|
|
851
|
-
thinking_parts.append(chunk)
|
|
852
|
-
if stream:
|
|
853
|
-
out.feed_thinking(chunk)
|
|
854
|
-
peek = " ".join("".join(thinking_parts).split())[-120:]
|
|
855
|
-
if peek:
|
|
856
|
-
out.set_thinking_peek(peek)
|
|
857
|
-
elif event["type"] == "content":
|
|
858
|
-
chunk = str(event["content"])
|
|
859
|
-
# Filter special tokens
|
|
860
|
-
if "<|" in chunk or "|>" in chunk:
|
|
861
|
-
from .tool_parsing import parse_tool_calls as _ptc
|
|
862
|
-
parsed = _ptc(chunk)
|
|
863
|
-
if parsed.has_tools:
|
|
864
|
-
tool_calls_found = parsed.to_ollama_format()
|
|
865
|
-
break
|
|
866
|
-
import re as _re
|
|
867
|
-
chunk = _re.sub(r'<\|[^>]*\|>', '', chunk)
|
|
868
|
-
if not chunk.strip():
|
|
869
|
-
continue
|
|
870
|
-
if first_token_s is None:
|
|
871
|
-
first_token_s = time.time() - round_started
|
|
872
|
-
content_parts.append(chunk)
|
|
873
|
-
if stream:
|
|
874
|
-
out.stream(chunk)
|
|
875
|
-
content_started = True
|
|
876
|
-
elif event["type"] == "tool_calls":
|
|
877
|
-
tool_calls_found = event["tool_calls"]
|
|
878
|
-
break
|
|
879
|
-
|
|
880
|
-
thinking = "".join(thinking_parts)
|
|
881
|
-
content = "".join(content_parts).strip()
|
|
882
|
-
self._record_runtime_sample(first_token_s=first_token_s, total_s=time.time() - round_started)
|
|
883
|
-
self.stats.record(self.engine.last_response_meta)
|
|
884
|
-
|
|
885
|
-
# Check if content contains a text-format tool call (model output it as text)
|
|
886
|
-
if not tool_calls_found and content:
|
|
887
|
-
import re as _re
|
|
888
|
-
# Match: write_file(path='x', content='...') or similar
|
|
889
|
-
tc_match = _re.search(r'(write_file|read_file|edit_file|bash)\s*\(', content)
|
|
890
|
-
if tc_match:
|
|
891
|
-
from .tool_parsing import parse_tool_calls as _ptc
|
|
892
|
-
parsed = _ptc(content)
|
|
893
|
-
if parsed.has_tools:
|
|
894
|
-
tool_calls_found = parsed.to_ollama_format()
|
|
895
|
-
content = parsed.content # strip tool call from display
|
|
896
|
-
|
|
897
|
-
if not content_started and stream:
|
|
898
|
-
out.done()
|
|
899
|
-
|
|
900
|
-
if tool_calls_found:
|
|
901
|
-
# Dedup: don't repeat the same tool call
|
|
902
|
-
call_sig = str([(t.get("function",{}).get("name",""), t.get("function",{}).get("arguments","")) for t in tool_calls_found])
|
|
903
|
-
if call_sig == last_tool_call:
|
|
904
|
-
break
|
|
905
|
-
last_tool_call = call_sig
|
|
906
|
-
|
|
907
|
-
# Permission check + execute each tool
|
|
908
|
-
tool_messages = []
|
|
909
|
-
for tc in tool_calls_found:
|
|
910
|
-
f = tc.get("function", {})
|
|
911
|
-
name = f.get("name", "")
|
|
912
|
-
args = f.get("arguments", {})
|
|
913
|
-
if isinstance(args, str):
|
|
914
|
-
import json as _json
|
|
915
|
-
try: args = _json.loads(args)
|
|
916
|
-
except: args = {}
|
|
917
|
-
|
|
918
|
-
# Lifecycle hook: pre-tool
|
|
919
|
-
hook = self.hooks.on_pre_tool_use(name, args)
|
|
920
|
-
if hook.blocked:
|
|
921
|
-
if stream:
|
|
922
|
-
out.log_tool(name, f"BLOCKED by hook: {hook.output or hook.error}")
|
|
923
|
-
tool_messages.append({"role": "tool", "content": f"Blocked by hook: {hook.output or hook.error}"})
|
|
924
|
-
continue
|
|
925
|
-
|
|
926
|
-
allowed, reason = self.perms.check(name, args)
|
|
927
|
-
if not allowed:
|
|
928
|
-
if stream:
|
|
929
|
-
out.log_tool(name, f"SKIPPED: {reason}")
|
|
930
|
-
tool_messages.append({"role": "tool", "content": f"Denied: {reason}"})
|
|
931
|
-
continue
|
|
932
|
-
|
|
933
|
-
if stream:
|
|
934
|
-
out.log_tool(name, str(args)[:60])
|
|
935
|
-
# Check speculative cache first — instant if pre-fetched
|
|
936
|
-
spec_result = self._spec_executor.get_if_ready(name, args)
|
|
937
|
-
if spec_result is not None:
|
|
938
|
-
result = {"role": "tool", "content": spec_result}
|
|
939
|
-
else:
|
|
940
|
-
result = self.toolkit._execute_one(tc)
|
|
941
|
-
is_err = result["content"].startswith("Error") or result["content"].startswith("Tool error")
|
|
942
|
-
if stream:
|
|
943
|
-
out.tool_result(result["content"][:120], error=is_err)
|
|
944
|
-
if self.logger:
|
|
945
|
-
self.logger.log_tool_call(name, args, result["content"], duration_ms=0)
|
|
946
|
-
self.hooks.on_post_tool_use(name, args, result["content"], is_err)
|
|
947
|
-
# Track file changes for turn diff
|
|
948
|
-
if name in ("write_file", "edit_file") and "path" in args:
|
|
949
|
-
self.turn_tracker.track_file(str(args["path"]))
|
|
950
|
-
tool_messages.append(result)
|
|
951
|
-
|
|
952
|
-
# Check for errors — if too many consecutive, break and force-edit
|
|
953
|
-
all_errors = all(
|
|
954
|
-
m["content"].startswith("Error") or m["content"].startswith("Tool error")
|
|
955
|
-
for m in tool_messages
|
|
956
|
-
)
|
|
957
|
-
if all_errors:
|
|
958
|
-
consecutive_errors += 1
|
|
959
|
-
else:
|
|
960
|
-
consecutive_errors = 0
|
|
961
|
-
|
|
962
|
-
if stream:
|
|
963
|
-
for item in tool_messages:
|
|
964
|
-
is_err = item["content"].startswith("Error") or item["content"].startswith("Tool error")
|
|
965
|
-
out.tool_result(item["content"], error=is_err)
|
|
966
|
-
|
|
967
|
-
# If ANY file tool error, do the edit ourselves immediately
|
|
968
|
-
if consecutive_errors >= 1 and bool({"file_edit", "file_write"} & set(routing.intents)):
|
|
969
|
-
if stream:
|
|
970
|
-
ResponseDisplay.print_info("applying edit directly...")
|
|
971
|
-
# Find the file being edited
|
|
972
|
-
import re as _re
|
|
973
|
-
fpath = None
|
|
974
|
-
for tc in tool_calls_found:
|
|
975
|
-
args = tc.get("function", {}).get("arguments", {})
|
|
976
|
-
if "path" in args:
|
|
977
|
-
fpath = args["path"]
|
|
978
|
-
break
|
|
979
|
-
if not fpath:
|
|
980
|
-
fpath_match = _re.search(r'(\w+\.(?:py|js|ts|json|md|txt|html|css))', user_text + " " + thinking)
|
|
981
|
-
fpath = fpath_match.group(1) if fpath_match else None
|
|
982
|
-
if fpath and (self.repo_root / fpath).is_file():
|
|
983
|
-
old = (self.repo_root / fpath).read_text(errors="replace")
|
|
984
|
-
code_r = self.engine.chat_once([
|
|
985
|
-
{"role": "user", "content": f"Current {fpath}:\n```\n{old}\n```\n\nApply this change: {user_text}\n\nIMPORTANT: Make MINIMAL changes. Keep ALL existing code. Only modify what was requested.\nReturn the COMPLETE file with the small change applied. No explanation."}
|
|
986
|
-
])
|
|
987
|
-
new = code_r.get("message", {}).get("content", "").strip()
|
|
988
|
-
new = _re.sub(r'^```\w*\n', '', new)
|
|
989
|
-
new = _re.sub(r'\n```\s*$', '', new)
|
|
990
|
-
if new and new != old:
|
|
991
|
-
self.toolkit.changes.snapshot_before(fpath, "direct_edit")
|
|
992
|
-
(self.repo_root / fpath).write_text(new)
|
|
993
|
-
if stream:
|
|
994
|
-
out.log_tool("write_file", f"path={fpath}")
|
|
995
|
-
out.tool_result(f"Edited {fpath}")
|
|
996
|
-
return f"I've updated {fpath} with the requested changes."
|
|
997
|
-
break
|
|
998
|
-
|
|
999
|
-
if stream:
|
|
1000
|
-
out.start_thinking() # restart indicator for next round
|
|
1001
|
-
|
|
1002
|
-
working_messages = [
|
|
1003
|
-
*working_messages,
|
|
1004
|
-
{"role": "assistant", "content": content, "tool_calls": tool_calls_found},
|
|
1005
|
-
*tool_messages,
|
|
1006
|
-
{"role": "user", "content": f"Good. Now do the NEXT step. Original task: {user_text}"},
|
|
1007
|
-
]
|
|
1008
|
-
continue
|
|
1009
|
-
|
|
1010
|
-
# Force tool if model didn't call one but should have
|
|
1011
|
-
if _round <= 1 and not tool_calls_found:
|
|
1012
|
-
content_lower = content.lower()
|
|
1013
|
-
# Check if file write/edit was expected but not done
|
|
1014
|
-
file_intents = {"file_write", "file_edit"}
|
|
1015
|
-
file_tools_called = any(
|
|
1016
|
-
t.get("function", {}).get("name", "") in ("write_file", "edit_file")
|
|
1017
|
-
for t in tool_calls_found
|
|
1018
|
-
)
|
|
1019
|
-
should_force = (
|
|
1020
|
-
not content.strip() # empty response
|
|
1021
|
-
or any(p in content_lower for p in [
|
|
1022
|
-
"i do not have access", "i cannot", "i don't have",
|
|
1023
|
-
"i recommend using", "beyond my", "not able to",
|
|
1024
|
-
"i am unable", "i'm unable", "cannot directly",
|
|
1025
|
-
"i will now", "i will edit", "i will update", # says it will but didn't
|
|
1026
|
-
])
|
|
1027
|
-
or (bool(file_intents & set(routing.intents)) and not file_tools_called) # edit/write intent but no tool
|
|
1028
|
-
)
|
|
1029
|
-
if should_force and thinking:
|
|
1030
|
-
thinking_lower = thinking.lower()
|
|
1031
|
-
# Try each tool — match name or name with underscores replaced
|
|
1032
|
-
forced = False
|
|
1033
|
-
for ts in tools:
|
|
1034
|
-
tname = ts["function"]["name"]
|
|
1035
|
-
readable = tname.replace("_", " ")
|
|
1036
|
-
if tname in thinking_lower or readable in thinking_lower or f"`{tname}`" in thinking_lower:
|
|
1037
|
-
forced_args = self._extract_args_from_thinking(tname, thinking, user_text)
|
|
1038
|
-
if forced_args is None:
|
|
1039
|
-
import re as _re
|
|
1040
|
-
if tname in ("write_file", "edit_file"):
|
|
1041
|
-
# e2b can't call file tools — generate code, write ourselves
|
|
1042
|
-
path_match = _re.search(r'(\w+\.(?:py|js|ts|json|md|txt|html|css))', user_text + " " + thinking)
|
|
1043
|
-
fpath = path_match.group(1) if path_match else "output.py"
|
|
1044
|
-
existing = (self.repo_root / fpath)
|
|
1045
|
-
if existing.is_file() and tname == "edit_file":
|
|
1046
|
-
# Edit: ask model for the UPDATED version of the file
|
|
1047
|
-
old_content = existing.read_text(errors="replace")
|
|
1048
|
-
if stream:
|
|
1049
|
-
ResponseDisplay.print_info(f"generating edit for {fpath}...")
|
|
1050
|
-
code_r = self.engine.chat_once([
|
|
1051
|
-
{"role": "user", "content": f"Here is the current content of {fpath}:\n```\n{old_content}\n```\n\nModify it to: {user_text}\n\nReturn ONLY the complete updated file. No explanation."}
|
|
1052
|
-
])
|
|
1053
|
-
else:
|
|
1054
|
-
if stream:
|
|
1055
|
-
ResponseDisplay.print_info(f"generating code for {fpath}...")
|
|
1056
|
-
code_r = self.engine.chat_once([
|
|
1057
|
-
{"role": "user", "content": f"Write ONLY the code for {fpath}. No explanation, just the code. Task: {user_text}"}
|
|
1058
|
-
])
|
|
1059
|
-
code_content = code_r.get("message", {}).get("content", "").strip()
|
|
1060
|
-
code_content = _re.sub(r'^```\w*\n', '', code_content)
|
|
1061
|
-
code_content = _re.sub(r'\n```\s*$', '', code_content)
|
|
1062
|
-
if code_content:
|
|
1063
|
-
forced_args = {"path": fpath, "content": code_content}
|
|
1064
|
-
forced_calls = [{"function": {"name": "write_file", "arguments": forced_args}}]
|
|
1065
|
-
else:
|
|
1066
|
-
continue
|
|
1067
|
-
else:
|
|
1068
|
-
continue
|
|
1069
|
-
else:
|
|
1070
|
-
forced_calls = [{"function": {"name": tname, "arguments": forced_args}}]
|
|
1071
|
-
tool_msgs = self.toolkit.execute_tool_calls(forced_calls)
|
|
1072
|
-
if stream:
|
|
1073
|
-
out.log_tool(tname, str(forced_args)[:60])
|
|
1074
|
-
for item in tool_msgs:
|
|
1075
|
-
out.tool_result(item["content"])
|
|
1076
|
-
out.start_thinking() # restart indicator for next round
|
|
1077
|
-
working_messages = [
|
|
1078
|
-
*working_messages,
|
|
1079
|
-
{"role": "assistant", "content": "", "tool_calls": forced_calls},
|
|
1080
|
-
*tool_msgs,
|
|
1081
|
-
{"role": "user", "content": f"Good. Now do the NEXT step. Original task: {user_text}"},
|
|
1082
|
-
]
|
|
1083
|
-
forced = True
|
|
1084
|
-
break
|
|
1085
|
-
if forced and len(working_messages) > len(composed_messages):
|
|
1086
|
-
continue
|
|
1087
|
-
# Last resort: retry with ultra-short prompt (no system context)
|
|
1088
|
-
if not forced and not content.strip():
|
|
1089
|
-
retry_msgs = [
|
|
1090
|
-
{"role": "system", "content": "Use tools. Always call tools."},
|
|
1091
|
-
{"role": "user", "content": user_text},
|
|
1092
|
-
]
|
|
1093
|
-
r = self.engine.chat_once(retry_msgs, tools=tools)
|
|
1094
|
-
tc = r.get("message", {}).get("tool_calls", [])
|
|
1095
|
-
if tc:
|
|
1096
|
-
tool_msgs = self.toolkit.execute_tool_calls(tc)
|
|
1097
|
-
if stream:
|
|
1098
|
-
for t in tc:
|
|
1099
|
-
f = t.get("function", {})
|
|
1100
|
-
out.log_tool(f.get("name", ""), str(f.get("arguments", ""))[:60])
|
|
1101
|
-
for item in tool_msgs:
|
|
1102
|
-
out.tool_result(item["content"])
|
|
1103
|
-
out.start_thinking() # restart indicator for next round
|
|
1104
|
-
working_messages = [
|
|
1105
|
-
*working_messages,
|
|
1106
|
-
r["message"],
|
|
1107
|
-
*tool_msgs,
|
|
1108
|
-
{"role": "user", "content": f"Answer: {user_text}"},
|
|
1109
|
-
]
|
|
1110
|
-
continue
|
|
1111
|
-
content = r.get("message", {}).get("content", "")
|
|
1112
|
-
|
|
1113
|
-
# Auto-save: if response contains a code block with a filename, write it
|
|
1114
|
-
if content and "```" in content:
|
|
1115
|
-
import re as _re
|
|
1116
|
-
# Look for patterns like "save to pong.py" or "file named pong.py" in the text
|
|
1117
|
-
file_hint = _re.search(r'(?:save|file|named|called|create)\s+(?:it\s+(?:as|to)\s+)?[`*]*(\w+\.(?:py|js|ts|html|css|json|md|sh))[`*]*', content, _re.IGNORECASE)
|
|
1118
|
-
if file_hint:
|
|
1119
|
-
fname = file_hint.group(1)
|
|
1120
|
-
# Extract the code block
|
|
1121
|
-
code_match = _re.search(r'```(?:\w+)?\n(.*?)```', content, _re.DOTALL)
|
|
1122
|
-
if code_match:
|
|
1123
|
-
code = code_match.group(1).strip()
|
|
1124
|
-
if len(code) > 20:
|
|
1125
|
-
fpath = self.repo_root / fname
|
|
1126
|
-
self.toolkit.changes.snapshot_before(fname, "auto_write")
|
|
1127
|
-
fpath.parent.mkdir(parents=True, exist_ok=True)
|
|
1128
|
-
fpath.write_text(code)
|
|
1129
|
-
if stream:
|
|
1130
|
-
self.console.print(f"\n [green]✓[/] Auto-saved to {fname} ({len(code.splitlines())} lines)")
|
|
1131
|
-
|
|
1132
|
-
if stream:
|
|
1133
|
-
pass # output handled by out.done()
|
|
1134
|
-
return content
|
|
1135
|
-
|
|
1136
|
-
return ""
|
|
1137
|
-
finally:
|
|
1138
|
-
out.done()
|
|
1139
|
-
|
|
1140
747
|
def _get_recent_edit_file(self) -> str | None:
|
|
1141
748
|
"""Check if we recently edited/read a file (for follow-up edits)."""
|
|
1142
749
|
for event in reversed(self.session.events[-10:]):
|