llama-cpp-pydist 0.15.0__py3-none-any.whl → 0.16.0__py3-none-any.whl

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 (274) hide show
  1. llama_cpp/binaries/{llama-b7058-bin-win-cpu-x64.zip → llama-b7213-bin-win-cpu-x64.zip} +0 -0
  2. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.16.0.dist-info}/METADATA +102 -1
  3. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.16.0.dist-info}/RECORD +269 -220
  4. vendor_llama_cpp_pydist/llama.cpp/.devops/cann.Dockerfile +5 -6
  5. vendor_llama_cpp_pydist/llama.cpp/.devops/vulkan.Dockerfile +2 -3
  6. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build.yml +85 -94
  7. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/release.yml +46 -0
  8. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/server.yml +9 -16
  9. vendor_llama_cpp_pydist/llama.cpp/.gitignore +45 -63
  10. vendor_llama_cpp_pydist/llama.cpp/CODEOWNERS +8 -23
  11. vendor_llama_cpp_pydist/llama.cpp/CONTRIBUTING.md +1 -0
  12. vendor_llama_cpp_pydist/llama.cpp/README.md +1 -0
  13. vendor_llama_cpp_pydist/llama.cpp/SECURITY.md +2 -0
  14. vendor_llama_cpp_pydist/llama.cpp/ci/run.sh +8 -8
  15. vendor_llama_cpp_pydist/llama.cpp/common/CMakeLists.txt +2 -0
  16. vendor_llama_cpp_pydist/llama.cpp/common/arg.cpp +35 -4
  17. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.cpp +861 -0
  18. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.h +45 -0
  19. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.cpp +968 -0
  20. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.h +10 -0
  21. vendor_llama_cpp_pydist/llama.cpp/common/chat.cpp +311 -889
  22. vendor_llama_cpp_pydist/llama.cpp/common/chat.h +6 -0
  23. vendor_llama_cpp_pydist/llama.cpp/common/common.cpp +64 -6
  24. vendor_llama_cpp_pydist/llama.cpp/common/common.h +31 -6
  25. vendor_llama_cpp_pydist/llama.cpp/common/download.cpp +14 -7
  26. vendor_llama_cpp_pydist/llama.cpp/common/json-partial.cpp +19 -2
  27. vendor_llama_cpp_pydist/llama.cpp/common/json-schema-to-grammar.cpp +4 -2
  28. vendor_llama_cpp_pydist/llama.cpp/common/json-schema-to-grammar.h +2 -0
  29. vendor_llama_cpp_pydist/llama.cpp/common/log.cpp +20 -0
  30. vendor_llama_cpp_pydist/llama.cpp/common/log.h +21 -12
  31. vendor_llama_cpp_pydist/llama.cpp/common/sampling.cpp +60 -6
  32. vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf.py +195 -124
  33. vendor_llama_cpp_pydist/llama.cpp/convert_lora_to_gguf.py +11 -5
  34. vendor_llama_cpp_pydist/llama.cpp/docs/backend/SYCL.md +13 -0
  35. vendor_llama_cpp_pydist/llama.cpp/docs/ops/SYCL.csv +2348 -149
  36. vendor_llama_cpp_pydist/llama.cpp/docs/ops/Vulkan.csv +14542 -4366
  37. vendor_llama_cpp_pydist/llama.cpp/docs/ops.md +43 -44
  38. vendor_llama_cpp_pydist/llama.cpp/ggml/CMakeLists.txt +6 -4
  39. vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-rpc.h +1 -1
  40. vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml.h +14 -5
  41. vendor_llama_cpp_pydist/llama.cpp/ggml/src/CMakeLists.txt +26 -4
  42. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-alloc.c +8 -3
  43. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-backend.cpp +38 -3
  44. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/acl_tensor.cpp +19 -10
  45. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/acl_tensor.h +99 -19
  46. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +968 -823
  47. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.h +61 -196
  48. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/common.h +89 -158
  49. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/ggml-cann.cpp +45 -33
  50. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/CMakeLists.txt +59 -52
  51. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/arm/repack.cpp +721 -0
  52. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +38 -0
  53. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/x86/repack.cpp +6 -6
  54. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch-fallback.h +22 -2
  55. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu.c +9 -0
  56. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/kleidiai/kernels.cpp +15 -5
  57. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.cpp +131 -6
  58. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.h +1 -0
  59. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.cpp +243 -4
  60. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.h +6 -0
  61. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/simd-mappings.h +16 -14
  62. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/vec.h +133 -133
  63. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/argsort.cu +1 -1
  64. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/common.cuh +188 -18
  65. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/convert.cuh +9 -0
  66. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy-utils.cuh +1 -1
  67. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy.cu +91 -49
  68. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-common.cuh +2 -2
  69. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-tile.cuh +1 -1
  70. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-vec.cuh +18 -18
  71. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +434 -16
  72. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mma.cuh +190 -3
  73. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cu +2 -2
  74. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cuh +53 -20
  75. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cu +7 -1
  76. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cuh +301 -138
  77. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cu +203 -0
  78. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cuh +3 -0
  79. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/upscale.cu +78 -3
  80. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/vendors/hip.h +1 -1
  81. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/CMakeLists.txt +10 -0
  82. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/ggml-hexagon.cpp +99 -364
  83. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/act-ops.c +12 -18
  84. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/htp-dma.h +7 -0
  85. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-exp.c +20 -6
  86. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-inverse.c +15 -3
  87. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.c +20 -7
  88. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.h +56 -11
  89. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/main.c +12 -3
  90. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/rope-ops.c +80 -7
  91. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp-utils.c +6 -0
  92. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.cpp +96 -0
  93. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.h +4 -0
  94. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.m +5 -2
  95. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-impl.h +53 -4
  96. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.cpp +327 -87
  97. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.h +2 -0
  98. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.cpp +5 -0
  99. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.metal +243 -68
  100. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/CMakeLists.txt +5 -0
  101. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +518 -2
  102. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/mean.cl +39 -0
  103. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +273 -0
  104. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/rms_norm.cl +25 -10
  105. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/sqr.cl +53 -0
  106. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/sqrt.cl +53 -0
  107. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/ssm_conv.cl +77 -0
  108. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-rpc/ggml-rpc.cpp +91 -20
  109. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/CMakeLists.txt +6 -2
  110. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/common.hpp +26 -0
  111. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/cpy.cpp +0 -3
  112. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/element_wise.cpp +112 -250
  113. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/ggml-sycl.cpp +7 -6
  114. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/pad_reflect_1d.cpp +87 -59
  115. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/pad_reflect_1d.hpp +2 -0
  116. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +1470 -932
  117. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/abs.comp +21 -0
  118. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +28 -0
  119. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +20 -0
  120. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +20 -21
  121. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +114 -0
  122. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/ceil.comp +22 -0
  123. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +67 -0
  124. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +69 -0
  125. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +0 -7
  126. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +19 -0
  127. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +33 -15
  128. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +34 -1
  129. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +37 -19
  130. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/floor.comp +22 -0
  131. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +7 -0
  132. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +7 -0
  133. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +18 -0
  134. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +1 -0
  135. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +47 -51
  136. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +35 -0
  137. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +8 -12
  138. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +8 -12
  139. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +27 -35
  140. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +379 -0
  141. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +0 -2
  142. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +62 -196
  143. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/neg.comp +20 -0
  144. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/round.comp +29 -0
  145. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/softplus.comp +23 -0
  146. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +72 -0
  147. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/step.comp +22 -0
  148. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +1 -24
  149. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +25 -0
  150. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +113 -0
  151. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +199 -0
  152. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +43 -0
  153. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/trunc.comp +22 -0
  154. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +58 -3
  155. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml.c +47 -26
  156. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/constants.py +89 -0
  157. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/gguf_writer.py +56 -6
  158. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/metadata.py +85 -0
  159. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_convert_endian.py +12 -18
  160. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_editor_gui.py +1 -1
  161. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_new_metadata.py +1 -1
  162. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/tensor_mapping.py +16 -6
  163. vendor_llama_cpp_pydist/llama.cpp/include/llama.h +18 -0
  164. vendor_llama_cpp_pydist/llama.cpp/scripts/sync-ggml.last +1 -1
  165. vendor_llama_cpp_pydist/llama.cpp/scripts/sync_vendor.py +1 -1
  166. vendor_llama_cpp_pydist/llama.cpp/src/CMakeLists.txt +3 -0
  167. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.cpp +123 -16
  168. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.h +17 -0
  169. vendor_llama_cpp_pydist/llama.cpp/src/llama-context.cpp +7 -3
  170. vendor_llama_cpp_pydist/llama.cpp/src/llama-grammar.cpp +17 -9
  171. vendor_llama_cpp_pydist/llama.cpp/src/llama-graph.cpp +6 -9
  172. vendor_llama_cpp_pydist/llama.cpp/src/llama-hparams.h +3 -3
  173. vendor_llama_cpp_pydist/llama.cpp/src/llama-impl.cpp +3 -3
  174. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.cpp +191 -12
  175. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.h +4 -0
  176. vendor_llama_cpp_pydist/llama.cpp/src/llama-quant.cpp +13 -5
  177. vendor_llama_cpp_pydist/llama.cpp/src/llama-sampling.cpp +3 -6
  178. vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.cpp +1 -0
  179. vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek2.cpp +2 -1
  180. vendor_llama_cpp_pydist/llama.cpp/src/models/lfm2.cpp +5 -3
  181. vendor_llama_cpp_pydist/llama.cpp/src/models/mistral3.cpp +160 -0
  182. vendor_llama_cpp_pydist/llama.cpp/src/models/models.h +59 -1
  183. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3next.cpp +1042 -0
  184. vendor_llama_cpp_pydist/llama.cpp/src/models/rnd1.cpp +126 -0
  185. vendor_llama_cpp_pydist/llama.cpp/tests/CMakeLists.txt +1 -1
  186. vendor_llama_cpp_pydist/llama.cpp/tests/test-backend-ops.cpp +228 -35
  187. vendor_llama_cpp_pydist/llama.cpp/tests/test-chat.cpp +1033 -19
  188. vendor_llama_cpp_pydist/llama.cpp/tests/test-json-schema-to-grammar.cpp +26 -0
  189. vendor_llama_cpp_pydist/llama.cpp/tools/main/main.cpp +12 -2
  190. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-impl.h +5 -12
  191. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.cpp +25 -15
  192. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.h +0 -1
  193. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-cli.cpp +2 -2
  194. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.cpp +60 -3
  195. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.h +5 -0
  196. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.cpp +9 -2
  197. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.h +4 -1
  198. vendor_llama_cpp_pydist/llama.cpp/tools/server/CMakeLists.txt +10 -1
  199. vendor_llama_cpp_pydist/llama.cpp/tools/server/README.md +100 -19
  200. vendor_llama_cpp_pydist/llama.cpp/tools/server/public/index.html.gz +0 -0
  201. vendor_llama_cpp_pydist/llama.cpp/tools/server/public_legacy/json-schema-to-grammar.mjs +2 -2
  202. vendor_llama_cpp_pydist/llama.cpp/tools/server/{utils.hpp → server-common.cpp} +990 -905
  203. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.h +355 -0
  204. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.cpp +3619 -0
  205. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.h +83 -0
  206. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.cpp +394 -0
  207. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.h +78 -0
  208. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.cpp +351 -0
  209. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.h +146 -0
  210. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.cpp +1474 -0
  211. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.h +460 -0
  212. vendor_llama_cpp_pydist/llama.cpp/tools/server/server.cpp +123 -5720
  213. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/conftest.py +6 -0
  214. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_basic.py +0 -6
  215. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_compat_anthropic.py +807 -0
  216. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_security.py +13 -0
  217. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/utils.py +2 -0
  218. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/.gitignore +1 -0
  219. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package-lock.json +6 -6
  220. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreview.svelte +273 -0
  221. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsList.svelte +6 -7
  222. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentsViewAllDialog.svelte → ChatAttachmentsViewAll.svelte} +52 -65
  223. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActions.svelte → ChatFormActions/ChatFormActions.svelte} +5 -3
  224. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormModelSelector.svelte +1 -7
  225. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessage.svelte +48 -1
  226. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageActions.svelte +13 -4
  227. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte +133 -3
  228. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageUser.svelte +29 -6
  229. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessages.svelte +26 -2
  230. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte +37 -16
  231. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreenHeader.svelte +2 -2
  232. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/{ChatProcessingInfo.svelte → ChatScreen/ChatScreenProcessingInfo.svelte} +2 -4
  233. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ChatSettingsDialog.svelte → ChatSettings.svelte} +147 -157
  234. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFields.svelte +24 -8
  235. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ImportExportTab.svelte → ChatSettingsImportExportTab.svelte} +3 -3
  236. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte +2 -2
  237. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentPreview.svelte +78 -0
  238. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte +51 -0
  239. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatSettings.svelte +37 -0
  240. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogConversationSelection.svelte +68 -0
  241. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/index.ts +35 -28
  242. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ConversationSelection.svelte +205 -0
  243. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte +2 -0
  244. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/settings-config.ts +11 -2
  245. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/table-html-restorer.ts +20 -0
  246. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/markdown/table-html-restorer.ts +181 -0
  247. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/chat.ts +153 -13
  248. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/chat.svelte.ts +298 -2
  249. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/database.ts +2 -0
  250. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/api.d.ts +19 -0
  251. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/database.d.ts +1 -0
  252. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/settings.d.ts +9 -1
  253. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+layout.svelte +2 -2
  254. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/ChatSettings.stories.svelte +19 -0
  255. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/CMakeLists.txt +95 -8
  256. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.cpp +303 -58
  257. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.h +33 -6
  258. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-amd.yml +0 -52
  259. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/Doxyfile +0 -2579
  260. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreviewDialog.svelte +0 -314
  261. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ConversationSelectionDialog.svelte +0 -249
  262. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/ChatSettingsDialog.stories.svelte +0 -26
  263. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.16.0.dist-info}/WHEEL +0 -0
  264. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.16.0.dist-info}/licenses/LICENSE +0 -0
  265. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.16.0.dist-info}/top_level.txt +0 -0
  266. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentFilePreview.svelte → ChatAttachmentThumbnailFile.svelte} +0 -0
  267. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentImagePreview.svelte → ChatAttachmentThumbnailImage.svelte} +0 -0
  268. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActionFileAttachments.svelte → ChatFormActions/ChatFormActionFileAttachments.svelte} +0 -0
  269. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActionRecord.svelte → ChatFormActions/ChatFormActionRecord.svelte} +0 -0
  270. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ParameterSourceIndicator.svelte → ChatSettingsParameterSourceIndicator.svelte} +0 -0
  271. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ChatErrorDialog.svelte → DialogChatError.svelte} +0 -0
  272. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ConfirmationDialog.svelte → DialogConfirmation.svelte} +0 -0
  273. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ConversationTitleUpdateDialog.svelte → DialogConversationTitleUpdate.svelte} +0 -0
  274. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{EmptyFileAlertDialog.svelte → DialogEmptyFileAlert.svelte} +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llama_cpp_pydist
3
- Version: 0.15.0
3
+ Version: 0.16.0
4
4
  Summary: A Python package for Llama CPP.
5
5
  Home-page: https://github.com/shamitv/llama_cpp
6
6
  Author: Shamit Verma
@@ -146,6 +146,107 @@ For instructions on how to build the package from source, update the `llama.cpp`
146
146
 
147
147
  # Changelog
148
148
 
149
+ ## 2025-12-01: Update to llama.cpp b7213
150
+
151
+ - b7090 (b7090) – 2025-11-18 – https://github.com/ggml-org/llama.cpp/releases/tag/b7090
152
+ - b7091 (b7091) – 2025-11-18 – https://github.com/ggml-org/llama.cpp/releases/tag/b7091
153
+ - b7096 (b7096) – 2025-11-18 – https://github.com/ggml-org/llama.cpp/releases/tag/b7096
154
+ - b7097 (b7097) – 2025-11-18 – https://github.com/ggml-org/llama.cpp/releases/tag/b7097
155
+ - b7100 (b7100) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7100
156
+ - b7101 (b7101) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7101
157
+ - b7102 (b7102) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7102
158
+ - b7103 (b7103) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7103
159
+ - b7106 (b7106) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7106
160
+ - b7107 (b7107) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7107
161
+ - b7108 (b7108) – 2025-11-19 – https://github.com/ggml-org/llama.cpp/releases/tag/b7108
162
+ - b7109 (b7109) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7109
163
+ - b7110 (b7110) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7110
164
+ - b7111 (b7111) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7111
165
+ - b7112 (b7112) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7112
166
+ - b7113 (b7113) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7113
167
+ - b7117 (b7117) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7117
168
+ - b7118 (b7118) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7118
169
+ - b7120 (b7120) – 2025-11-20 – https://github.com/ggml-org/llama.cpp/releases/tag/b7120
170
+ - b7122 (b7122) – 2025-11-21 – https://github.com/ggml-org/llama.cpp/releases/tag/b7122
171
+ - b7123 (b7123) – 2025-11-21 – https://github.com/ggml-org/llama.cpp/releases/tag/b7123
172
+ - b7124 (b7124) – 2025-11-21 – https://github.com/ggml-org/llama.cpp/releases/tag/b7124
173
+ - b7126 (b7126) – 2025-11-21 – https://github.com/ggml-org/llama.cpp/releases/tag/b7126
174
+ - b7127 (b7127) – 2025-11-21 – https://github.com/ggml-org/llama.cpp/releases/tag/b7127
175
+ - b7128 (b7128) – 2025-11-21 – https://github.com/ggml-org/llama.cpp/releases/tag/b7128
176
+ - b7129 (b7129) – 2025-11-22 – https://github.com/ggml-org/llama.cpp/releases/tag/b7129
177
+ - b7130 (b7130) – 2025-11-22 – https://github.com/ggml-org/llama.cpp/releases/tag/b7130
178
+ - b7132 (b7132) – 2025-11-23 – https://github.com/ggml-org/llama.cpp/releases/tag/b7132
179
+ - b7134 (b7134) – 2025-11-23 – https://github.com/ggml-org/llama.cpp/releases/tag/b7134
180
+ - b7136 (b7136) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7136
181
+ - b7137 (b7137) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7137
182
+ - b7138 (b7138) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7138
183
+ - b7139 (b7139) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7139
184
+ - b7140 (b7140) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7140
185
+ - b7141 (b7141) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7141
186
+ - b7142 (b7142) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7142
187
+ - b7144 (b7144) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7144
188
+ - b7146 (b7146) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7146
189
+ - b7148 (b7148) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7148
190
+ - b7149 (b7149) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7149
191
+ - b7150 (b7150) – 2025-11-24 – https://github.com/ggml-org/llama.cpp/releases/tag/b7150
192
+ - b7151 (b7151) – 2025-11-25 – https://github.com/ggml-org/llama.cpp/releases/tag/b7151
193
+ - b7152 (b7152) – 2025-11-25 – https://github.com/ggml-org/llama.cpp/releases/tag/b7152
194
+ - b7154 (b7154) – 2025-11-25 – https://github.com/ggml-org/llama.cpp/releases/tag/b7154
195
+ - b7157 (b7157) – 2025-11-25 – https://github.com/ggml-org/llama.cpp/releases/tag/b7157
196
+ - b7158 (b7158) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7158
197
+ - b7159 (b7159) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7159
198
+ - b7160 (b7160) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7160
199
+ - b7161 (b7161) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7161
200
+ - b7162 (b7162) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7162
201
+ - b7163 (b7163) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7163
202
+ - b7164 (b7164) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7164
203
+ - b7165 (b7165) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7165
204
+ - b7166 (b7166) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7166
205
+ - b7167 (b7167) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7167
206
+ - b7168 (b7168) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7168
207
+ - b7169 (b7169) – 2025-11-26 – https://github.com/ggml-org/llama.cpp/releases/tag/b7169
208
+ - b7170 (b7170) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7170
209
+ - b7171 (b7171) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7171
210
+ - b7172 (b7172) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7172
211
+ - b7175 (b7175) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7175
212
+ - b7176 (b7176) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7176
213
+ - b7177 (b7177) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7177
214
+ - b7178 (b7178) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7178
215
+ - b7179 (b7179) – 2025-11-27 – https://github.com/ggml-org/llama.cpp/releases/tag/b7179
216
+ - b7180 (b7180) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7180
217
+ - b7181 (b7181) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7181
218
+ - b7182 (b7182) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7182
219
+ - b7183 (b7183) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7183
220
+ - b7184 (b7184) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7184
221
+ - b7185 (b7185) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7185
222
+ - b7186 (b7186) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7186
223
+ - b7187 (b7187) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7187
224
+ - b7188 (b7188) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7188
225
+ - b7189 (b7189) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7189
226
+ - b7190 (b7190) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7190
227
+ - b7191 (b7191) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7191
228
+ - b7192 (b7192) – 2025-11-28 – https://github.com/ggml-org/llama.cpp/releases/tag/b7192
229
+ - b7194 (b7194) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7194
230
+ - b7195 (b7195) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7195
231
+ - b7196 (b7196) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7196
232
+ - b7197 (b7197) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7197
233
+ - b7198 (b7198) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7198
234
+ - b7199 (b7199) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7199
235
+ - b7200 (b7200) – 2025-11-29 – https://github.com/ggml-org/llama.cpp/releases/tag/b7200
236
+ - b7201 (b7201) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7201
237
+ - b7202 (b7202) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7202
238
+ - b7203 (b7203) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7203
239
+ - b7204 (b7204) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7204
240
+ - b7205 (b7205) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7205
241
+ - b7206 (b7206) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7206
242
+ - b7207 (b7207) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7207
243
+ - b7208 (b7208) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7208
244
+ - b7209 (b7209) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7209
245
+ - b7210 (b7210) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7210
246
+ - b7211 (b7211) – 2025-11-30 – https://github.com/ggml-org/llama.cpp/releases/tag/b7211
247
+ - b7213 (b7213) – 2025-12-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b7213
248
+
249
+
149
250
  ## 2025-11-14: Update to llama.cpp b7058
150
251
 
151
252
  - b6959 (b6959) – 2025-11-05 – https://github.com/ggml-org/llama.cpp/releases/tag/b6959