llama-cpp-pydist 0.12.0__py3-none-any.whl → 0.14.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 (211) hide show
  1. llama_cpp/binaries/{llama-b6900-bin-win-cpu-x64.zip → llama-b6957-bin-win-cpu-x64.zip} +0 -0
  2. {llama_cpp_pydist-0.12.0.dist-info → llama_cpp_pydist-0.14.0.dist-info}/METADATA +45 -1
  3. {llama_cpp_pydist-0.12.0.dist-info → llama_cpp_pydist-0.14.0.dist-info}/RECORD +211 -107
  4. vendor_llama_cpp_pydist/llama.cpp/.devops/s390x.Dockerfile +4 -1
  5. vendor_llama_cpp_pydist/llama.cpp/.github/labeler.yml +4 -0
  6. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-linux-cross.yml +37 -37
  7. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/release.yml +2 -2
  8. vendor_llama_cpp_pydist/llama.cpp/CODEOWNERS +1 -0
  9. vendor_llama_cpp_pydist/llama.cpp/README.md +3 -4
  10. vendor_llama_cpp_pydist/llama.cpp/common/arg.cpp +15 -1
  11. vendor_llama_cpp_pydist/llama.cpp/common/chat.cpp +17 -2
  12. vendor_llama_cpp_pydist/llama.cpp/common/common.h +6 -0
  13. vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf.py +204 -0
  14. vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf_update.py +2 -1
  15. vendor_llama_cpp_pydist/llama.cpp/docs/backend/OPENCL.md +25 -3
  16. vendor_llama_cpp_pydist/llama.cpp/docs/docker.md +3 -3
  17. vendor_llama_cpp_pydist/llama.cpp/docs/ops/CUDA.csv +1620 -0
  18. vendor_llama_cpp_pydist/llama.cpp/docs/ops.md +5 -5
  19. vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml.h +1 -0
  20. vendor_llama_cpp_pydist/llama.cpp/ggml/src/CMakeLists.txt +6 -3
  21. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/CMakeLists.txt +10 -3
  22. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/loongarch/quants.c +4 -5
  23. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +50 -0
  24. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu-impl.h +3 -1
  25. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.cpp +57 -8
  26. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.cpp +25 -0
  27. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/simd-mappings.h +25 -25
  28. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/common.cuh +9 -1
  29. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-tile.cu +4 -0
  30. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-tile.cuh +29 -2
  31. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn.cu +3 -2
  32. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +33 -0
  33. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mma.cuh +213 -24
  34. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cu +1 -1
  35. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cuh +31 -10
  36. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmvq.cu +8 -6
  37. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq72-dv72.cu +5 -0
  38. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +3 -1
  39. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/unary.cu +32 -0
  40. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/unary.cuh +8 -0
  41. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/ops-utils.h +17 -17
  42. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.m +1 -0
  43. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.metal +8 -0
  44. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +6 -0
  45. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/rope.cl +50 -24
  46. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/repeat_back.cpp +45 -25
  47. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +650 -513
  48. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +32 -2
  49. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +6 -0
  50. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +6 -0
  51. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/multi_add.comp +94 -10
  52. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/ggml-webgpu.cpp +65 -23
  53. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/wgsl-shaders/{set_rows.wgsl → set_rows.tmpl.wgsl} +38 -7
  54. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/constants.py +41 -0
  55. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/tensor_mapping.py +3 -0
  56. vendor_llama_cpp_pydist/llama.cpp/include/llama.h +4 -3
  57. vendor_llama_cpp_pydist/llama.cpp/scripts/bench-models.sh +74 -0
  58. vendor_llama_cpp_pydist/llama.cpp/scripts/sync-ggml.last +1 -1
  59. vendor_llama_cpp_pydist/llama.cpp/src/CMakeLists.txt +95 -0
  60. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.cpp +40 -0
  61. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.h +2 -0
  62. vendor_llama_cpp_pydist/llama.cpp/src/llama-chat.cpp +32 -0
  63. vendor_llama_cpp_pydist/llama.cpp/src/llama-chat.h +1 -0
  64. vendor_llama_cpp_pydist/llama.cpp/src/llama-context.cpp +27 -10
  65. vendor_llama_cpp_pydist/llama.cpp/src/llama-context.h +5 -5
  66. vendor_llama_cpp_pydist/llama.cpp/src/llama-cparams.h +1 -0
  67. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.cpp +232 -13570
  68. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.h +1 -0
  69. vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.cpp +5 -0
  70. vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.h +1 -0
  71. vendor_llama_cpp_pydist/llama.cpp/src/models/apertus.cpp +125 -0
  72. vendor_llama_cpp_pydist/llama.cpp/src/models/arcee.cpp +135 -0
  73. vendor_llama_cpp_pydist/llama.cpp/src/models/arctic.cpp +138 -0
  74. vendor_llama_cpp_pydist/llama.cpp/src/models/arwkv7.cpp +86 -0
  75. vendor_llama_cpp_pydist/llama.cpp/src/models/baichuan.cpp +122 -0
  76. vendor_llama_cpp_pydist/llama.cpp/src/models/bailingmoe.cpp +144 -0
  77. vendor_llama_cpp_pydist/llama.cpp/src/models/bailingmoe2.cpp +135 -0
  78. vendor_llama_cpp_pydist/llama.cpp/src/models/bert.cpp +176 -0
  79. vendor_llama_cpp_pydist/llama.cpp/src/models/bitnet.cpp +160 -0
  80. vendor_llama_cpp_pydist/llama.cpp/src/models/bloom.cpp +101 -0
  81. vendor_llama_cpp_pydist/llama.cpp/src/models/chameleon.cpp +178 -0
  82. vendor_llama_cpp_pydist/llama.cpp/src/models/chatglm.cpp +132 -0
  83. vendor_llama_cpp_pydist/llama.cpp/src/models/codeshell.cpp +111 -0
  84. vendor_llama_cpp_pydist/llama.cpp/src/models/cogvlm.cpp +100 -0
  85. vendor_llama_cpp_pydist/llama.cpp/src/models/cohere2-iswa.cpp +131 -0
  86. vendor_llama_cpp_pydist/llama.cpp/src/models/command-r.cpp +122 -0
  87. vendor_llama_cpp_pydist/llama.cpp/src/models/dbrx.cpp +123 -0
  88. vendor_llama_cpp_pydist/llama.cpp/src/models/deci.cpp +135 -0
  89. vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek.cpp +144 -0
  90. vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek2.cpp +236 -0
  91. vendor_llama_cpp_pydist/llama.cpp/src/models/dots1.cpp +134 -0
  92. vendor_llama_cpp_pydist/llama.cpp/src/models/dream.cpp +105 -0
  93. vendor_llama_cpp_pydist/llama.cpp/src/models/ernie4-5-moe.cpp +150 -0
  94. vendor_llama_cpp_pydist/llama.cpp/src/models/ernie4-5.cpp +111 -0
  95. vendor_llama_cpp_pydist/llama.cpp/src/models/exaone.cpp +114 -0
  96. vendor_llama_cpp_pydist/llama.cpp/src/models/exaone4.cpp +123 -0
  97. vendor_llama_cpp_pydist/llama.cpp/src/models/falcon-h1.cpp +113 -0
  98. vendor_llama_cpp_pydist/llama.cpp/src/models/falcon.cpp +120 -0
  99. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma-embedding.cpp +120 -0
  100. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma.cpp +112 -0
  101. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma2-iswa.cpp +125 -0
  102. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma3-iswa.cpp +131 -0
  103. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma3n-iswa.cpp +377 -0
  104. vendor_llama_cpp_pydist/llama.cpp/src/models/glm4-moe.cpp +153 -0
  105. vendor_llama_cpp_pydist/llama.cpp/src/models/glm4.cpp +127 -0
  106. vendor_llama_cpp_pydist/llama.cpp/src/models/gpt2.cpp +105 -0
  107. vendor_llama_cpp_pydist/llama.cpp/src/models/gptneox.cpp +144 -0
  108. vendor_llama_cpp_pydist/llama.cpp/src/models/granite-hybrid.cpp +196 -0
  109. vendor_llama_cpp_pydist/llama.cpp/src/models/granite.cpp +211 -0
  110. vendor_llama_cpp_pydist/llama.cpp/src/models/graph-context-mamba.cpp +283 -0
  111. vendor_llama_cpp_pydist/llama.cpp/src/models/grok.cpp +159 -0
  112. vendor_llama_cpp_pydist/llama.cpp/src/models/grovemoe.cpp +141 -0
  113. vendor_llama_cpp_pydist/llama.cpp/src/models/hunyuan-dense.cpp +132 -0
  114. vendor_llama_cpp_pydist/llama.cpp/src/models/hunyuan-moe.cpp +154 -0
  115. vendor_llama_cpp_pydist/llama.cpp/src/models/internlm2.cpp +120 -0
  116. vendor_llama_cpp_pydist/llama.cpp/src/models/jais.cpp +86 -0
  117. vendor_llama_cpp_pydist/llama.cpp/src/models/jamba.cpp +106 -0
  118. vendor_llama_cpp_pydist/llama.cpp/src/models/lfm2.cpp +173 -0
  119. vendor_llama_cpp_pydist/llama.cpp/src/models/llada-moe.cpp +122 -0
  120. vendor_llama_cpp_pydist/llama.cpp/src/models/llada.cpp +99 -0
  121. vendor_llama_cpp_pydist/llama.cpp/src/models/llama-iswa.cpp +174 -0
  122. vendor_llama_cpp_pydist/llama.cpp/src/models/llama.cpp +155 -0
  123. vendor_llama_cpp_pydist/llama.cpp/src/models/mamba.cpp +55 -0
  124. vendor_llama_cpp_pydist/llama.cpp/src/models/minicpm3.cpp +199 -0
  125. vendor_llama_cpp_pydist/llama.cpp/src/models/minimax-m2.cpp +124 -0
  126. vendor_llama_cpp_pydist/llama.cpp/src/models/models.h +481 -0
  127. vendor_llama_cpp_pydist/llama.cpp/src/models/mpt.cpp +126 -0
  128. vendor_llama_cpp_pydist/llama.cpp/src/models/nemotron-h.cpp +121 -0
  129. vendor_llama_cpp_pydist/llama.cpp/src/models/nemotron.cpp +122 -0
  130. vendor_llama_cpp_pydist/llama.cpp/src/models/neo-bert.cpp +104 -0
  131. vendor_llama_cpp_pydist/llama.cpp/src/models/olmo.cpp +121 -0
  132. vendor_llama_cpp_pydist/llama.cpp/src/models/olmo2.cpp +150 -0
  133. vendor_llama_cpp_pydist/llama.cpp/src/models/olmoe.cpp +124 -0
  134. vendor_llama_cpp_pydist/llama.cpp/src/models/openai-moe-iswa.cpp +123 -0
  135. vendor_llama_cpp_pydist/llama.cpp/src/models/openelm.cpp +124 -0
  136. vendor_llama_cpp_pydist/llama.cpp/src/models/orion.cpp +123 -0
  137. vendor_llama_cpp_pydist/llama.cpp/src/models/pangu-embedded.cpp +121 -0
  138. vendor_llama_cpp_pydist/llama.cpp/src/models/phi2.cpp +121 -0
  139. vendor_llama_cpp_pydist/llama.cpp/src/models/phi3.cpp +152 -0
  140. vendor_llama_cpp_pydist/llama.cpp/src/models/plamo.cpp +110 -0
  141. vendor_llama_cpp_pydist/llama.cpp/src/models/plamo2.cpp +316 -0
  142. vendor_llama_cpp_pydist/llama.cpp/src/models/plm.cpp +168 -0
  143. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen.cpp +108 -0
  144. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen2.cpp +117 -0
  145. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen2moe.cpp +151 -0
  146. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen2vl.cpp +117 -0
  147. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3.cpp +117 -0
  148. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3moe.cpp +124 -0
  149. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3vl-moe.cpp +150 -0
  150. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3vl.cpp +144 -0
  151. vendor_llama_cpp_pydist/llama.cpp/src/models/refact.cpp +94 -0
  152. vendor_llama_cpp_pydist/llama.cpp/src/models/rwkv6-base.cpp +162 -0
  153. vendor_llama_cpp_pydist/llama.cpp/src/models/rwkv6.cpp +94 -0
  154. vendor_llama_cpp_pydist/llama.cpp/src/models/rwkv6qwen2.cpp +86 -0
  155. vendor_llama_cpp_pydist/llama.cpp/src/models/rwkv7-base.cpp +135 -0
  156. vendor_llama_cpp_pydist/llama.cpp/src/models/rwkv7.cpp +90 -0
  157. vendor_llama_cpp_pydist/llama.cpp/src/models/seed-oss.cpp +124 -0
  158. vendor_llama_cpp_pydist/llama.cpp/src/models/smallthinker.cpp +120 -0
  159. vendor_llama_cpp_pydist/llama.cpp/src/models/smollm3.cpp +128 -0
  160. vendor_llama_cpp_pydist/llama.cpp/src/models/stablelm.cpp +146 -0
  161. vendor_llama_cpp_pydist/llama.cpp/src/models/starcoder.cpp +100 -0
  162. vendor_llama_cpp_pydist/llama.cpp/src/models/starcoder2.cpp +121 -0
  163. vendor_llama_cpp_pydist/llama.cpp/src/models/t5-dec.cpp +166 -0
  164. vendor_llama_cpp_pydist/llama.cpp/src/models/t5-enc.cpp +96 -0
  165. vendor_llama_cpp_pydist/llama.cpp/src/models/wavtokenizer-dec.cpp +149 -0
  166. vendor_llama_cpp_pydist/llama.cpp/src/models/xverse.cpp +108 -0
  167. vendor_llama_cpp_pydist/llama.cpp/tests/test-backend-ops.cpp +21 -2
  168. vendor_llama_cpp_pydist/llama.cpp/tests/test-thread-safety.cpp +8 -1
  169. vendor_llama_cpp_pydist/llama.cpp/tools/batched-bench/batched-bench.cpp +0 -2
  170. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-impl.h +3 -1
  171. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.cpp +659 -367
  172. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.h +10 -0
  173. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-cli.cpp +7 -4
  174. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.cpp +29 -14
  175. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.h +5 -0
  176. vendor_llama_cpp_pydist/llama.cpp/tools/server/README.md +1 -1
  177. vendor_llama_cpp_pydist/llama.cpp/tools/server/public/index.html.gz +0 -0
  178. vendor_llama_cpp_pydist/llama.cpp/tools/server/server.cpp +89 -21
  179. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_chat_completion.py +4 -4
  180. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_completion.py +31 -0
  181. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_infill.py +2 -2
  182. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/utils.py +3 -0
  183. vendor_llama_cpp_pydist/llama.cpp/tools/server/utils.hpp +2 -1
  184. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package-lock.json +361 -0
  185. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package.json +1 -0
  186. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreviewDialog.svelte +9 -0
  187. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte +61 -16
  188. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsDialog.svelte +5 -0
  189. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/CodePreviewDialog.svelte +93 -0
  190. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte +140 -55
  191. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/latex-protection.ts +35 -0
  192. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/settings-config.ts +3 -0
  193. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/supported-file-types.ts +4 -0
  194. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/files.ts +3 -0
  195. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/chat.ts +16 -4
  196. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/chat.svelte.ts +52 -2
  197. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/server.svelte.ts +113 -64
  198. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/api.d.ts +1 -0
  199. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/settings.d.ts +1 -0
  200. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/latex-protection.test.ts +355 -0
  201. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/latex-protection.ts +267 -0
  202. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/fixtures/math-formulas.ts +65 -0
  203. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/styles/katex-custom.scss +13 -0
  204. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/svelte.config.js +3 -0
  205. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/vite.config.ts +28 -3
  206. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.h +211 -57
  207. vendor_llama_cpp_pydist/llama.cpp/vendor/minja/chat-template.hpp +9 -2
  208. vendor_llama_cpp_pydist/llama.cpp/vendor/minja/minja.hpp +5 -7
  209. {llama_cpp_pydist-0.12.0.dist-info → llama_cpp_pydist-0.14.0.dist-info}/WHEEL +0 -0
  210. {llama_cpp_pydist-0.12.0.dist-info → llama_cpp_pydist-0.14.0.dist-info}/licenses/LICENSE +0 -0
  211. {llama_cpp_pydist-0.12.0.dist-info → llama_cpp_pydist-0.14.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llama_cpp_pydist
3
- Version: 0.12.0
3
+ Version: 0.14.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,50 @@ For instructions on how to build the package from source, update the `llama.cpp`
146
146
 
147
147
  # Changelog
148
148
 
149
+ ## 2025-11-05: Update to llama.cpp b6957
150
+
151
+ - b6919 (b6919) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6919
152
+ - b6920 (b6920) – 2025-11-02 – https://github.com/ggml-org/llama.cpp/releases/tag/b6920
153
+ - b6922 (b6922) – 2025-11-02 – https://github.com/ggml-org/llama.cpp/releases/tag/b6922
154
+ - b6923 (b6923) – 2025-11-02 – https://github.com/ggml-org/llama.cpp/releases/tag/b6923
155
+ - b6924 (b6924) – 2025-11-02 – https://github.com/ggml-org/llama.cpp/releases/tag/b6924
156
+ - b6927 (b6927) – 2025-11-02 – https://github.com/ggml-org/llama.cpp/releases/tag/b6927
157
+ - b6929 (b6929) – 2025-11-02 – https://github.com/ggml-org/llama.cpp/releases/tag/b6929
158
+ - b6931 (b6931) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6931
159
+ - b6932 (b6932) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6932
160
+ - b6933 (b6933) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6933
161
+ - b6934 (b6934) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6934
162
+ - b6935 (b6935) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6935
163
+ - b6936 (b6936) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6936
164
+ - b6937 (b6937) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6937
165
+ - b6940 (b6940) – 2025-11-03 – https://github.com/ggml-org/llama.cpp/releases/tag/b6940
166
+ - b6941 (b6941) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6941
167
+ - b6942 (b6942) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6942
168
+ - b6943 (b6943) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6943
169
+ - b6945 (b6945) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6945
170
+ - b6947 (b6947) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6947
171
+ - b6948 (b6948) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6948
172
+ - b6949 (b6949) – 2025-11-04 – https://github.com/ggml-org/llama.cpp/releases/tag/b6949
173
+ - b6953 (b6953) – 2025-11-05 – https://github.com/ggml-org/llama.cpp/releases/tag/b6953
174
+ - b6954 (b6954) – 2025-11-05 – https://github.com/ggml-org/llama.cpp/releases/tag/b6954
175
+ - b6955 (b6955) – 2025-11-05 – https://github.com/ggml-org/llama.cpp/releases/tag/b6955
176
+ - b6957 (b6957) – 2025-11-05 – https://github.com/ggml-org/llama.cpp/releases/tag/b6957
177
+
178
+
179
+ ## 2025-11-01: Update to llama.cpp b6916
180
+
181
+ - b6904 (b6904) – 2025-10-31 – https://github.com/ggml-org/llama.cpp/releases/tag/b6904
182
+ - b6905 (b6905) – 2025-10-31 – https://github.com/ggml-org/llama.cpp/releases/tag/b6905
183
+ - b6906 (b6906) – 2025-10-31 – https://github.com/ggml-org/llama.cpp/releases/tag/b6906
184
+ - b6907 (b6907) – 2025-10-31 – https://github.com/ggml-org/llama.cpp/releases/tag/b6907
185
+ - b6908 (b6908) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6908
186
+ - b6909 (b6909) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6909
187
+ - b6910 (b6910) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6910
188
+ - b6912 (b6912) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6912
189
+ - b6915 (b6915) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6915
190
+ - b6916 (b6916) – 2025-11-01 – https://github.com/ggml-org/llama.cpp/releases/tag/b6916
191
+
192
+
149
193
  ## 2025-10-31: Update to llama.cpp b6900
150
194
 
151
195
  - b6793 (b6793) – 2025-10-18 – https://github.com/ggml-org/llama.cpp/releases/tag/b6793