llama-cpp-pydist 0.19.0__py3-none-any.whl → 0.20.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 (210) hide show
  1. llama_cpp/binaries/{llama-b7488-bin-win-cpu-x64.zip → llama-b7621-bin-win-cpu-x64.zip} +0 -0
  2. llama_cpp_pydist-0.20.0.dist-info/METADATA +4539 -0
  3. {llama_cpp_pydist-0.19.0.dist-info → llama_cpp_pydist-0.20.0.dist-info}/RECORD +208 -193
  4. {llama_cpp_pydist-0.19.0.dist-info → llama_cpp_pydist-0.20.0.dist-info}/WHEEL +1 -1
  5. vendor_llama_cpp_pydist/llama.cpp/.devops/cuda-new.Dockerfile +95 -0
  6. vendor_llama_cpp_pydist/llama.cpp/.gemini/settings.json +1 -0
  7. vendor_llama_cpp_pydist/llama.cpp/.github/ISSUE_TEMPLATE/010-bug-compilation.yml +2 -1
  8. vendor_llama_cpp_pydist/llama.cpp/.github/ISSUE_TEMPLATE/011-bug-results.yml +13 -2
  9. vendor_llama_cpp_pydist/llama.cpp/.github/ISSUE_TEMPLATE/019-bug-misc.yml +13 -2
  10. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/docker.yml +25 -13
  11. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/release.yml +6 -4
  12. vendor_llama_cpp_pydist/llama.cpp/AGENTS.md +81 -0
  13. vendor_llama_cpp_pydist/llama.cpp/CLAUDE.md +1 -0
  14. vendor_llama_cpp_pydist/llama.cpp/CONTRIBUTING.md +34 -5
  15. vendor_llama_cpp_pydist/llama.cpp/common/CMakeLists.txt +4 -3
  16. vendor_llama_cpp_pydist/llama.cpp/common/arg.cpp +39 -14
  17. vendor_llama_cpp_pydist/llama.cpp/common/arg.h +1 -0
  18. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.cpp +11 -0
  19. vendor_llama_cpp_pydist/llama.cpp/common/chat.cpp +32 -3
  20. vendor_llama_cpp_pydist/llama.cpp/common/chat.h +1 -0
  21. vendor_llama_cpp_pydist/llama.cpp/common/common.cpp +23 -23
  22. vendor_llama_cpp_pydist/llama.cpp/common/common.h +3 -2
  23. vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf.py +417 -102
  24. vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf_update.py +5 -0
  25. vendor_llama_cpp_pydist/llama.cpp/docs/backend/OPENCL.md +1 -1
  26. vendor_llama_cpp_pydist/llama.cpp/docs/backend/SYCL.md +1 -1
  27. vendor_llama_cpp_pydist/llama.cpp/docs/backend/hexagon/README.md +5 -5
  28. vendor_llama_cpp_pydist/llama.cpp/docs/backend/hexagon/developer.md +1 -1
  29. vendor_llama_cpp_pydist/llama.cpp/docs/build.md +21 -2
  30. vendor_llama_cpp_pydist/llama.cpp/docs/development/parsing.md +2 -2
  31. vendor_llama_cpp_pydist/llama.cpp/docs/ops/Metal.csv +360 -322
  32. vendor_llama_cpp_pydist/llama.cpp/docs/ops.md +1 -1
  33. vendor_llama_cpp_pydist/llama.cpp/ggml/CMakeLists.txt +13 -1
  34. vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-backend.h +1 -1
  35. vendor_llama_cpp_pydist/llama.cpp/ggml/src/CMakeLists.txt +23 -9
  36. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-backend.cpp +11 -11
  37. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +248 -19
  38. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.h +3 -0
  39. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/common.h +153 -9
  40. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/ggml-cann.cpp +21 -172
  41. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/CMakeLists.txt +12 -2
  42. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu-impl.h +1 -1
  43. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/kleidiai/kernels.cpp +86 -25
  44. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +15 -8
  45. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm.cpp +768 -0
  46. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/simd-mappings.h +0 -4
  47. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/CMakeLists.txt +42 -1
  48. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/argsort.cu +2 -2
  49. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/common.cuh +36 -0
  50. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy.cu +117 -103
  51. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cumsum.cu +69 -33
  52. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-common.cuh +3 -1
  53. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-mma-f16.cuh +2 -2
  54. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +67 -31
  55. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mean.cu +3 -0
  56. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mma.cuh +21 -0
  57. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cu +34 -8
  58. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cuh +168 -13
  59. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/quantize.cu +151 -0
  60. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/quantize.cuh +14 -0
  61. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/topk-moe.cu +17 -2
  62. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/topk-moe.cuh +6 -1
  63. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/vendors/cuda.h +4 -0
  64. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/ggml-hexagon.cpp +224 -758
  65. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/act-ops.c +316 -164
  66. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/htp-dma.c +5 -11
  67. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/htp-dma.h +46 -15
  68. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.h +9 -3
  69. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/main.c +2 -1
  70. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/matmul-ops.c +20 -20
  71. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp-utils.h +1 -0
  72. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/op-desc.h +153 -0
  73. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-impl.h +0 -4
  74. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.cpp +57 -0
  75. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.h +2 -0
  76. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.m +5 -0
  77. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-impl.h +20 -0
  78. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.cpp +71 -2
  79. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.h +1 -0
  80. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.metal +73 -6
  81. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +134 -13
  82. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/cvt.cl +21 -0
  83. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/transpose.cl +13 -0
  84. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-rpc/ggml-rpc.cpp +14 -7
  85. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/CMakeLists.txt +42 -1
  86. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +710 -290
  87. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/count_experts.comp +51 -0
  88. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +28 -14
  89. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass1.comp +60 -0
  90. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass2.comp +66 -0
  91. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +1 -7
  92. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_head.glsl +2 -0
  93. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp +17 -4
  94. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp +42 -24
  95. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +11 -0
  96. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +115 -0
  97. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp +10 -4
  98. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_cm2.comp +29 -18
  99. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_funcs.glsl +19 -16
  100. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_id_funcs.glsl +3 -1
  101. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +10 -4
  102. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_funcs.glsl +11 -4
  103. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_multi.comp +4 -1
  104. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_neox.comp +4 -1
  105. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_norm.comp +4 -1
  106. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_params.glsl +1 -0
  107. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_vision.comp +4 -1
  108. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_moe.comp +50 -20
  109. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/types.glsl +312 -6
  110. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp +54 -0
  111. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +10 -2
  112. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/xielu.comp +35 -0
  113. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/constants.py +99 -0
  114. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/gguf_writer.py +38 -2
  115. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/tensor_mapping.py +26 -0
  116. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/utility.py +0 -8
  117. vendor_llama_cpp_pydist/llama.cpp/grammars/README.md +3 -0
  118. vendor_llama_cpp_pydist/llama.cpp/include/llama.h +13 -4
  119. vendor_llama_cpp_pydist/llama.cpp/scripts/snapdragon/adb/run-cli.sh +9 -9
  120. vendor_llama_cpp_pydist/llama.cpp/scripts/snapdragon/adb/run-completion.sh +53 -0
  121. vendor_llama_cpp_pydist/llama.cpp/scripts/sync-ggml.last +1 -1
  122. vendor_llama_cpp_pydist/llama.cpp/src/CMakeLists.txt +4 -0
  123. vendor_llama_cpp_pydist/llama.cpp/src/llama-adapter.cpp +12 -3
  124. vendor_llama_cpp_pydist/llama.cpp/src/llama-adapter.h +7 -1
  125. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.cpp +76 -0
  126. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.h +7 -0
  127. vendor_llama_cpp_pydist/llama.cpp/src/llama-chat.cpp +11 -0
  128. vendor_llama_cpp_pydist/llama.cpp/src/llama-chat.h +1 -0
  129. vendor_llama_cpp_pydist/llama.cpp/src/llama-context.cpp +23 -22
  130. vendor_llama_cpp_pydist/llama.cpp/src/llama-hparams.h +4 -3
  131. vendor_llama_cpp_pydist/llama.cpp/src/llama-kv-cache.h +1 -1
  132. vendor_llama_cpp_pydist/llama.cpp/src/llama-mmap.cpp +11 -4
  133. vendor_llama_cpp_pydist/llama.cpp/src/llama-model-loader.cpp +23 -0
  134. vendor_llama_cpp_pydist/llama.cpp/src/llama-model-loader.h +2 -0
  135. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.cpp +287 -16
  136. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.h +13 -2
  137. vendor_llama_cpp_pydist/llama.cpp/src/llama-sampling.cpp +44 -33
  138. vendor_llama_cpp_pydist/llama.cpp/src/llama-sampling.h +3 -0
  139. vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.cpp +101 -33
  140. vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.h +2 -0
  141. vendor_llama_cpp_pydist/llama.cpp/src/llama.cpp +52 -37
  142. vendor_llama_cpp_pydist/llama.cpp/src/models/bert.cpp +4 -2
  143. vendor_llama_cpp_pydist/llama.cpp/src/models/cogvlm.cpp +5 -3
  144. vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek2.cpp +1 -1
  145. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma-embedding.cpp +2 -6
  146. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma3.cpp +3 -4
  147. vendor_llama_cpp_pydist/llama.cpp/src/models/gemma3n-iswa.cpp +4 -7
  148. vendor_llama_cpp_pydist/llama.cpp/src/models/llama.cpp +19 -6
  149. vendor_llama_cpp_pydist/llama.cpp/src/models/maincoder.cpp +117 -0
  150. vendor_llama_cpp_pydist/llama.cpp/src/models/mimo2-iswa.cpp +123 -0
  151. vendor_llama_cpp_pydist/llama.cpp/src/models/models.h +18 -0
  152. vendor_llama_cpp_pydist/llama.cpp/src/models/modern-bert.cpp +115 -0
  153. vendor_llama_cpp_pydist/llama.cpp/src/models/plamo3.cpp +128 -0
  154. vendor_llama_cpp_pydist/llama.cpp/src/unicode.cpp +23 -14
  155. vendor_llama_cpp_pydist/llama.cpp/tests/test-backend-ops.cpp +193 -61
  156. vendor_llama_cpp_pydist/llama.cpp/tests/test-chat.cpp +29 -3
  157. vendor_llama_cpp_pydist/llama.cpp/tests/test-grammar-llguidance.cpp +3 -0
  158. vendor_llama_cpp_pydist/llama.cpp/tests/test-tokenizer-0.cpp +1 -1
  159. vendor_llama_cpp_pydist/llama.cpp/tests/test-tokenizer-1-bpe.cpp +1 -1
  160. vendor_llama_cpp_pydist/llama.cpp/tests/test-tokenizer-1-spm.cpp +1 -1
  161. vendor_llama_cpp_pydist/llama.cpp/tools/batched-bench/batched-bench.cpp +11 -0
  162. vendor_llama_cpp_pydist/llama.cpp/tools/cli/README.md +187 -1
  163. vendor_llama_cpp_pydist/llama.cpp/tools/cli/cli.cpp +1 -3
  164. vendor_llama_cpp_pydist/llama.cpp/tools/completion/README.md +179 -7
  165. vendor_llama_cpp_pydist/llama.cpp/tools/completion/completion.cpp +4 -1
  166. vendor_llama_cpp_pydist/llama.cpp/tools/fit-params/fit-params.cpp +3 -3
  167. vendor_llama_cpp_pydist/llama.cpp/tools/llama-bench/llama-bench.cpp +18 -1
  168. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/CMakeLists.txt +1 -0
  169. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-impl.h +12 -7
  170. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-model.h +3 -1
  171. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.cpp +110 -4
  172. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/models.h +10 -0
  173. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/whisper-enc.cpp +9 -0
  174. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/youtuvl.cpp +179 -0
  175. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.cpp +5 -1
  176. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.h +3 -0
  177. vendor_llama_cpp_pydist/llama.cpp/tools/quantize/quantize.cpp +6 -0
  178. vendor_llama_cpp_pydist/llama.cpp/tools/server/CMakeLists.txt +0 -8
  179. vendor_llama_cpp_pydist/llama.cpp/tools/server/README-dev.md +2 -0
  180. vendor_llama_cpp_pydist/llama.cpp/tools/server/README.md +27 -14
  181. vendor_llama_cpp_pydist/llama.cpp/tools/server/public/index.html.gz +0 -0
  182. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.cpp +10 -17
  183. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.h +2 -3
  184. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.cpp +434 -267
  185. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.h +52 -15
  186. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.cpp +16 -10
  187. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.cpp +127 -57
  188. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.h +11 -2
  189. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.cpp +78 -21
  190. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.h +48 -10
  191. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.cpp +33 -11
  192. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.h +28 -35
  193. vendor_llama_cpp_pydist/llama.cpp/tools/server/server.cpp +7 -3
  194. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_chat_completion.py +11 -2
  195. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_sleep.py +39 -0
  196. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/utils.py +3 -0
  197. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte +25 -1
  198. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageStatistics.svelte +66 -13
  199. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/hooks/use-processing-state.svelte.ts +125 -11
  200. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/chat.ts +12 -8
  201. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/chat.svelte.ts +10 -3
  202. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/settings.svelte.ts +4 -5
  203. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/api.d.ts +2 -0
  204. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/settings.d.ts +1 -1
  205. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/clipboard.ts +1 -4
  206. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+layout.svelte +1 -1
  207. llama_cpp_pydist-0.19.0.dist-info/METADATA +0 -2506
  208. vendor_llama_cpp_pydist/llama.cpp/.github/copilot-instructions.md +0 -262
  209. {llama_cpp_pydist-0.19.0.dist-info/licenses → llama_cpp_pydist-0.20.0.dist-info}/LICENSE +0 -0
  210. {llama_cpp_pydist-0.19.0.dist-info → llama_cpp_pydist-0.20.0.dist-info}/top_level.txt +0 -0