localcode 0.3.29__tar.gz → 0.3.32__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.
Files changed (975) hide show
  1. {localcode-0.3.29/src/localcode.egg-info → localcode-0.3.32}/PKG-INFO +1 -1
  2. {localcode-0.3.29 → localcode-0.3.32}/pyproject.toml +1 -1
  3. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/constants.py +37 -32
  4. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/helpers.py +182 -3
  5. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/loop.py +10 -4
  6. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/bootstrap.py +56 -1
  7. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/features.py +7 -5
  8. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/hf_quants.py +26 -8
  9. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/hooks.py +89 -2
  10. localcode-0.3.32/src/localcode/model_delete.py +444 -0
  11. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/models_catalog.py +22 -10
  12. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/output.py +8 -0
  13. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/list_files.py +3 -1
  14. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/project_check.py +10 -5
  15. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/screens/chat.py +133 -15
  16. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/widgets/chat_log.py +75 -0
  17. {localcode-0.3.29 → localcode-0.3.32/src/localcode.egg-info}/PKG-INFO +1 -1
  18. {localcode-0.3.29 → localcode-0.3.32}/src/localcode.egg-info/SOURCES.txt +4 -0
  19. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_tui.py +41 -0
  20. localcode-0.3.32/tests/test_delete_command.py +289 -0
  21. localcode-0.3.32/tests/test_quant_browser_and_thinking.py +167 -0
  22. localcode-0.3.32/tests/test_security_hardening.py +259 -0
  23. {localcode-0.3.29 → localcode-0.3.32}/LICENSE +0 -0
  24. {localcode-0.3.29 → localcode-0.3.32}/MANIFEST.in +0 -0
  25. {localcode-0.3.29 → localcode-0.3.32}/README.md +0 -0
  26. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/CMakeLists.txt +0 -0
  27. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/CMakePresets.json +0 -0
  28. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/LICENSE +0 -0
  29. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/arm64-apple-clang.cmake +0 -0
  30. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/arm64-windows-llvm.cmake +0 -0
  31. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/build-info.cmake +0 -0
  32. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/common.cmake +0 -0
  33. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/download-models.cmake +0 -0
  34. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/git-vars.cmake +0 -0
  35. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/license.cmake +0 -0
  36. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/llama-config.cmake.in +0 -0
  37. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/llama.pc.in +0 -0
  38. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/riscv64-spacemit-linux-gnu-gcc.cmake +0 -0
  39. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/cmake/x64-windows-llvm.cmake +0 -0
  40. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/CMakeLists.txt +0 -0
  41. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/arg.cpp +0 -0
  42. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/arg.h +0 -0
  43. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/base64.hpp +0 -0
  44. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp +0 -0
  45. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp +0 -0
  46. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h +0 -0
  47. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-auto-parser.h +0 -0
  48. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-diff-analyzer.cpp +0 -0
  49. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-peg-parser.cpp +0 -0
  50. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat-peg-parser.h +0 -0
  51. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat.cpp +0 -0
  52. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/chat.h +0 -0
  53. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/common.cpp +0 -0
  54. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/common.h +0 -0
  55. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/console.cpp +0 -0
  56. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/console.h +0 -0
  57. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/debug.cpp +0 -0
  58. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/debug.h +0 -0
  59. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/download.cpp +0 -0
  60. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/download.h +0 -0
  61. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/hf-cache.cpp +0 -0
  62. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/hf-cache.h +0 -0
  63. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/http.h +0 -0
  64. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/caps.cpp +0 -0
  65. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/caps.h +0 -0
  66. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/lexer.cpp +0 -0
  67. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/lexer.h +0 -0
  68. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/parser.cpp +0 -0
  69. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/parser.h +0 -0
  70. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/runtime.cpp +0 -0
  71. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/runtime.h +0 -0
  72. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/string.cpp +0 -0
  73. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/string.h +0 -0
  74. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/utils.h +0 -0
  75. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/value.cpp +0 -0
  76. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/jinja/value.h +0 -0
  77. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/json-partial.cpp +0 -0
  78. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/json-partial.h +0 -0
  79. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp +0 -0
  80. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/json-schema-to-grammar.h +0 -0
  81. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/llguidance.cpp +0 -0
  82. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/log.cpp +0 -0
  83. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/log.h +0 -0
  84. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/ngram-cache.cpp +0 -0
  85. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/ngram-cache.h +0 -0
  86. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/ngram-map.cpp +0 -0
  87. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/ngram-map.h +0 -0
  88. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/ngram-mod.cpp +0 -0
  89. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/ngram-mod.h +0 -0
  90. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/peg-parser.cpp +0 -0
  91. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/peg-parser.h +0 -0
  92. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/preset.cpp +0 -0
  93. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/preset.h +0 -0
  94. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/reasoning-budget.cpp +0 -0
  95. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/reasoning-budget.h +0 -0
  96. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/regex-partial.cpp +0 -0
  97. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/regex-partial.h +0 -0
  98. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/sampling.cpp +0 -0
  99. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/sampling.h +0 -0
  100. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/speculative.cpp +0 -0
  101. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/speculative.h +0 -0
  102. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/unicode.cpp +0 -0
  103. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/common/unicode.h +0 -0
  104. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-alloc.h +0 -0
  105. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-backend.h +0 -0
  106. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-blas.h +0 -0
  107. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-cann.h +0 -0
  108. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-cpp.h +0 -0
  109. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-cpu.h +0 -0
  110. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-cuda.h +0 -0
  111. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-hexagon.h +0 -0
  112. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-metal.h +0 -0
  113. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-opencl.h +0 -0
  114. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-openvino.h +0 -0
  115. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-opt.h +0 -0
  116. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-rpc.h +0 -0
  117. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-sycl.h +0 -0
  118. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-virtgpu.h +0 -0
  119. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-vulkan.h +0 -0
  120. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-webgpu.h +0 -0
  121. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-zdnn.h +0 -0
  122. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml-zendnn.h +0 -0
  123. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/ggml.h +0 -0
  124. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/include/gguf.h +0 -0
  125. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/CMakeLists.txt +0 -0
  126. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-alloc.c +0 -0
  127. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.cpp +0 -0
  128. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.h +0 -0
  129. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-backend-impl.h +0 -0
  130. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-backend-reg.cpp +0 -0
  131. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-backend.cpp +0 -0
  132. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-blas/CMakeLists.txt +0 -0
  133. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
  134. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/CMakeLists.txt +0 -0
  135. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
  136. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.h +0 -0
  137. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
  138. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.h +0 -0
  139. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/common.h +0 -0
  140. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
  141. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-common.h +0 -0
  142. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
  143. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
  144. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.h +0 -0
  145. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/common.h +0 -0
  146. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
  147. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.h +0 -0
  148. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
  149. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
  150. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
  151. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
  152. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
  153. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
  154. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
  155. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
  156. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
  157. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
  158. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
  159. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
  160. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
  161. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
  162. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
  163. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch-fallback.h +0 -0
  164. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
  165. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.h +0 -0
  166. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
  167. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/common.h +0 -0
  168. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
  169. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
  170. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
  171. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.cpp +0 -0
  172. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.h +0 -0
  173. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
  174. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
  175. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
  176. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
  177. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
  178. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
  179. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.cpp +0 -0
  180. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.h +0 -0
  181. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.c +0 -0
  182. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.h +0 -0
  183. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.cpp +0 -0
  184. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.h +0 -0
  185. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-gemm.h +0 -0
  186. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-mappings.h +0 -0
  187. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
  188. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
  189. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
  190. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
  191. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.cpp +0 -0
  192. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.h +0 -0
  193. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
  194. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.h +0 -0
  195. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.cpp +0 -0
  196. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.h +0 -0
  197. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
  198. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
  199. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/hip.h +0 -0
  200. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/musa.h +0 -0
  201. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
  202. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
  203. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
  204. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
  205. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
  206. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
  207. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
  208. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
  209. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
  210. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
  211. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
  212. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
  213. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
  214. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
  215. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
  216. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
  217. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
  218. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
  219. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
  220. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
  221. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
  222. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-msg.h +0 -0
  223. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
  224. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
  225. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
  226. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
  227. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
  228. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
  229. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
  230. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
  231. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
  232. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
  233. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
  234. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
  235. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
  236. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
  237. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
  238. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/main.c +0 -0
  239. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
  240. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
  241. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
  242. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
  243. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
  244. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
  245. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
  246. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
  247. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
  248. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
  249. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
  250. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.h +0 -0
  251. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/libdl.h +0 -0
  252. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hexagon/op-desc.h +0 -0
  253. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-hip/CMakeLists.txt +0 -0
  254. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-impl.h +0 -0
  255. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/CMakeLists.txt +0 -0
  256. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
  257. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
  258. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
  259. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
  260. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
  261. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
  262. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
  263. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
  264. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
  265. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
  266. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
  267. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.metal +0 -0
  268. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-matrices.h +0 -0
  269. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-wht.h +0 -0
  270. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-musa/CMakeLists.txt +0 -0
  271. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
  272. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
  273. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
  274. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
  275. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
  276. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
  277. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
  278. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
  279. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
  280. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.h +0 -0
  281. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
  282. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
  283. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
  284. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
  285. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
  286. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
  287. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
  288. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
  289. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
  290. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
  291. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
  292. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
  293. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
  294. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
  295. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
  296. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
  297. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
  298. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
  299. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
  300. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
  301. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
  302. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
  303. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
  304. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
  305. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
  306. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.cpp +0 -0
  307. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.h +0 -0
  308. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
  309. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
  310. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
  311. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
  312. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
  313. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
  314. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
  315. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
  316. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.h +0 -0
  317. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.cpp +0 -0
  318. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.h +0 -0
  319. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-opt.cpp +0 -0
  320. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-quants.c +0 -0
  321. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-quants.h +0 -0
  322. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
  323. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
  324. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
  325. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.cpp +0 -0
  326. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.hpp +0 -0
  327. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/backend.hpp +0 -0
  328. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.cpp +0 -0
  329. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.hpp +0 -0
  330. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.cpp +0 -0
  331. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.hpp +0 -0
  332. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.cpp +0 -0
  333. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.hpp +0 -0
  334. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.cpp +0 -0
  335. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.hpp +0 -0
  336. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.cpp +0 -0
  337. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.hpp +0 -0
  338. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.cpp +0 -0
  339. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.hpp +0 -0
  340. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.cpp +0 -0
  341. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.hpp +0 -0
  342. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/dequantize.hpp +0 -0
  343. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.cpp +0 -0
  344. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.hpp +0 -0
  345. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
  346. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.cpp +0 -0
  347. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.hpp +0 -0
  348. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
  349. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
  350. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
  351. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
  352. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.cpp +0 -0
  353. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.hpp +0 -0
  354. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
  355. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
  356. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/gemm.hpp +0 -0
  357. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.cpp +0 -0
  358. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.hpp +0 -0
  359. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
  360. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.cpp +0 -0
  361. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.hpp +0 -0
  362. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.cpp +0 -0
  363. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.hpp +0 -0
  364. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.cpp +0 -0
  365. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.hpp +0 -0
  366. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.cpp +0 -0
  367. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.hpp +0 -0
  368. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.cpp +0 -0
  369. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.hpp +0 -0
  370. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.cpp +0 -0
  371. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.hpp +0 -0
  372. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.cpp +0 -0
  373. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.hpp +0 -0
  374. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
  375. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
  376. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/presets.hpp +0 -0
  377. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/quantize.hpp +0 -0
  378. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/quants.hpp +0 -0
  379. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
  380. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
  381. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.cpp +0 -0
  382. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.hpp +0 -0
  383. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.cpp +0 -0
  384. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.hpp +0 -0
  385. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.cpp +0 -0
  386. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.hpp +0 -0
  387. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.cpp +0 -0
  388. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.hpp +0 -0
  389. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.cpp +0 -0
  390. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.hpp +0 -0
  391. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
  392. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
  393. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
  394. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
  395. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
  396. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
  397. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
  398. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
  399. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
  400. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
  401. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
  402. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
  403. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
  404. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
  405. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
  406. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
  407. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
  408. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
  409. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
  410. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
  411. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
  412. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
  413. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
  414. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
  415. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
  416. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
  417. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
  418. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
  419. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
  420. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
  421. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
  422. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
  423. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
  424. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
  425. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
  426. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
  427. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
  428. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
  429. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
  430. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
  431. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
  432. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
  433. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
  434. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
  435. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
  436. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
  437. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
  438. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
  439. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
  440. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.cpp +0 -0
  441. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.hpp +0 -0
  442. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/type.hpp +0 -0
  443. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.cpp +0 -0
  444. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.hpp +0 -0
  445. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
  446. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.cpp +0 -0
  447. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.hpp +0 -0
  448. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-threading.cpp +0 -0
  449. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-threading.h +0 -0
  450. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-turbo-quant.c +0 -0
  451. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
  452. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
  453. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
  454. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
  455. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
  456. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
  457. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
  458. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
  459. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
  460. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
  461. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
  462. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
  463. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
  464. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
  465. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
  466. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
  467. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
  468. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
  469. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
  470. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
  471. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
  472. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
  473. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
  474. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
  475. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
  476. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
  477. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
  478. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
  479. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
  480. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
  481. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
  482. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
  483. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
  484. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
  485. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
  486. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
  487. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
  488. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
  489. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
  490. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
  491. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
  492. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
  493. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
  494. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
  495. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
  496. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
  497. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
  498. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
  499. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
  500. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/common.hpp +0 -0
  501. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
  502. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.cpp +0 -0
  503. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.hpp +0 -0
  504. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.cpp +0 -0
  505. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.hpp +0 -0
  506. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
  507. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
  508. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml.c +0 -0
  509. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/ggml.cpp +0 -0
  510. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/ggml/src/gguf.cpp +0 -0
  511. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/include/llama-cpp.h +0 -0
  512. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/include/llama.h +0 -0
  513. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/licenses/LICENSE-jsonhpp +0 -0
  514. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/CMakeLists.txt +0 -0
  515. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-adapter.cpp +0 -0
  516. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-adapter.h +0 -0
  517. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-arch.cpp +0 -0
  518. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-arch.h +0 -0
  519. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-batch.cpp +0 -0
  520. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-batch.h +0 -0
  521. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-chat.cpp +0 -0
  522. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-chat.h +0 -0
  523. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-context.cpp +0 -0
  524. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-context.h +0 -0
  525. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-cparams.cpp +0 -0
  526. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-cparams.h +0 -0
  527. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-ext.h +0 -0
  528. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-grammar.cpp +0 -0
  529. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-grammar.h +0 -0
  530. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-graph.cpp +0 -0
  531. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-graph.h +0 -0
  532. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-hparams.cpp +0 -0
  533. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-hparams.h +0 -0
  534. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-impl.cpp +0 -0
  535. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-impl.h +0 -0
  536. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-io.cpp +0 -0
  537. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-io.h +0 -0
  538. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-kv-cache-iswa.cpp +0 -0
  539. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-kv-cache-iswa.h +0 -0
  540. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-kv-cache.cpp +0 -0
  541. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-kv-cache.h +0 -0
  542. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-kv-cells.h +0 -0
  543. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.cpp +0 -0
  544. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.h +0 -0
  545. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory-hybrid.cpp +0 -0
  546. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory-hybrid.h +0 -0
  547. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory-recurrent.cpp +0 -0
  548. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory-recurrent.h +0 -0
  549. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory.cpp +0 -0
  550. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-memory.h +0 -0
  551. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-mmap.cpp +0 -0
  552. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-mmap.h +0 -0
  553. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-model-loader.cpp +0 -0
  554. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-model-loader.h +0 -0
  555. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-model-saver.cpp +0 -0
  556. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-model-saver.h +0 -0
  557. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-model.cpp +0 -0
  558. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-model.h +0 -0
  559. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-quant.cpp +0 -0
  560. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-quant.h +0 -0
  561. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-sampler.cpp +0 -0
  562. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-sampler.h +0 -0
  563. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-vocab.cpp +0 -0
  564. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama-vocab.h +0 -0
  565. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/llama.cpp +0 -0
  566. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/afmoe.cpp +0 -0
  567. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/apertus.cpp +0 -0
  568. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/arcee.cpp +0 -0
  569. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/arctic.cpp +0 -0
  570. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/arwkv7.cpp +0 -0
  571. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/baichuan.cpp +0 -0
  572. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/bailingmoe.cpp +0 -0
  573. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/bailingmoe2.cpp +0 -0
  574. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/bert.cpp +0 -0
  575. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/bitnet.cpp +0 -0
  576. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/bloom.cpp +0 -0
  577. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/chameleon.cpp +0 -0
  578. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/chatglm.cpp +0 -0
  579. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/codeshell.cpp +0 -0
  580. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/cogvlm.cpp +0 -0
  581. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/cohere2-iswa.cpp +0 -0
  582. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/command-r.cpp +0 -0
  583. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/dbrx.cpp +0 -0
  584. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/deci.cpp +0 -0
  585. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/deepseek.cpp +0 -0
  586. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/deepseek2.cpp +0 -0
  587. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/delta-net-base.cpp +0 -0
  588. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/dots1.cpp +0 -0
  589. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/dream.cpp +0 -0
  590. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/ernie4-5-moe.cpp +0 -0
  591. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/ernie4-5.cpp +0 -0
  592. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/eurobert.cpp +0 -0
  593. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/exaone-moe.cpp +0 -0
  594. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/exaone.cpp +0 -0
  595. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/exaone4.cpp +0 -0
  596. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/falcon-h1.cpp +0 -0
  597. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/falcon.cpp +0 -0
  598. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gemma-embedding.cpp +0 -0
  599. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gemma.cpp +0 -0
  600. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gemma2-iswa.cpp +0 -0
  601. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gemma3.cpp +0 -0
  602. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gemma3n-iswa.cpp +0 -0
  603. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gemma4-iswa.cpp +0 -0
  604. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/glm4-moe.cpp +0 -0
  605. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/glm4.cpp +0 -0
  606. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gpt2.cpp +0 -0
  607. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/gptneox.cpp +0 -0
  608. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/granite-hybrid.cpp +0 -0
  609. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/granite.cpp +0 -0
  610. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/grok.cpp +0 -0
  611. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/grovemoe.cpp +0 -0
  612. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/hunyuan-dense.cpp +0 -0
  613. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/hunyuan-moe.cpp +0 -0
  614. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/internlm2.cpp +0 -0
  615. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/jais.cpp +0 -0
  616. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/jais2.cpp +0 -0
  617. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/jamba.cpp +0 -0
  618. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/kimi-linear.cpp +0 -0
  619. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/lfm2.cpp +0 -0
  620. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/llada-moe.cpp +0 -0
  621. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/llada.cpp +0 -0
  622. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/llama-iswa.cpp +0 -0
  623. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/llama.cpp +0 -0
  624. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/maincoder.cpp +0 -0
  625. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/mamba-base.cpp +0 -0
  626. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/mamba.cpp +0 -0
  627. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/mimo2-iswa.cpp +0 -0
  628. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/minicpm3.cpp +0 -0
  629. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/minimax-m2.cpp +0 -0
  630. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/mistral3.cpp +0 -0
  631. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/models.h +0 -0
  632. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/modern-bert.cpp +0 -0
  633. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/mpt.cpp +0 -0
  634. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/nemotron-h.cpp +0 -0
  635. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/nemotron.cpp +0 -0
  636. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/neo-bert.cpp +0 -0
  637. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/olmo.cpp +0 -0
  638. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/olmo2.cpp +0 -0
  639. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/olmoe.cpp +0 -0
  640. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/openai-moe-iswa.cpp +0 -0
  641. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/openelm.cpp +0 -0
  642. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/orion.cpp +0 -0
  643. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/paddleocr.cpp +0 -0
  644. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/pangu-embedded.cpp +0 -0
  645. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/phi2.cpp +0 -0
  646. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/phi3.cpp +0 -0
  647. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/plamo.cpp +0 -0
  648. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/plamo2.cpp +0 -0
  649. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/plamo3.cpp +0 -0
  650. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/plm.cpp +0 -0
  651. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen.cpp +0 -0
  652. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen2.cpp +0 -0
  653. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen2moe.cpp +0 -0
  654. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen2vl.cpp +0 -0
  655. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen3.cpp +0 -0
  656. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen35.cpp +0 -0
  657. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen35moe.cpp +0 -0
  658. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen3moe.cpp +0 -0
  659. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen3next.cpp +0 -0
  660. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen3vl-moe.cpp +0 -0
  661. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/qwen3vl.cpp +0 -0
  662. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/refact.cpp +0 -0
  663. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/rnd1.cpp +0 -0
  664. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/rwkv6-base.cpp +0 -0
  665. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/rwkv6.cpp +0 -0
  666. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/rwkv6qwen2.cpp +0 -0
  667. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/rwkv7-base.cpp +0 -0
  668. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/rwkv7.cpp +0 -0
  669. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/seed-oss.cpp +0 -0
  670. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/smallthinker.cpp +0 -0
  671. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/smollm3.cpp +0 -0
  672. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/stablelm.cpp +0 -0
  673. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/starcoder.cpp +0 -0
  674. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/starcoder2.cpp +0 -0
  675. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/step35-iswa.cpp +0 -0
  676. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/t5-dec.cpp +0 -0
  677. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/t5-enc.cpp +0 -0
  678. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/wavtokenizer-dec.cpp +0 -0
  679. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/models/xverse.cpp +0 -0
  680. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/turbo-rotation-data-32.h +0 -0
  681. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/turbo-rotation-data.h +0 -0
  682. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/unicode-data.cpp +0 -0
  683. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/unicode-data.h +0 -0
  684. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/unicode.cpp +0 -0
  685. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/src/unicode.h +0 -0
  686. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/CMakeLists.txt +0 -0
  687. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/batched-bench/CMakeLists.txt +0 -0
  688. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/batched-bench/batched-bench.cpp +0 -0
  689. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/cli/CMakeLists.txt +0 -0
  690. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/cli/cli.cpp +0 -0
  691. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/completion/CMakeLists.txt +0 -0
  692. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/completion/completion.cpp +0 -0
  693. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/cvector-generator/CMakeLists.txt +0 -0
  694. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/cvector-generator/cvector-generator.cpp +0 -0
  695. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/cvector-generator/mean.hpp +0 -0
  696. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/cvector-generator/pca.hpp +0 -0
  697. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/export-lora/CMakeLists.txt +0 -0
  698. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/export-lora/export-lora.cpp +0 -0
  699. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/fit-params/CMakeLists.txt +0 -0
  700. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/fit-params/fit-params.cpp +0 -0
  701. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/gguf-split/CMakeLists.txt +0 -0
  702. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/gguf-split/gguf-split.cpp +0 -0
  703. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/imatrix/CMakeLists.txt +0 -0
  704. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/imatrix/imatrix.cpp +0 -0
  705. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/llama-bench/CMakeLists.txt +0 -0
  706. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/llama-bench/llama-bench.cpp +0 -0
  707. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/CMakeLists.txt +0 -0
  708. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/clip-graph.h +0 -0
  709. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/clip-impl.h +0 -0
  710. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/clip-model.h +0 -0
  711. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/clip.cpp +0 -0
  712. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/clip.h +0 -0
  713. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.cpp +0 -0
  714. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.h +0 -0
  715. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/deprecation-warning.cpp +0 -0
  716. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/cogvlm.cpp +0 -0
  717. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/conformer.cpp +0 -0
  718. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/deepseekocr.cpp +0 -0
  719. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/gemma4v.cpp +0 -0
  720. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/glm4v.cpp +0 -0
  721. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/hunyuanocr.cpp +0 -0
  722. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/internvl.cpp +0 -0
  723. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/kimik25.cpp +0 -0
  724. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/kimivl.cpp +0 -0
  725. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/llama4.cpp +0 -0
  726. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/llava.cpp +0 -0
  727. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/minicpmv.cpp +0 -0
  728. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/mobilenetv5.cpp +0 -0
  729. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/models.h +0 -0
  730. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/nemotron-v2-vl.cpp +0 -0
  731. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/paddleocr.cpp +0 -0
  732. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/pixtral.cpp +0 -0
  733. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/qwen2vl.cpp +0 -0
  734. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/qwen3vl.cpp +0 -0
  735. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/siglip.cpp +0 -0
  736. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/whisper-enc.cpp +0 -0
  737. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/models/youtuvl.cpp +0 -0
  738. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.cpp +0 -0
  739. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.h +0 -0
  740. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-cli.cpp +0 -0
  741. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.cpp +0 -0
  742. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.h +0 -0
  743. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-image.cpp +0 -0
  744. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd-image.h +0 -0
  745. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd.cpp +0 -0
  746. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/mtmd/mtmd.h +0 -0
  747. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/parser/CMakeLists.txt +0 -0
  748. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/parser/debug-template-parser.cpp +0 -0
  749. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/parser/template-analysis.cpp +0 -0
  750. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/perplexity/CMakeLists.txt +0 -0
  751. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/perplexity/perplexity.cpp +0 -0
  752. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/quantize/CMakeLists.txt +0 -0
  753. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/quantize/quantize.cpp +0 -0
  754. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/results/CMakeLists.txt +0 -0
  755. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/results/results.cpp +0 -0
  756. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/rpc/CMakeLists.txt +0 -0
  757. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/rpc/rpc-server.cpp +0 -0
  758. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/CMakeLists.txt +0 -0
  759. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-common.cpp +0 -0
  760. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-common.h +0 -0
  761. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-context.cpp +0 -0
  762. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-context.h +0 -0
  763. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-cors-proxy.h +0 -0
  764. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-http.cpp +0 -0
  765. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-http.h +0 -0
  766. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-models.cpp +0 -0
  767. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-models.h +0 -0
  768. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-queue.cpp +0 -0
  769. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-queue.h +0 -0
  770. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-task.cpp +0 -0
  771. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-task.h +0 -0
  772. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-tools.cpp +0 -0
  773. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server-tools.h +0 -0
  774. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/server/server.cpp +0 -0
  775. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/tokenize/CMakeLists.txt +0 -0
  776. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/tokenize/tokenize.cpp +0 -0
  777. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/tts/CMakeLists.txt +0 -0
  778. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/tools/tts/tts.cpp +0 -0
  779. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/cpp-httplib/CMakeLists.txt +0 -0
  780. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.cpp +0 -0
  781. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.h +0 -0
  782. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/miniaudio/miniaudio.h +0 -0
  783. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/nlohmann/json.hpp +0 -0
  784. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/nlohmann/json_fwd.hpp +0 -0
  785. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/sheredom/subprocess.h +0 -0
  786. {localcode-0.3.29 → localcode-0.3.32}/llama-cpp-turboquant/vendor/stb/stb_image.h +0 -0
  787. {localcode-0.3.29 → localcode-0.3.32}/setup.cfg +0 -0
  788. {localcode-0.3.29 → localcode-0.3.32}/setup.py +0 -0
  789. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/__init__.py +0 -0
  790. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/__main__.py +0 -0
  791. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/_subproc_env.py +0 -0
  792. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/__init__.py +0 -0
  793. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/app_tasks.py +0 -0
  794. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/context.py +0 -0
  795. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/goal.py +0 -0
  796. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/hooks.py +0 -0
  797. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/prompt_context.py +0 -0
  798. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/prompts.py +0 -0
  799. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/recovery.py +0 -0
  800. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/sections.py +0 -0
  801. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/state_machine.py +0 -0
  802. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/streaming.py +0 -0
  803. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/tool_execution.py +0 -0
  804. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/tool_orchestration.py +0 -0
  805. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/agent/turn_finalization.py +0 -0
  806. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/app.py +0 -0
  807. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/approvals.py +0 -0
  808. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/auto_compact.py +0 -0
  809. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/autonomy.py +0 -0
  810. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/bin/__init__.py +0 -0
  811. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/bin/llama-server +0 -0
  812. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/cache.py +0 -0
  813. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/checkpoint.py +0 -0
  814. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/compact.py +0 -0
  815. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/compaction.py +0 -0
  816. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/composer.py +0 -0
  817. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/config.py +0 -0
  818. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/context.py +0 -0
  819. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/display.py +0 -0
  820. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/embeddings.py +0 -0
  821. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/entrypoint.py +0 -0
  822. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/errors.py +0 -0
  823. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/events.py +0 -0
  824. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/evidence.py +0 -0
  825. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/execution_policy.py +0 -0
  826. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/formatting.py +0 -0
  827. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/headless_json.py +0 -0
  828. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/health.py +0 -0
  829. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/history.py +0 -0
  830. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/indexer.py +0 -0
  831. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/injection_defense.py +0 -0
  832. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/launcher.py +0 -0
  833. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/logging_utils.py +0 -0
  834. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/lsp.py +0 -0
  835. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/mcp/__init__.py +0 -0
  836. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/mcp/_bridge.py +0 -0
  837. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/mcp/_config.py +0 -0
  838. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/mcp/_transports.py +0 -0
  839. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/mcp/client.py +0 -0
  840. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/memory_guard.py +0 -0
  841. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/model_config.py +0 -0
  842. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/model_families.py +0 -0
  843. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/models.py +0 -0
  844. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/notebook.py +0 -0
  845. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/patching.py +0 -0
  846. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/paths.py +0 -0
  847. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/performance.py +0 -0
  848. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/permissions.py +0 -0
  849. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/permissions_v2.py +0 -0
  850. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/plans.py +0 -0
  851. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/process_registry.py +0 -0
  852. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/recommendations.py +0 -0
  853. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/recovery.py +0 -0
  854. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/runtime.py +0 -0
  855. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/runtime_diffusion.py +0 -0
  856. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/server_manager.py +0 -0
  857. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/session.py +0 -0
  858. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/shell.py +0 -0
  859. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/debug.md +0 -0
  860. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/edit-verified.md +0 -0
  861. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/explain.md +0 -0
  862. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/finish-verified.md +0 -0
  863. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/git-commit-safely.md +0 -0
  864. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/locate.md +0 -0
  865. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/plan-task.md +0 -0
  866. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/review.md +0 -0
  867. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills/run-tests.md +0 -0
  868. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/skills.py +0 -0
  869. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/snapshots.py +0 -0
  870. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/sounds.py +0 -0
  871. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/telemetry.py +0 -0
  872. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/theme.py +0 -0
  873. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/thermal.py +0 -0
  874. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/thinking.py +0 -0
  875. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tool_router.py +0 -0
  876. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/toolkit.py +0 -0
  877. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/__init__.py +0 -0
  878. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/agent.py +0 -0
  879. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/append_file.py +0 -0
  880. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/background_process.py +0 -0
  881. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/base.py +0 -0
  882. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/bash.py +0 -0
  883. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/code_navigation.py +0 -0
  884. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/edit_diff.py +0 -0
  885. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/edit_file.py +0 -0
  886. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/facts.py +0 -0
  887. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/glob_tool.py +0 -0
  888. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/grep.py +0 -0
  889. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/launch_app.py +0 -0
  890. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/multi_edit.py +0 -0
  891. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/plan_mode.py +0 -0
  892. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/read_file.py +0 -0
  893. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/read_state.py +0 -0
  894. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/skill_tool.py +0 -0
  895. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/syntax_check.py +0 -0
  896. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/todo_write.py +0 -0
  897. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/tool_call_repair.py +0 -0
  898. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/web_fetch.py +0 -0
  899. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/web_search.py +0 -0
  900. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tools/write_file.py +0 -0
  901. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/__init__.py +0 -0
  902. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/app.py +0 -0
  903. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/bridge.py +0 -0
  904. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/clipboard_image.py +0 -0
  905. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/paste_collapse.py +0 -0
  906. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/screens/__init__.py +0 -0
  907. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/screens/mode_picker.py +0 -0
  908. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/screens/model_picker.py +0 -0
  909. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/screens/setup.py +0 -0
  910. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/styles/__init__.py +0 -0
  911. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/styles/app.tcss +0 -0
  912. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/widgets/__init__.py +0 -0
  913. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/widgets/approval.py +0 -0
  914. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/widgets/messages/__init__.py +0 -0
  915. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/widgets/messages/diff.py +0 -0
  916. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/tui/widgets/voice_visualizer.py +0 -0
  917. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/turn_diff.py +0 -0
  918. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/undo.py +0 -0
  919. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/verification.py +0 -0
  920. {localcode-0.3.29 → localcode-0.3.32}/src/localcode/voice.py +0 -0
  921. {localcode-0.3.29 → localcode-0.3.32}/src/localcode.egg-info/dependency_links.txt +0 -0
  922. {localcode-0.3.29 → localcode-0.3.32}/src/localcode.egg-info/entry_points.txt +0 -0
  923. {localcode-0.3.29 → localcode-0.3.32}/src/localcode.egg-info/requires.txt +0 -0
  924. {localcode-0.3.29 → localcode-0.3.32}/src/localcode.egg-info/top_level.txt +0 -0
  925. {localcode-0.3.29 → localcode-0.3.32}/tests/test_agent_event_regressions.py +0 -0
  926. {localcode-0.3.29 → localcode-0.3.32}/tests/test_agent_state_machine.py +0 -0
  927. {localcode-0.3.29 → localcode-0.3.32}/tests/test_architecture.py +0 -0
  928. {localcode-0.3.29 → localcode-0.3.32}/tests/test_bootstrap.py +0 -0
  929. {localcode-0.3.29 → localcode-0.3.32}/tests/test_checkpoint.py +0 -0
  930. {localcode-0.3.29 → localcode-0.3.32}/tests/test_churn_detection.py +0 -0
  931. {localcode-0.3.29 → localcode-0.3.32}/tests/test_clipboard_image.py +0 -0
  932. {localcode-0.3.29 → localcode-0.3.32}/tests/test_code_navigation_and_processes.py +0 -0
  933. {localcode-0.3.29 → localcode-0.3.32}/tests/test_compaction.py +0 -0
  934. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_agent.py +0 -0
  935. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_bg_download.py +0 -0
  936. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_binary.py +0 -0
  937. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_cli.py +0 -0
  938. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_diffusion.py +0 -0
  939. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_download.py +0 -0
  940. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_hardening.py +0 -0
  941. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_install.py +0 -0
  942. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_machines.py +0 -0
  943. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_model_picker.py +0 -0
  944. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_models_matrix.py +0 -0
  945. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_vision.py +0 -0
  946. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_voice.py +0 -0
  947. {localcode-0.3.29 → localcode-0.3.32}/tests/test_comprehensive_whisper.py +0 -0
  948. {localcode-0.3.29 → localcode-0.3.32}/tests/test_config.py +0 -0
  949. {localcode-0.3.29 → localcode-0.3.32}/tests/test_context.py +0 -0
  950. {localcode-0.3.29 → localcode-0.3.32}/tests/test_context_pipeline_e2e.py +0 -0
  951. {localcode-0.3.29 → localcode-0.3.32}/tests/test_download.py +0 -0
  952. {localcode-0.3.29 → localcode-0.3.32}/tests/test_edit_guard_and_fuzzy.py +0 -0
  953. {localcode-0.3.29 → localcode-0.3.32}/tests/test_embeddings_retrieval.py +0 -0
  954. {localcode-0.3.29 → localcode-0.3.32}/tests/test_evidence_and_lifecycle_hooks.py +0 -0
  955. {localcode-0.3.29 → localcode-0.3.32}/tests/test_execution_policies.py +0 -0
  956. {localcode-0.3.29 → localcode-0.3.32}/tests/test_fresh_install.py +0 -0
  957. {localcode-0.3.29 → localcode-0.3.32}/tests/test_home_build_anchor.py +0 -0
  958. {localcode-0.3.29 → localcode-0.3.32}/tests/test_kv_cap.py +0 -0
  959. {localcode-0.3.29 → localcode-0.3.32}/tests/test_loop_recovery_ladder.py +0 -0
  960. {localcode-0.3.29 → localcode-0.3.32}/tests/test_model_config.py +0 -0
  961. {localcode-0.3.29 → localcode-0.3.32}/tests/test_models_catalog.py +0 -0
  962. {localcode-0.3.29 → localcode-0.3.32}/tests/test_not_found_recovery.py +0 -0
  963. {localcode-0.3.29 → localcode-0.3.32}/tests/test_output.py +0 -0
  964. {localcode-0.3.29 → localcode-0.3.32}/tests/test_paste_collapse.py +0 -0
  965. {localcode-0.3.29 → localcode-0.3.32}/tests/test_path_healing.py +0 -0
  966. {localcode-0.3.29 → localcode-0.3.32}/tests/test_prompt_language_steering.py +0 -0
  967. {localcode-0.3.29 → localcode-0.3.32}/tests/test_real_models.py +0 -0
  968. {localcode-0.3.29 → localcode-0.3.32}/tests/test_run_json.py +0 -0
  969. {localcode-0.3.29 → localcode-0.3.32}/tests/test_runtime.py +0 -0
  970. {localcode-0.3.29 → localcode-0.3.32}/tests/test_subproc_env.py +0 -0
  971. {localcode-0.3.29 → localcode-0.3.32}/tests/test_syntax_check.py +0 -0
  972. {localcode-0.3.29 → localcode-0.3.32}/tests/test_task_statement_pinning.py +0 -0
  973. {localcode-0.3.29 → localcode-0.3.32}/tests/test_thermal.py +0 -0
  974. {localcode-0.3.29 → localcode-0.3.32}/tests/test_toolkit.py +0 -0
  975. {localcode-0.3.29 → localcode-0.3.32}/tests/test_tui_input.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: localcode
3
- Version: 0.3.29
3
+ Version: 0.3.32
4
4
  Summary: High-performance AI coding on consumer hardware.
5
5
  Author: LocalCode contributors
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "localcode"
7
- version = "0.3.29"
7
+ version = "0.3.32"
8
8
  description = "High-performance AI coding on consumer hardware."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -67,24 +67,26 @@ this; interactive sessions don't)."""
67
67
 
68
68
  MAX_OUTPUT_TOKENS = -1
69
69
  """Per-round generation cap. -1 = unlimited; the model stops at its
70
- natural EOS. Capping mid-stream truncates valid tool-call JSON into
71
- unparseable garbage, which then triggers a useless recovery round. A
72
- prior 5.8-minute round burn was caused by an 8192 cap chopping a
73
- long-but-valid write_file call.
74
-
75
- The system-level `--ctx-size 32768` is the absolute ceiling: prompt
76
- + generation cannot exceed it, so the model can't run forever even
77
- without a per-round cap. With prompts in the 5-8K-token range, that
78
- leaves ~24-27K tokens of generation headroom enough for any
79
- single source file we'd reasonably emit in one call.
80
-
81
- Historical note: bumped from -1 8192 on 2026-04-26 after a
82
- 36-minute turn died with HTTP 500 when the model emitted a 42K-token
83
- edit_file dict-literal that filled the (then 64K) context mid-decode.
84
- That regression is no longer reachable — ctx-size is now 32768, the
85
- mid-stream tool-arg watchdog has been gutted to a 180K hard ceiling
86
- only, and the model's natural EOS lands well inside the budget for
87
- normal file writes."""
70
+ natural EOS. This stays -1 deliberately: capping mid-stream truncates
71
+ valid tool-call JSON into unparseable garbage, which then triggers a
72
+ useless recovery round. A prior 5.8-minute round burn was caused by an
73
+ 8192 cap chopping a long-but-valid write_file call. So a small per-round
74
+ token cap is the WRONG lever.
75
+
76
+ The runaway backstop is NOT ctx-size. An earlier version of this note
77
+ claimed `--ctx-size 32768` bounded prompt+generation so "the model can't
78
+ run forever" that is FALSE for long-context models. LocalCode launches
79
+ Qwen (262K trained) with `--ctx-size 131072`; a 6K-token prompt then
80
+ leaves ~125K tokens of generation headroom ≈ ~28 minutes of nonstop
81
+ decode. A real 40-minute / no-output hang (thinking on, no answer emitted)
82
+ was traced to exactly this.
83
+
84
+ The correct backstop is the thinking runaway-guard (Feature.THINKING_CAPS
85
+ + MAX_THINKING_SECONDS / MAX_THINKING_CHARS): it aborts a reasoning-only
86
+ phase at 10 min / ~20k tokens regardless of ctx-size, well before the
87
+ context ceiling, and surfaces a clear message. That is why the cap was
88
+ re-enabled 2026-07-19. Leaving MAX_OUTPUT_TOKENS at -1 keeps valid long
89
+ tool calls intact while the thinking guard handles the runaway case."""
88
90
 
89
91
 
90
92
  # ── Thinking-phase safety caps ──────────────────────────────────────
@@ -94,21 +96,24 @@ normal file writes."""
94
96
  # `_thinking_abort`, which surfaces a clear user message and ends
95
97
  # the turn.
96
98
  #
97
- # Previously only the time cap existed, at 300 s which a user
98
- # watching a screen experiences as "frozen for 5 minutes." 90 s is
99
- # still generous enough for a genuine slow-reason path on IQ2_M
100
- # (~27 tok/s decode ~2400 reasoning tokens) but roughly
101
- # snappier to bail out.
99
+ # These are a RUNAWAY guard, not a reasoning budget. The earlier tight
100
+ # values (90 s / 4000 chars 1000 tokens) aborted legitimate long
101
+ # reasoning and were disabled 2026-04-27 (see features.THINKING_CAPS).
102
+ # They are re-enabled now with far more generous bounds after a real
103
+ # 29-minute / 94.8k-token runaway on Qwen Q8 with thinking on: the
104
+ # cap must never touch normal reasoning, only a pathological loop.
102
105
  #
103
- # The character cap catches the other failure mode: the model
104
- # produces reasoning tokens FAST (not slow) but endlessly — tree
105
- # diagrams, vocabulary lists, full SPAs drafted inline. Rule 23 in
106
- # the system prompt bans those, but IQ2 compliance is imperfect;
107
- # 4000 chars ≈ 45 lines ≈ the point where reasoning has clearly
108
- # exceeded any legit planning budget.
109
-
110
- MAX_THINKING_SECONDS = 90
111
- MAX_THINKING_CHARS = 4000
106
+ # * 600 s (10 min): a genuine slow-reason path on a heavy Q8 model
107
+ # (~50-75 tok/s) fits comfortably; a 29-minute loop does not.
108
+ # * 80000 chars (~20k reasoning tokens): well above any legitimate
109
+ # planning trace; the observed runaway was ~380k chars.
110
+ #
111
+ # With reasoning now streamed live in the TUI, the user also SEES a
112
+ # runaway and can `esc` — the cap is the backstop for unattended /
113
+ # headless runs where no one is watching.
114
+
115
+ MAX_THINKING_SECONDS = 600
116
+ MAX_THINKING_CHARS = 80000
112
117
 
113
118
 
114
119
  # ── Tool-result size policy ─────────────────────────────────────────
@@ -53,6 +53,124 @@ __all__: list[str] = []
53
53
  _SHRINK_GUARD_SOURCE_EXTS = {".py", ".js", ".jsx", ".ts", ".tsx", ".css", ".html"}
54
54
 
55
55
 
56
+ # ── Autonomy-independent safety hard-block ─────────────────────────────
57
+ #
58
+ # The approval gate (_needs_confirmation) is a *confirmation* layer: it is
59
+ # skipped in FULL_AUTO and in headless mode (which forces full_auto). That
60
+ # left no backstop at all for those modes — a prompt-injected model could
61
+ # run `curl … | sh` via bash OR background_process, or overwrite
62
+ # ~/.ssh/authorized_keys via write_file, entirely unattended. This layer
63
+ # runs before EVERY dispatch regardless of autonomy level or headless, and
64
+ # cannot be overridden. It blocks only unambiguously destructive operations
65
+ # (no legitimate agent use), so it does not add friction to normal work.
66
+
67
+ # Tools that hand a raw string to a shell.
68
+ _SHELL_EXEC_TOOLS = {"bash", "background_process"}
69
+ # Tools that write file contents to a path.
70
+ _FILE_WRITE_TOOLS = {"write_file", "append_file", "edit_file", "multi_edit", "edit_diff"}
71
+
72
+ # Credential / key material that the agent has no legitimate reason to write.
73
+ # Matched on the path BASENAME or a path SEGMENT (never a naive substring, so
74
+ # editing the project's own `tokenizer.py` / `api_keys.py` is never blocked).
75
+ _BLOCKED_WRITE_BASENAMES = frozenset({
76
+ "id_rsa", "id_dsa", "id_ecdsa", "id_ed25519",
77
+ "authorized_keys", "known_hosts",
78
+ ".netrc", ".npmrc", ".pypirc",
79
+ "credentials", "credentials.json",
80
+ "shadow", "passwd", "sudoers",
81
+ })
82
+ _BLOCKED_WRITE_SEGMENTS = frozenset({".ssh", ".aws", ".gnupg", ".config/gcloud"})
83
+
84
+
85
+ def _is_blocked_write_path(raw_path: str) -> bool:
86
+ """True if writing this path targets credential/key material.
87
+
88
+ Precise matching only: exact basename or an exact path segment. A file
89
+ named `tokenizer.py` or `password_reset.py` in the project is NOT blocked.
90
+ """
91
+ if not raw_path:
92
+ return False
93
+ try:
94
+ p = Path(raw_path).expanduser()
95
+ except Exception:
96
+ p = Path(raw_path)
97
+ name = p.name.lower()
98
+ if name in _BLOCKED_WRITE_BASENAMES:
99
+ return True
100
+ lowered_parts = {part.lower() for part in p.parts}
101
+ if lowered_parts & _BLOCKED_WRITE_SEGMENTS:
102
+ return True
103
+ return False
104
+
105
+
106
+ # Catastrophic shell commands with NO legitimate agent use — hard-blocked in
107
+ # every mode, never overridable. Deliberately TIGHT: these are anchored to real
108
+ # device/root/home targets so they don't false-positive on a `grep` for the
109
+ # text. "High-risk but sometimes legitimate" commands (curl|sh installs,
110
+ # force-push, sudo rm) are NOT here — they route through the confirmation gate
111
+ # instead (see _CONFIRM_SHELL_RE), so the user can approve them.
112
+ #
113
+ # NB: SQL patterns (DROP TABLE, DELETE FROM, …) are intentionally absent — bash
114
+ # does not execute SQL, so blocking them here only broke `grep "DROP TABLE"`.
115
+ import re as _re
116
+
117
+ _HARD_BLOCK_SHELL_RE = [
118
+ _re.compile(r"\brm\s+-[a-z]*r[a-z]*f[a-z]*\s+(/|~|\$HOME|\$\{HOME\})(\s|/|$)", _re.I),
119
+ _re.compile(r"\brm\s+-[a-z]*f[a-z]*r[a-z]*\s+(/|~|\$HOME|\$\{HOME\})(\s|/|$)", _re.I),
120
+ _re.compile(r"\bmkfs\b", _re.I),
121
+ _re.compile(r"\bdd\b[^\n]*\bof=/dev/", _re.I),
122
+ _re.compile(r">\s*/dev/(sd|nvme|hd|disk|vd)", _re.I),
123
+ _re.compile(r"\bchmod\s+-R\s+0*777\s+/(\s|$)", _re.I),
124
+ _re.compile(r":\s*\(\s*\)\s*\{\s*:\s*\|\s*:\s*&\s*\}\s*;\s*:", _re.I), # fork bomb
125
+ _re.compile(r">\s*/etc/", _re.I),
126
+ _re.compile(r"\bwipefs\b", _re.I),
127
+ ]
128
+
129
+ # High-risk-but-sometimes-legitimate shell: prompt for approval (overridable),
130
+ # never silently run and never hard-blocked. Anchored so a `grep` for the text
131
+ # doesn't trigger it: the pipe-to-shell must be a real pipeline, force-push a
132
+ # real git invocation.
133
+ _CONFIRM_SHELL_RE = _re.compile(
134
+ r"(?:\b(?:curl|wget)\b[^\n|]*\|\s*(?:sudo\s+)?(?:ba|z|k|da)?sh\b)"
135
+ r"|(?:\bgit\s+push\b[^\n]*(?:--force\b|-f\b))"
136
+ r"|(?:\bsudo\s+rm\b)"
137
+ r"|(?:\bgit\s+reset\s+--hard\s+origin\b)",
138
+ _re.I,
139
+ )
140
+
141
+
142
+ def _safety_hard_block(name: str, args: dict) -> str | None:
143
+ """Autonomy-independent hard block. Returns a rejection reason, or None.
144
+
145
+ Runs before every tool dispatch in ALL modes (including FULL_AUTO and
146
+ headless). Covers only operations with no legitimate agent use:
147
+ - catastrophic shell (rm -rf /, mkfs, dd of=/dev/…, > /dev/sd*, fork
148
+ bomb, chmod -R 777 /, > /etc/) — see _HARD_BLOCK_SHELL_RE
149
+ - writes to SSH/AWS/GPG key material or credential files
150
+ Everything else — including curl|sh and force-push — falls through to the
151
+ normal confirmation flow, which can approve it.
152
+ """
153
+ if name in _SHELL_EXEC_TOOLS:
154
+ cmd = str(args.get("command", "") or "")
155
+ if cmd:
156
+ for rx in _HARD_BLOCK_SHELL_RE:
157
+ if rx.search(cmd):
158
+ return "blocked: refusing a command that could destroy the disk or system (matched a catastrophic pattern)"
159
+ if name in _FILE_WRITE_TOOLS:
160
+ raw_path = str(args.get("path", "") or args.get("file_path", "") or "")
161
+ if raw_path:
162
+ # The agent's sanctioned scratch dir is exempt.
163
+ try:
164
+ from ..notebook import is_within_notebook
165
+ if is_within_notebook(Path(raw_path).expanduser()):
166
+ return None
167
+ except Exception:
168
+ pass
169
+ if _is_blocked_write_path(raw_path):
170
+ return f"blocked: refusing to write credential/key file ({Path(raw_path).name})"
171
+ return None
172
+
173
+
56
174
  def _path_within(path: Path, root: Path) -> bool:
57
175
  try:
58
176
  path.resolve().relative_to(root)
@@ -162,6 +280,24 @@ def _execute_tool_result(app: "LocalCodeApp", name: str, args: dict, out: "Outpu
162
280
  wrapping plan-mode policy layer that refuses destructive tools
163
281
  while the agent is in plan-explore mode.
164
282
  """
283
+ # Autonomy-independent safety hard-block. Runs FIRST, in every mode
284
+ # (including FULL_AUTO / headless), and cannot be overridden — this is the
285
+ # backstop the confirmation gate is not. A prompt-injected model cannot use
286
+ # bash/background_process to run `curl|sh` or wipe a disk, nor a write tool
287
+ # to overwrite ~/.ssh/authorized_keys, even with no human present.
288
+ _blocked = _safety_hard_block(name, args)
289
+ if _blocked is not None:
290
+ try:
291
+ from ..events import emit as _emit_block
292
+ _emit_block("safety_hard_block", tool=name, reason=str(_blocked)[:200])
293
+ except Exception:
294
+ pass
295
+ return ToolResult(
296
+ text=f"REJECTED: {_blocked}. This operation is blocked by the safety layer and cannot be auto-approved.",
297
+ ok=False,
298
+ facts={"tool": name, "ok": False, "safety_blocked": True},
299
+ )
300
+
165
301
  try:
166
302
  hook = getattr(app, "hooks", None)
167
303
  decision = hook.on_pre_tool_use(name, args) if hook is not None else None
@@ -277,20 +413,63 @@ def _needs_confirmation(name: str, args: dict, app: "LocalCodeApp | None" = None
277
413
  picks option 2 on a prompt ("always allow `git`"). That set is on
278
414
  `app._session_allow` — scoped to this process, cleared on next launch.
279
415
  """
280
- if name != "bash":
416
+ # Tools that don't execute shell or mutate files never need confirmation.
417
+ if name != "bash" and name not in _SHELL_EXEC_TOOLS and name not in _FILE_WRITE_TOOLS:
281
418
  return False
419
+
420
+ level = None
282
421
  if app is not None:
283
422
  try:
284
423
  from ..autonomy import AutonomyLevel
285
- if getattr(app, "_autonomy", None) == AutonomyLevel.FULL_AUTO:
424
+ level = getattr(app, "_autonomy", None)
425
+ # FULL_AUTO skips confirmation for everything (the hard-block in
426
+ # _execute_tool_result still applies — it is not an approval).
427
+ if level == AutonomyLevel.FULL_AUTO:
286
428
  return False
287
429
  except Exception:
288
- pass
430
+ level = None
431
+
432
+ # File-write tools: auto-approved in auto_edit (the point of that mode);
433
+ # in suggest (read-only) mode every write is confirmed. Notebook scratch
434
+ # writes are never prompted.
435
+ if name in _FILE_WRITE_TOOLS:
436
+ try:
437
+ from ..autonomy import AutonomyLevel
438
+ if level != AutonomyLevel.SUGGEST:
439
+ return False
440
+ except Exception:
441
+ return False
442
+ raw_path = str(args.get("path", "") or args.get("file_path", "") or "")
443
+ if raw_path:
444
+ try:
445
+ from ..notebook import is_within_notebook
446
+ if is_within_notebook(Path(raw_path).expanduser()):
447
+ return False
448
+ except Exception:
449
+ pass
450
+ return True
451
+
452
+ # Shell-executing tools (bash, background_process).
289
453
  cmd = args.get("command", "")
290
454
  if app is not None:
291
455
  allow = getattr(app, "_session_allow", None)
292
456
  if allow and _first_token(cmd) in allow:
293
457
  return False
458
+ # background_process hands a raw string straight to /bin/sh with no
459
+ # destructive-substring shortcut — always confirm it (unless full_auto or
460
+ # session-allowed above). In suggest mode, confirm any shell command.
461
+ if name == "background_process":
462
+ return True
463
+ try:
464
+ from ..autonomy import AutonomyLevel
465
+ if level == AutonomyLevel.SUGGEST:
466
+ return True
467
+ except Exception:
468
+ pass
469
+ # High-risk-but-sometimes-legit patterns (remote pipe-to-shell, force-push,
470
+ # sudo rm) are NOT hard-blocked — confirm them so the user can approve.
471
+ if _CONFIRM_SHELL_RE.search(cmd):
472
+ return True
294
473
  return any(p in cmd for p in DESTRUCTIVE_PATTERNS)
295
474
 
296
475
  def _render_markdown(text: str, console: Console | None = None) -> None:
@@ -965,12 +965,12 @@ def run_agent_loop(
965
965
  # If we bailed on a stuck thinking loop, tell the user explicitly so
966
966
  # they know why the turn ended and can try a different prompt.
967
967
  if _stream_result.thinking_abort:
968
- out.print_info(
968
+ out.notice(
969
969
  f"Stopped: model reasoning exceeded the per-round cap "
970
970
  f"({MAX_THINKING_SECONDS}s or {MAX_THINKING_CHARS} chars) without "
971
- f"emitting a response. Small quantized models (IQ2_M, IQ3_S) often "
972
- f"produce better output in fast mode try `/mode` to switch, or "
973
- f"rephrase the task in smaller steps."
971
+ f"emitting a response. Turn off deep reasoning with `/thinking off`, "
972
+ f"switch to a faster model with `/model`, or rephrase the task in "
973
+ f"smaller steps."
974
974
  )
975
975
 
976
976
  # Show thinking summary if present (collapsed, dim)
@@ -1657,7 +1657,13 @@ def run_agent_loop(
1657
1657
  # "always" adds the command's first token (e.g. "git") to the
1658
1658
  # session allowlist so we stop asking for that family.
1659
1659
  if _needs_confirmation(tool_name, args, app):
1660
+ # `cmd` drives the approval prompt display and the "always
1661
+ # allow `<token>`" key. Shell tools carry a command; file-write
1662
+ # tools carry a path — show that instead of a blank line.
1660
1663
  cmd = args.get("command", "")
1664
+ if not cmd:
1665
+ _wpath = args.get("path") or args.get("file_path") or ""
1666
+ cmd = f"{tool_name} {_wpath}".strip()
1661
1667
  verdict = "deny"
1662
1668
  if out._approval_callback is not None:
1663
1669
  raw = out._approval_callback(tool_name, cmd)
@@ -289,6 +289,50 @@ def _is_complete_download(p: Path, catalog_entry) -> bool:
289
289
  return size >= int(expected * 0.97)
290
290
 
291
291
 
292
+ def _verify_download_integrity(choice, path: Path) -> tuple[bool, str]:
293
+ """Verify a freshly-downloaded model file against its pinned sha256.
294
+
295
+ Returns (ok, reason). When the catalog entry has no `sha256` set (the
296
+ default), this is a no-op that returns (True, "") — behavior is unchanged
297
+ for unpinned entries. When a hash IS pinned and the file does not match,
298
+ the file is DELETED (so a poisoned artifact is never loaded or executed)
299
+ and (False, reason) is returned.
300
+
301
+ This is the integrity backstop the size-only completeness check is not:
302
+ upstream can swap weights under the same filename, and TLS/host pinning
303
+ alone does not detect a malicious or corrupted artifact served by a
304
+ compromised upstream repo.
305
+ """
306
+ expected = getattr(choice, "sha256", None)
307
+ if not expected:
308
+ return True, ""
309
+ try:
310
+ import hashlib
311
+ h = hashlib.sha256()
312
+ with open(path, "rb") as fh:
313
+ for chunk in iter(lambda: fh.read(1024 * 1024), b""):
314
+ h.update(chunk)
315
+ actual = h.hexdigest()
316
+ except Exception as e:
317
+ return False, f"Integrity check could not read {path.name}: {e}"
318
+ if actual.lower() != str(expected).lower():
319
+ try:
320
+ path.unlink()
321
+ except Exception:
322
+ pass
323
+ try:
324
+ from .events import emit as _emit
325
+ _emit("download_integrity_fail", filename=choice.filename, expected=str(expected)[:16], actual=actual[:16])
326
+ except Exception:
327
+ pass
328
+ return False, (
329
+ f"Integrity check FAILED for {choice.filename}: expected sha256 "
330
+ f"{expected}, got {actual}. The file was deleted — LocalCode will "
331
+ "not load a model whose contents don't match the pinned hash."
332
+ )
333
+ return True, ""
334
+
335
+
292
336
  def get_model_path(preferred_filename: str | None = None) -> Path | None:
293
337
  """Return path to a usable GGUF model, checking multiple locations.
294
338
 
@@ -537,7 +581,8 @@ def download_model(
537
581
  # fails (exotic FS), fall through and let the download try.
538
582
  pass
539
583
 
540
- url = f"https://huggingface.co/{choice.hf_repo}/resolve/main/{choice.filename}"
584
+ _rev = getattr(choice, "revision", None) or "main"
585
+ url = f"https://huggingface.co/{choice.hf_repo}/resolve/{_rev}/{choice.filename}"
541
586
  if on_progress:
542
587
  on_progress(f"Downloading {choice.filename} (~{choice.size_gb:.1f} GB)...")
543
588
 
@@ -559,6 +604,9 @@ def download_model(
559
604
  # Resumes via the hub's built-in partial-download handling.
560
605
  try:
561
606
  if _try_hub_download(choice, model_file, on_progress):
607
+ ok, reason = _verify_download_integrity(choice, model_file)
608
+ if not ok:
609
+ return False, reason
562
610
  return True, str(model_file)
563
611
  except Exception as e:
564
612
  last_err = e
@@ -573,6 +621,9 @@ def download_model(
573
621
  # Slow path: tuned urllib parallel downloader.
574
622
  try:
575
623
  _download_parallel(url, model_file, num_threads=32, on_progress=on_progress)
624
+ ok, reason = _verify_download_integrity(choice, model_file)
625
+ if not ok:
626
+ return False, reason
576
627
  return True, str(model_file)
577
628
  except Exception as e:
578
629
  last_err = e
@@ -948,6 +999,10 @@ def _try_hub_download(choice, dest: Path, on_progress: Callable[[str], None] | N
948
999
  downloaded_path = hf_hub_download(
949
1000
  repo_id=choice.hf_repo,
950
1001
  filename=choice.filename,
1002
+ # Pin to the entry's revision (commit SHA/tag) when set; defaults to
1003
+ # "main" (unchanged behavior). Pinning makes an upstream weight swap
1004
+ # under the same filename visible instead of silent.
1005
+ revision=getattr(choice, "revision", None) or "main",
951
1006
  local_dir=str(dest.parent),
952
1007
  tqdm_class=_make_progress_tqdm(on_progress) if on_progress else None,
953
1008
  )
@@ -162,11 +162,13 @@ FEATURE_DEFAULTS: dict[Feature, bool] = {
162
162
  Feature.TOOL_RESULT_AGING: True,
163
163
  Feature.CONTEXT_SHIFT: True,
164
164
 
165
- # Decode safety. THINKING_CAPS disabled by user request 2026-04-27
166
- # the per-round caps were aborting useful long-reasoning rounds and
167
- # causing more failures than they prevented. Re-enable only if the
168
- # "15-minute reasoning" failure mode reappears.
169
- Feature.THINKING_CAPS: False,
165
+ # Decode safety. Re-enabled 2026-07-19 after a real 29-minute /
166
+ # 94.8k-token thinking runaway (Qwen Q8, thinking on) that never
167
+ # produced output. Disabled 2026-04-27 because the caps were far too
168
+ # tight (90 s / 4000 chars) and aborted useful reasoning; now paired
169
+ # with GENEROUS bounds (600 s / 80000 chars, see constants.py) that
170
+ # only catch a pathological loop, never normal reasoning.
171
+ Feature.THINKING_CAPS: True,
170
172
  Feature.AUTO_NUDGE_RECOVERY: True,
171
173
 
172
174
  # Runtime — on. The pressure monitor specifically is what
@@ -76,18 +76,37 @@ class Quant:
76
76
 
77
77
 
78
78
  def _quant_from_entry(entry: dict) -> Quant | None:
79
- """Build a Quant from one HF tree entry, or None if it's not a .gguf."""
79
+ """Build a Quant from one HF tree entry, or None if it's not a selectable
80
+ model-weight quant.
81
+
82
+ The browser lists things the user PICKS. It must show only real model-weight
83
+ quants — never sidecar files, which are tiny and confusing next to a
84
+ multi-GB model (a 12B repo showing "BF16 · 0.9 GB" rows is the vision
85
+ projector, not a 12B model). Dropped here:
86
+ - vision projectors (`mmproj-*.gguf`) — auto-paired with the chosen quant
87
+ via the catalog's mmproj fields, never selected directly
88
+ - speculative-decoding draft heads (`mtp-*.gguf`) and anything in a
89
+ subfolder (e.g. `MTP/…`) — not standalone models
90
+ - any file with no recognizable quant code (`…-it.gguf` extras)
91
+ """
80
92
  path = entry.get("path", "")
81
93
  if not path.lower().endswith(".gguf"):
82
94
  return None
83
95
  base = path.rsplit("/", 1)[-1]
84
- is_mmproj = base.lower().startswith("mmproj")
96
+ lowered = base.lower()
97
+ # Subfolder files (e.g. `MTP/gemma-…-Q4_0.gguf`) are never top-level
98
+ # selectable weights.
99
+ if "/" in path:
100
+ return None
101
+ # Vision projectors and MTP draft heads are sidecars, not pickable models.
102
+ if lowered.startswith("mmproj") or lowered.startswith("mtp-") or lowered.startswith("mtp_"):
103
+ return None
85
104
  label = _parse_label(path)
86
- # Keep only real weight quants and vision projectors. Anything else with
87
- # no quant code (MTP drafters, `…-it.gguf` extras) is repo noise drop it
88
- # so the picker never shows rows like "it · 0.5 GB" / "MTP · 0.5 GB".
89
- if label is None and not is_mmproj:
105
+ # Real weight quants carry a quant code (Q4_K_M, IQ3_S, BF16, …). Anything
106
+ # else is repo noise drop it so the picker never shows junk rows.
107
+ if label is None:
90
108
  return None
109
+ is_mmproj = False
91
110
  # LFS weights store the true size under entry["lfs"]["size"]; fall back to
92
111
  # the top-level "size" for non-LFS files.
93
112
  lfs = entry.get("lfs") or {}
@@ -95,8 +114,7 @@ def _quant_from_entry(entry: dict) -> Quant | None:
95
114
  return Quant(
96
115
  filename=path,
97
116
  size_gb=round(size_bytes / 1e9, 3),
98
- # mmproj sidecars have no quant code — show their precision instead.
99
- label=label or (base[:-5].split("-")[-1] if base.lower().endswith(".gguf") else base),
117
+ label=label,
100
118
  is_mmproj=is_mmproj,
101
119
  )
102
120
 
@@ -34,6 +34,83 @@ from pathlib import Path
34
34
  from ._subproc_env import clean_env
35
35
 
36
36
 
37
+ # ── Project-hooks trust store ──────────────────────────────────────────
38
+ #
39
+ # A repo's `.localcode/hooks.toml` runs shell commands at session start / on
40
+ # every prompt / before every tool. Loading it just because you opened the
41
+ # folder is remote code execution on `git clone && localcode` — the classic
42
+ # "workspace trust" hole. So project hooks are gated: they run ONLY if the
43
+ # user has explicitly trusted this repo path AND the file's content hash still
44
+ # matches what was trusted (editing the hooks re-prompts). Global hooks in the
45
+ # user's own ~/.localcode are always trusted (their own machine, their config).
46
+
47
+ def _trust_store_path() -> Path:
48
+ return Path.home() / ".localcode" / "trusted_hooks.json"
49
+
50
+
51
+ def _hooks_digest(path: Path) -> str:
52
+ import hashlib
53
+ return hashlib.sha256(path.read_bytes()).hexdigest()
54
+
55
+
56
+ def _load_trust_store() -> dict:
57
+ import json
58
+ p = _trust_store_path()
59
+ if not p.is_file():
60
+ return {}
61
+ try:
62
+ data = json.loads(p.read_text())
63
+ return data if isinstance(data, dict) else {}
64
+ except Exception:
65
+ return {}
66
+
67
+
68
+ def is_project_hooks_trusted(repo_root: str) -> bool:
69
+ """True if this repo's current hooks.toml content is on the trust store."""
70
+ project_path = Path(repo_root) / ".localcode" / "hooks.toml"
71
+ if not project_path.is_file():
72
+ return True # nothing to trust
73
+ # Explicit CI/automation opt-in (env vars are trusted per threat model).
74
+ if os.environ.get("LOCALCODE_TRUST_PROJECT_HOOKS") == "1":
75
+ return True
76
+ store = _load_trust_store()
77
+ try:
78
+ key = str(Path(repo_root).resolve())
79
+ except Exception:
80
+ key = str(repo_root)
81
+ recorded = store.get(key)
82
+ if not recorded:
83
+ return False
84
+ try:
85
+ return recorded == _hooks_digest(project_path)
86
+ except Exception:
87
+ return False
88
+
89
+
90
+ def trust_project_hooks(repo_root: str) -> bool:
91
+ """Record the current .localcode/hooks.toml content as trusted for this
92
+ repo. Returns True on success. Call this from an explicit user action
93
+ (e.g. a `/hooks trust` command) after the user has reviewed the file.
94
+ """
95
+ import json
96
+ project_path = Path(repo_root) / ".localcode" / "hooks.toml"
97
+ if not project_path.is_file():
98
+ return False
99
+ store = _load_trust_store()
100
+ try:
101
+ key = str(Path(repo_root).resolve())
102
+ except Exception:
103
+ key = str(repo_root)
104
+ try:
105
+ store[key] = _hooks_digest(project_path)
106
+ dest = _trust_store_path()
107
+ dest.parent.mkdir(parents=True, exist_ok=True)
108
+ dest.write_text(json.dumps(store, indent=2))
109
+ return True
110
+ except Exception:
111
+ return False
112
+
113
+
37
114
  @dataclass
38
115
  class HookResult:
39
116
  """Result of running a hook."""
@@ -68,6 +145,10 @@ class HookRunner:
68
145
  self.repo_root = repo_root
69
146
  self.session_id = session_id
70
147
  self.model = model
148
+ # Set by _load_hooks when a repo ships .localcode/hooks.toml that the
149
+ # user has NOT trusted — the app reads this to warn and offer /hooks
150
+ # trust. The untrusted hooks are NOT loaded, so nothing runs.
151
+ self.untrusted_project_hooks = False
71
152
  self.config = self._load_hooks()
72
153
  self._base_env = {
73
154
  **os.environ,
@@ -85,10 +166,16 @@ class HookRunner:
85
166
  if global_path.is_file():
86
167
  self._merge_hooks(config, global_path)
87
168
 
88
- # Project hooks (higher priority — overrides global)
169
+ # Project hooks (higher priority — overrides global), but ONLY if the
170
+ # user has explicitly trusted this repo. An untrusted repo's hooks are
171
+ # never loaded or run — this is what stops `git clone && localcode`
172
+ # from being remote code execution.
89
173
  project_path = Path(self.repo_root) / ".localcode" / "hooks.toml"
90
174
  if project_path.is_file():
91
- self._merge_hooks(config, project_path)
175
+ if is_project_hooks_trusted(self.repo_root):
176
+ self._merge_hooks(config, project_path)
177
+ else:
178
+ self.untrusted_project_hooks = True
92
179
 
93
180
  return config
94
181