llama-cpp-pydist 0.15.0__py3-none-any.whl → 0.17.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 (457) hide show
  1. llama_cpp/binaries/{llama-b7058-bin-win-cpu-x64.zip → llama-b7278-bin-win-cpu-x64.zip} +0 -0
  2. llama_cpp_pydist-0.17.0.dist-info/METADATA +1347 -0
  3. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/RECORD +441 -317
  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 +456 -94
  7. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/release.yml +80 -17
  8. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/server.yml +9 -16
  9. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/winget.yml +1 -0
  10. vendor_llama_cpp_pydist/llama.cpp/.gitignore +47 -63
  11. vendor_llama_cpp_pydist/llama.cpp/CMakeLists.txt +21 -6
  12. vendor_llama_cpp_pydist/llama.cpp/CODEOWNERS +15 -26
  13. vendor_llama_cpp_pydist/llama.cpp/CONTRIBUTING.md +1 -0
  14. vendor_llama_cpp_pydist/llama.cpp/README.md +2 -0
  15. vendor_llama_cpp_pydist/llama.cpp/SECURITY.md +2 -0
  16. vendor_llama_cpp_pydist/llama.cpp/ci/run.sh +8 -8
  17. vendor_llama_cpp_pydist/llama.cpp/cmake/build-info.cmake +5 -21
  18. vendor_llama_cpp_pydist/llama.cpp/common/CMakeLists.txt +8 -0
  19. vendor_llama_cpp_pydist/llama.cpp/common/arg.cpp +92 -18
  20. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.cpp +861 -0
  21. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.h +45 -0
  22. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.cpp +1008 -0
  23. vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.h +10 -0
  24. vendor_llama_cpp_pydist/llama.cpp/common/chat-peg-parser.cpp +114 -0
  25. vendor_llama_cpp_pydist/llama.cpp/common/chat-peg-parser.h +105 -0
  26. vendor_llama_cpp_pydist/llama.cpp/common/chat.cpp +351 -918
  27. vendor_llama_cpp_pydist/llama.cpp/common/chat.h +16 -1
  28. vendor_llama_cpp_pydist/llama.cpp/common/common.cpp +108 -13
  29. vendor_llama_cpp_pydist/llama.cpp/common/common.h +44 -8
  30. vendor_llama_cpp_pydist/llama.cpp/common/download.cpp +18 -8
  31. vendor_llama_cpp_pydist/llama.cpp/common/download.h +3 -1
  32. vendor_llama_cpp_pydist/llama.cpp/common/json-partial.cpp +19 -2
  33. vendor_llama_cpp_pydist/llama.cpp/common/json-schema-to-grammar.cpp +5 -3
  34. vendor_llama_cpp_pydist/llama.cpp/common/json-schema-to-grammar.h +2 -0
  35. vendor_llama_cpp_pydist/llama.cpp/common/log.cpp +20 -0
  36. vendor_llama_cpp_pydist/llama.cpp/common/log.h +21 -12
  37. vendor_llama_cpp_pydist/llama.cpp/common/peg-parser.cpp +1712 -0
  38. vendor_llama_cpp_pydist/llama.cpp/common/peg-parser.h +459 -0
  39. vendor_llama_cpp_pydist/llama.cpp/common/sampling.cpp +60 -6
  40. vendor_llama_cpp_pydist/llama.cpp/common/unicode.cpp +64 -0
  41. vendor_llama_cpp_pydist/llama.cpp/common/unicode.h +22 -0
  42. vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf.py +215 -128
  43. vendor_llama_cpp_pydist/llama.cpp/convert_lora_to_gguf.py +11 -5
  44. vendor_llama_cpp_pydist/llama.cpp/docs/backend/SYCL.md +13 -0
  45. vendor_llama_cpp_pydist/llama.cpp/docs/build.md +11 -0
  46. vendor_llama_cpp_pydist/llama.cpp/docs/development/parsing.md +288 -0
  47. vendor_llama_cpp_pydist/llama.cpp/docs/ops/BLAS.csv +14953 -4344
  48. vendor_llama_cpp_pydist/llama.cpp/docs/ops/Metal.csv +16613 -6004
  49. vendor_llama_cpp_pydist/llama.cpp/docs/ops/SYCL.csv +2348 -149
  50. vendor_llama_cpp_pydist/llama.cpp/docs/ops/Vulkan.csv +14987 -4379
  51. vendor_llama_cpp_pydist/llama.cpp/docs/ops.md +59 -59
  52. vendor_llama_cpp_pydist/llama.cpp/ggml/CMakeLists.txt +54 -52
  53. vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-rpc.h +1 -1
  54. vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml.h +19 -6
  55. vendor_llama_cpp_pydist/llama.cpp/ggml/src/CMakeLists.txt +26 -8
  56. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-alloc.c +8 -3
  57. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-backend.cpp +40 -7
  58. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/acl_tensor.cpp +19 -10
  59. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/acl_tensor.h +99 -19
  60. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +968 -823
  61. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.h +61 -196
  62. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/common.h +89 -158
  63. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/ggml-cann.cpp +49 -33
  64. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/CMakeLists.txt +59 -52
  65. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +4 -0
  66. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/arm/repack.cpp +719 -0
  67. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +38 -0
  68. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/x86/repack.cpp +6 -6
  69. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch-fallback.h +22 -2
  70. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu.c +19 -13
  71. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/kleidiai/kernels.cpp +15 -5
  72. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm-ppc.h +333 -0
  73. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm.cpp +51 -125
  74. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm.h +6 -0
  75. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.cpp +132 -7
  76. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.h +1 -0
  77. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.cpp +243 -4
  78. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.h +6 -0
  79. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/simd-mappings.h +16 -14
  80. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/vec.h +133 -133
  81. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/argsort.cu +1 -1
  82. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/common.cuh +238 -18
  83. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/convert.cuh +9 -0
  84. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy-utils.cuh +1 -1
  85. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy.cu +91 -49
  86. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cumsum.cu +237 -0
  87. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cumsum.cuh +5 -0
  88. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-common.cuh +20 -12
  89. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-mma-f16.cuh +660 -590
  90. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-tile.cuh +20 -20
  91. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-vec.cuh +28 -28
  92. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cu +10 -9
  93. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +2 -2
  94. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn.cu +19 -5
  95. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +490 -16
  96. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mma.cuh +442 -70
  97. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cu +2 -2
  98. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cuh +60 -28
  99. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cu +6 -1
  100. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cuh +303 -138
  101. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cu +203 -0
  102. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cuh +3 -0
  103. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/tri.cu +136 -0
  104. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/tri.cuh +5 -0
  105. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/upscale.cu +78 -3
  106. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/vendors/hip.h +1 -1
  107. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/CMakeLists.txt +10 -0
  108. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/ggml-hexagon.cpp +99 -364
  109. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/act-ops.c +12 -18
  110. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/htp-dma.h +7 -0
  111. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-exp.c +20 -6
  112. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-inverse.c +15 -3
  113. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.c +20 -7
  114. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.h +56 -11
  115. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/main.c +12 -3
  116. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/rope-ops.c +80 -7
  117. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp-utils.c +6 -0
  118. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.cpp +386 -361
  119. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.h +67 -63
  120. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.m +83 -77
  121. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-impl.h +76 -4
  122. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.cpp +491 -157
  123. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.h +4 -0
  124. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.cpp +5 -0
  125. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.metal +358 -68
  126. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/CMakeLists.txt +5 -0
  127. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +518 -2
  128. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/mean.cl +39 -0
  129. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +273 -0
  130. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/rms_norm.cl +25 -10
  131. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/sqr.cl +53 -0
  132. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/sqrt.cl +53 -0
  133. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/ssm_conv.cl +77 -0
  134. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-rpc/ggml-rpc.cpp +91 -20
  135. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/CMakeLists.txt +6 -2
  136. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/common.hpp +26 -0
  137. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/cpy.cpp +0 -3
  138. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/element_wise.cpp +112 -250
  139. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/ggml-sycl.cpp +14 -7
  140. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/pad_reflect_1d.cpp +87 -59
  141. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/pad_reflect_1d.hpp +2 -0
  142. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +1487 -932
  143. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/abs.comp +21 -0
  144. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +28 -0
  145. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +20 -0
  146. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +20 -21
  147. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +114 -0
  148. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/ceil.comp +22 -0
  149. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +67 -0
  150. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +69 -0
  151. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +0 -7
  152. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +19 -0
  153. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +33 -15
  154. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +34 -1
  155. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +37 -19
  156. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/floor.comp +22 -0
  157. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +7 -0
  158. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +7 -0
  159. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +18 -0
  160. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +1 -0
  161. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +47 -51
  162. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +35 -0
  163. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +8 -12
  164. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +8 -12
  165. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +27 -35
  166. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +379 -0
  167. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +0 -2
  168. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +62 -196
  169. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/neg.comp +20 -0
  170. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/round.comp +29 -0
  171. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/softplus.comp +23 -0
  172. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +72 -0
  173. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/step.comp +22 -0
  174. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +1 -24
  175. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +25 -0
  176. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +118 -0
  177. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +204 -0
  178. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +43 -0
  179. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/trunc.comp +22 -0
  180. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +58 -3
  181. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/CMakeLists.txt +20 -2
  182. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/ggml-webgpu.cpp +116 -113
  183. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml.c +47 -26
  184. vendor_llama_cpp_pydist/llama.cpp/ggml/src/gguf.cpp +1 -1
  185. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/constants.py +89 -0
  186. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/gguf_writer.py +56 -6
  187. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/metadata.py +85 -0
  188. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_convert_endian.py +12 -18
  189. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_editor_gui.py +1 -1
  190. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_new_metadata.py +1 -1
  191. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/tensor_mapping.py +16 -6
  192. vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/vocab.py +30 -16
  193. vendor_llama_cpp_pydist/llama.cpp/include/llama.h +18 -0
  194. vendor_llama_cpp_pydist/llama.cpp/scripts/serve-static.js +110 -0
  195. vendor_llama_cpp_pydist/llama.cpp/scripts/sync-ggml.last +1 -1
  196. vendor_llama_cpp_pydist/llama.cpp/scripts/sync_vendor.py +3 -1
  197. vendor_llama_cpp_pydist/llama.cpp/src/CMakeLists.txt +3 -0
  198. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.cpp +124 -16
  199. vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.h +18 -0
  200. vendor_llama_cpp_pydist/llama.cpp/src/llama-context.cpp +7 -3
  201. vendor_llama_cpp_pydist/llama.cpp/src/llama-grammar.cpp +17 -9
  202. vendor_llama_cpp_pydist/llama.cpp/src/llama-graph.cpp +6 -9
  203. vendor_llama_cpp_pydist/llama.cpp/src/llama-hparams.h +3 -3
  204. vendor_llama_cpp_pydist/llama.cpp/src/llama-impl.cpp +3 -3
  205. vendor_llama_cpp_pydist/llama.cpp/src/llama-impl.h +1 -1
  206. vendor_llama_cpp_pydist/llama.cpp/src/llama-mmap.cpp +1 -1
  207. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.cpp +194 -13
  208. vendor_llama_cpp_pydist/llama.cpp/src/llama-model.h +4 -0
  209. vendor_llama_cpp_pydist/llama.cpp/src/llama-quant.cpp +13 -7
  210. vendor_llama_cpp_pydist/llama.cpp/src/llama-sampling.cpp +3 -6
  211. vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.cpp +2 -2
  212. vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek2.cpp +2 -1
  213. vendor_llama_cpp_pydist/llama.cpp/src/models/lfm2.cpp +5 -3
  214. vendor_llama_cpp_pydist/llama.cpp/src/models/mistral3.cpp +160 -0
  215. vendor_llama_cpp_pydist/llama.cpp/src/models/models.h +59 -1
  216. vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3next.cpp +1042 -0
  217. vendor_llama_cpp_pydist/llama.cpp/src/models/rnd1.cpp +126 -0
  218. vendor_llama_cpp_pydist/llama.cpp/src/unicode.cpp +2 -2
  219. vendor_llama_cpp_pydist/llama.cpp/tests/.gitignore +1 -0
  220. vendor_llama_cpp_pydist/llama.cpp/tests/CMakeLists.txt +19 -3
  221. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/simple-tokenize.cpp +37 -0
  222. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/simple-tokenize.h +6 -0
  223. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-basic.cpp +454 -0
  224. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-gbnf-generation.cpp +250 -0
  225. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-json-parser.cpp +109 -0
  226. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-json-serialization.cpp +28 -0
  227. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-unicode.cpp +449 -0
  228. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/testing.h +243 -0
  229. vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/tests.h +24 -0
  230. vendor_llama_cpp_pydist/llama.cpp/tests/test-backend-ops.cpp +274 -57
  231. vendor_llama_cpp_pydist/llama.cpp/tests/test-chat-peg-parser.cpp +768 -0
  232. vendor_llama_cpp_pydist/llama.cpp/tests/test-chat.cpp +1033 -19
  233. vendor_llama_cpp_pydist/llama.cpp/tests/test-json-schema-to-grammar.cpp +27 -1
  234. vendor_llama_cpp_pydist/llama.cpp/tests/test-peg-parser.cpp +25 -0
  235. vendor_llama_cpp_pydist/llama.cpp/tests/test-quantize-stats.cpp +1 -1
  236. vendor_llama_cpp_pydist/llama.cpp/tools/main/main.cpp +12 -2
  237. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-impl.h +5 -12
  238. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.cpp +61 -36
  239. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.h +1 -1
  240. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-cli.cpp +3 -2
  241. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.cpp +60 -3
  242. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.h +5 -0
  243. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.cpp +11 -2
  244. vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.h +5 -1
  245. vendor_llama_cpp_pydist/llama.cpp/tools/server/CMakeLists.txt +12 -6
  246. vendor_llama_cpp_pydist/llama.cpp/tools/server/README.md +329 -38
  247. vendor_llama_cpp_pydist/llama.cpp/tools/server/public/index.html.gz +0 -0
  248. vendor_llama_cpp_pydist/llama.cpp/tools/server/public_legacy/json-schema-to-grammar.mjs +2 -2
  249. vendor_llama_cpp_pydist/llama.cpp/tools/server/{utils.hpp → server-common.cpp} +1083 -961
  250. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.h +359 -0
  251. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.cpp +3636 -0
  252. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.h +83 -0
  253. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.cpp +394 -0
  254. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.h +78 -0
  255. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.cpp +1012 -0
  256. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.h +175 -0
  257. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.cpp +361 -0
  258. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.h +155 -0
  259. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.cpp +1495 -0
  260. vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.h +494 -0
  261. vendor_llama_cpp_pydist/llama.cpp/tools/server/server.cpp +234 -5732
  262. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/conftest.py +6 -0
  263. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_basic.py +1 -6
  264. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_chat_completion.py +5 -4
  265. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_compat_anthropic.py +807 -0
  266. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_router.py +194 -0
  267. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_security.py +44 -0
  268. vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/utils.py +46 -9
  269. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/.gitignore +1 -0
  270. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/.storybook/main.ts +1 -1
  271. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/README.md +650 -30
  272. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/architecture/high-level-architecture-simplified.md +102 -0
  273. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/architecture/high-level-architecture.md +269 -0
  274. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/chat-flow.md +174 -0
  275. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/conversations-flow.md +155 -0
  276. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/data-flow-simplified-model-mode.md +45 -0
  277. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/data-flow-simplified-router-mode.md +77 -0
  278. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/database-flow.md +155 -0
  279. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/models-flow.md +181 -0
  280. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/server-flow.md +76 -0
  281. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/settings-flow.md +144 -0
  282. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package-lock.json +16 -24
  283. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package.json +1 -1
  284. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/playwright.config.ts +1 -1
  285. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/scripts/dev.sh +3 -1
  286. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/app.css +2 -2
  287. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/app.d.ts +59 -16
  288. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreview.svelte +283 -0
  289. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentFilePreview.svelte → ChatAttachmentThumbnailFile.svelte} +46 -10
  290. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentImagePreview.svelte → ChatAttachmentThumbnailImage.svelte} +3 -1
  291. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsList.svelte +96 -132
  292. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsViewAll.svelte +117 -0
  293. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatForm.svelte +116 -12
  294. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActionFileAttachments.svelte → ChatFormActions/ChatFormActionFileAttachments.svelte} +26 -19
  295. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActionRecord.svelte → ChatFormActions/ChatFormActionRecord.svelte} +11 -8
  296. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions/ChatFormActionSubmit.svelte +55 -0
  297. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions/ChatFormActions.svelte +203 -0
  298. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormFileInputInvisible.svelte +12 -2
  299. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormTextarea.svelte +1 -1
  300. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessage.svelte +53 -8
  301. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageActions.svelte +14 -5
  302. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte +165 -63
  303. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageStatistics.svelte +20 -0
  304. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageUser.svelte +29 -6
  305. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessages.svelte +32 -17
  306. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte +186 -66
  307. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreenHeader.svelte +2 -2
  308. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/{ChatProcessingInfo.svelte → ChatScreen/ChatScreenProcessingInfo.svelte} +27 -45
  309. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ChatSettingsDialog.svelte → ChatSettings.svelte} +145 -164
  310. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFields.svelte +29 -25
  311. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFooter.svelte +2 -2
  312. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ImportExportTab.svelte → ChatSettingsImportExportTab.svelte} +10 -14
  313. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte +6 -12
  314. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebarConversationItem.svelte +4 -3
  315. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentPreview.svelte +67 -0
  316. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte +54 -0
  317. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ChatErrorDialog.svelte → DialogChatError.svelte} +11 -1
  318. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatSettings.svelte +37 -0
  319. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogConversationSelection.svelte +68 -0
  320. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogModelInformation.svelte +211 -0
  321. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogModelNotAvailable.svelte +76 -0
  322. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/index.ts +47 -31
  323. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ActionButton.svelte +1 -2
  324. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ActionDropdown.svelte +1 -2
  325. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/BadgeChatStatistic.svelte +25 -0
  326. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/BadgeInfo.svelte +27 -0
  327. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/BadgeModality.svelte +39 -0
  328. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ConversationSelection.svelte +205 -0
  329. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/CopyToClipboardIcon.svelte +18 -0
  330. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte +3 -2
  331. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/SyntaxHighlightedCode.svelte +96 -0
  332. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/models/ModelBadge.svelte +56 -0
  333. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/models/ModelsSelector.svelte +596 -0
  334. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/server/ServerErrorSplash.svelte +3 -3
  335. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/server/ServerStatus.svelte +3 -2
  336. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/alert-description.svelte +23 -0
  337. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/alert-title.svelte +20 -0
  338. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/alert.svelte +44 -0
  339. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/index.ts +14 -0
  340. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/sidebar/sidebar-provider.svelte +12 -15
  341. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/index.ts +28 -0
  342. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-body.svelte +20 -0
  343. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-caption.svelte +20 -0
  344. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-cell.svelte +23 -0
  345. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-footer.svelte +20 -0
  346. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-head.svelte +23 -0
  347. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-header.svelte +20 -0
  348. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-row.svelte +23 -0
  349. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table.svelte +22 -0
  350. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/default-context.ts +1 -0
  351. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/floating-ui-constraints.ts +3 -0
  352. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/icons.ts +32 -0
  353. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/localstorage-keys.ts +2 -2
  354. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/settings-config.ts +16 -10
  355. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/supported-file-types.ts +29 -4
  356. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/table-html-restorer.ts +20 -0
  357. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/attachment.ts +10 -0
  358. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/files.ts +26 -7
  359. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/index.ts +21 -0
  360. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/model.ts +5 -0
  361. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/server.ts +20 -0
  362. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/hooks/use-model-change-validation.svelte.ts +118 -0
  363. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/hooks/use-processing-state.svelte.ts +35 -60
  364. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/markdown/table-html-restorer.ts +181 -0
  365. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/chat.ts +266 -173
  366. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/{stores → services}/database.ts +51 -78
  367. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/index.ts +5 -2
  368. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/models.ts +110 -8
  369. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/parameter-sync.spec.ts +0 -1
  370. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/parameter-sync.ts +17 -2
  371. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/props.ts +77 -0
  372. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/chat.svelte.ts +953 -1313
  373. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/conversations.svelte.ts +640 -0
  374. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/models.svelte.ts +498 -104
  375. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/server.svelte.ts +79 -274
  376. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/settings.svelte.ts +99 -74
  377. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/api.d.ts +127 -1
  378. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/chat.d.ts +0 -2
  379. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/database.d.ts +15 -12
  380. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/index.ts +70 -0
  381. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/models.d.ts +10 -0
  382. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/settings.d.ts +16 -2
  383. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/api-headers.ts +22 -0
  384. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/attachment-display.ts +61 -0
  385. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/attachment-type.ts +105 -0
  386. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/audio-recording.ts +1 -1
  387. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/browser-only.ts +35 -0
  388. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/config-helpers.ts +0 -2
  389. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/convert-files-to-extra.ts +15 -11
  390. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/file-preview.ts +30 -17
  391. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/file-type.ts +151 -29
  392. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/formatters.ts +53 -0
  393. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/index.ts +87 -0
  394. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/modality-file-validation.ts +32 -18
  395. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/model-names.test.ts +10 -3
  396. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/model-names.ts +23 -6
  397. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/pdf-processing.ts +1 -1
  398. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/process-uploaded-files.ts +19 -7
  399. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/svg-to-png.ts +1 -1
  400. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/syntax-highlight-language.ts +145 -0
  401. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/text-files.ts +1 -1
  402. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/webp-to-png.ts +1 -1
  403. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+layout.svelte +75 -48
  404. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+page.svelte +72 -8
  405. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+page.ts +1 -1
  406. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/chat/[id]/+page.svelte +129 -9
  407. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/chat/[id]/+page.ts +1 -1
  408. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/client/components/TestWrapper.svelte +17 -0
  409. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/client/page.svelte.test.ts +11 -0
  410. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/ChatForm.stories.svelte +21 -39
  411. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/ChatMessage.stories.svelte +12 -12
  412. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/stories/ChatSettings.stories.svelte +19 -0
  413. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/ChatSidebar.stories.svelte +6 -6
  414. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/stories/fixtures/storybook-mocks.ts +81 -0
  415. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/vite.config.ts +4 -6
  416. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/CMakeLists.txt +98 -8
  417. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.cpp +303 -58
  418. vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.h +33 -6
  419. vendor_llama_cpp_pydist/llama.cpp/vendor/sheredom/subprocess.h +1203 -0
  420. llama_cpp_pydist-0.15.0.dist-info/METADATA +0 -602
  421. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-amd.yml +0 -52
  422. vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-riscv-native.yml +0 -120
  423. vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/Doxyfile +0 -2579
  424. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreviewDialog.svelte +0 -314
  425. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsViewAllDialog.svelte +0 -203
  426. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions.svelte +0 -63
  427. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormModelSelector.svelte +0 -358
  428. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreenWarning.svelte +0 -38
  429. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ConversationSelectionDialog.svelte +0 -249
  430. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/server/ServerInfo.svelte +0 -43
  431. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/debounce.ts +0 -1
  432. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/slots.ts +0 -322
  433. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/page.svelte.test.ts +0 -11
  434. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/ChatSettingsDialog.stories.svelte +0 -26
  435. vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/fixtures/storybook-mocks.ts +0 -50
  436. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/WHEEL +0 -0
  437. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/licenses/LICENSE +0 -0
  438. {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/top_level.txt +0 -0
  439. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ParameterSourceIndicator.svelte → ChatSettingsParameterSourceIndicator.svelte} +0 -0
  440. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ConfirmationDialog.svelte → DialogConfirmation.svelte} +0 -0
  441. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ConversationTitleUpdateDialog.svelte → DialogConversationTitleUpdate.svelte} +0 -0
  442. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{EmptyFileAlertDialog.svelte → DialogEmptyFileAlert.svelte} +0 -0
  443. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{e2e → tests/e2e}/demo.test.ts +0 -0
  444. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests/server}/demo.spec.ts +0 -0
  445. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/Introduction.mdx +0 -0
  446. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/MarkdownContent.stories.svelte +0 -0
  447. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/ai-tutorial.ts +0 -0
  448. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/api-docs.ts +0 -0
  449. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/1.jpg +0 -0
  450. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/beautiful-flowers-lotus.webp +0 -0
  451. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/example.pdf +0 -0
  452. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/hf-logo.svg +0 -0
  453. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/blog-post.ts +0 -0
  454. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/data-analysis.ts +0 -0
  455. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/empty.ts +0 -0
  456. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/math-formulas.ts +0 -0
  457. /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/readme.ts +0 -0