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.
- llama_cpp/binaries/{llama-b7058-bin-win-cpu-x64.zip → llama-b7278-bin-win-cpu-x64.zip} +0 -0
- llama_cpp_pydist-0.17.0.dist-info/METADATA +1347 -0
- {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/RECORD +441 -317
- vendor_llama_cpp_pydist/llama.cpp/.devops/cann.Dockerfile +5 -6
- vendor_llama_cpp_pydist/llama.cpp/.devops/vulkan.Dockerfile +2 -3
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build.yml +456 -94
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/release.yml +80 -17
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/server.yml +9 -16
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/winget.yml +1 -0
- vendor_llama_cpp_pydist/llama.cpp/.gitignore +47 -63
- vendor_llama_cpp_pydist/llama.cpp/CMakeLists.txt +21 -6
- vendor_llama_cpp_pydist/llama.cpp/CODEOWNERS +15 -26
- vendor_llama_cpp_pydist/llama.cpp/CONTRIBUTING.md +1 -0
- vendor_llama_cpp_pydist/llama.cpp/README.md +2 -0
- vendor_llama_cpp_pydist/llama.cpp/SECURITY.md +2 -0
- vendor_llama_cpp_pydist/llama.cpp/ci/run.sh +8 -8
- vendor_llama_cpp_pydist/llama.cpp/cmake/build-info.cmake +5 -21
- vendor_llama_cpp_pydist/llama.cpp/common/CMakeLists.txt +8 -0
- vendor_llama_cpp_pydist/llama.cpp/common/arg.cpp +92 -18
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.cpp +861 -0
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.h +45 -0
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.cpp +1008 -0
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.h +10 -0
- vendor_llama_cpp_pydist/llama.cpp/common/chat-peg-parser.cpp +114 -0
- vendor_llama_cpp_pydist/llama.cpp/common/chat-peg-parser.h +105 -0
- vendor_llama_cpp_pydist/llama.cpp/common/chat.cpp +351 -918
- vendor_llama_cpp_pydist/llama.cpp/common/chat.h +16 -1
- vendor_llama_cpp_pydist/llama.cpp/common/common.cpp +108 -13
- vendor_llama_cpp_pydist/llama.cpp/common/common.h +44 -8
- vendor_llama_cpp_pydist/llama.cpp/common/download.cpp +18 -8
- vendor_llama_cpp_pydist/llama.cpp/common/download.h +3 -1
- vendor_llama_cpp_pydist/llama.cpp/common/json-partial.cpp +19 -2
- vendor_llama_cpp_pydist/llama.cpp/common/json-schema-to-grammar.cpp +5 -3
- vendor_llama_cpp_pydist/llama.cpp/common/json-schema-to-grammar.h +2 -0
- vendor_llama_cpp_pydist/llama.cpp/common/log.cpp +20 -0
- vendor_llama_cpp_pydist/llama.cpp/common/log.h +21 -12
- vendor_llama_cpp_pydist/llama.cpp/common/peg-parser.cpp +1712 -0
- vendor_llama_cpp_pydist/llama.cpp/common/peg-parser.h +459 -0
- vendor_llama_cpp_pydist/llama.cpp/common/sampling.cpp +60 -6
- vendor_llama_cpp_pydist/llama.cpp/common/unicode.cpp +64 -0
- vendor_llama_cpp_pydist/llama.cpp/common/unicode.h +22 -0
- vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf.py +215 -128
- vendor_llama_cpp_pydist/llama.cpp/convert_lora_to_gguf.py +11 -5
- vendor_llama_cpp_pydist/llama.cpp/docs/backend/SYCL.md +13 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/build.md +11 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/development/parsing.md +288 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/BLAS.csv +14953 -4344
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/Metal.csv +16613 -6004
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/SYCL.csv +2348 -149
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/Vulkan.csv +14987 -4379
- vendor_llama_cpp_pydist/llama.cpp/docs/ops.md +59 -59
- vendor_llama_cpp_pydist/llama.cpp/ggml/CMakeLists.txt +54 -52
- vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-rpc.h +1 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml.h +19 -6
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/CMakeLists.txt +26 -8
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-alloc.c +8 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-backend.cpp +40 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/acl_tensor.cpp +19 -10
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/acl_tensor.h +99 -19
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +968 -823
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.h +61 -196
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/common.h +89 -158
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/ggml-cann.cpp +49 -33
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/CMakeLists.txt +59 -52
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +4 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/arm/repack.cpp +719 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +38 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch/x86/repack.cpp +6 -6
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/arch-fallback.h +22 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu.c +19 -13
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/kleidiai/kernels.cpp +15 -5
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm-ppc.h +333 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm.cpp +51 -125
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/llamafile/sgemm.h +6 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.cpp +132 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.h +1 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.cpp +243 -4
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.h +6 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/simd-mappings.h +16 -14
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/vec.h +133 -133
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/argsort.cu +1 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/common.cuh +238 -18
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/convert.cuh +9 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy-utils.cuh +1 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cpy.cu +91 -49
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cumsum.cu +237 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/cumsum.cuh +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-common.cuh +20 -12
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-mma-f16.cuh +660 -590
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-tile.cuh +20 -20
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-vec.cuh +28 -28
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cu +10 -9
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +2 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn.cu +19 -5
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +490 -16
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mma.cuh +442 -70
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cu +2 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cuh +60 -28
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cu +6 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmq.cuh +303 -138
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cu +203 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cuh +3 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/tri.cu +136 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/tri.cuh +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/upscale.cu +78 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/vendors/hip.h +1 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/CMakeLists.txt +10 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/ggml-hexagon.cpp +99 -364
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/act-ops.c +12 -18
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/htp-dma.h +7 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-exp.c +20 -6
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-inverse.c +15 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.c +20 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/hvx-utils.h +56 -11
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/main.c +12 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/rope-ops.c +80 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp-utils.c +6 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.cpp +386 -361
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.h +67 -63
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.m +83 -77
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-impl.h +76 -4
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.cpp +491 -157
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.h +4 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.cpp +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.metal +358 -68
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/CMakeLists.txt +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +518 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/mean.cl +39 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +273 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/rms_norm.cl +25 -10
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/sqr.cl +53 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/sqrt.cl +53 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/kernels/ssm_conv.cl +77 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-rpc/ggml-rpc.cpp +91 -20
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/CMakeLists.txt +6 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/common.hpp +26 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/cpy.cpp +0 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/element_wise.cpp +112 -250
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/ggml-sycl.cpp +14 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/pad_reflect_1d.cpp +87 -59
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/pad_reflect_1d.hpp +2 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +1487 -932
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/abs.comp +21 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +28 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +20 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +20 -21
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +114 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/ceil.comp +22 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +67 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +69 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +0 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +19 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +33 -15
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +34 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +37 -19
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/floor.comp +22 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +7 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +7 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +18 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +1 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +47 -51
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +35 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +8 -12
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +8 -12
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +27 -35
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +379 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +0 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +62 -196
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/neg.comp +20 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/round.comp +29 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/softplus.comp +23 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +72 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/step.comp +22 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +1 -24
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +25 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +118 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +204 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +43 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/trunc.comp +22 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +58 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/CMakeLists.txt +20 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/ggml-webgpu.cpp +116 -113
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml.c +47 -26
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/gguf.cpp +1 -1
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/constants.py +89 -0
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/gguf_writer.py +56 -6
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/metadata.py +85 -0
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_convert_endian.py +12 -18
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_editor_gui.py +1 -1
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/scripts/gguf_new_metadata.py +1 -1
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/tensor_mapping.py +16 -6
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/vocab.py +30 -16
- vendor_llama_cpp_pydist/llama.cpp/include/llama.h +18 -0
- vendor_llama_cpp_pydist/llama.cpp/scripts/serve-static.js +110 -0
- vendor_llama_cpp_pydist/llama.cpp/scripts/sync-ggml.last +1 -1
- vendor_llama_cpp_pydist/llama.cpp/scripts/sync_vendor.py +3 -1
- vendor_llama_cpp_pydist/llama.cpp/src/CMakeLists.txt +3 -0
- vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.cpp +124 -16
- vendor_llama_cpp_pydist/llama.cpp/src/llama-arch.h +18 -0
- vendor_llama_cpp_pydist/llama.cpp/src/llama-context.cpp +7 -3
- vendor_llama_cpp_pydist/llama.cpp/src/llama-grammar.cpp +17 -9
- vendor_llama_cpp_pydist/llama.cpp/src/llama-graph.cpp +6 -9
- vendor_llama_cpp_pydist/llama.cpp/src/llama-hparams.h +3 -3
- vendor_llama_cpp_pydist/llama.cpp/src/llama-impl.cpp +3 -3
- vendor_llama_cpp_pydist/llama.cpp/src/llama-impl.h +1 -1
- vendor_llama_cpp_pydist/llama.cpp/src/llama-mmap.cpp +1 -1
- vendor_llama_cpp_pydist/llama.cpp/src/llama-model.cpp +194 -13
- vendor_llama_cpp_pydist/llama.cpp/src/llama-model.h +4 -0
- vendor_llama_cpp_pydist/llama.cpp/src/llama-quant.cpp +13 -7
- vendor_llama_cpp_pydist/llama.cpp/src/llama-sampling.cpp +3 -6
- vendor_llama_cpp_pydist/llama.cpp/src/llama-vocab.cpp +2 -2
- vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek2.cpp +2 -1
- vendor_llama_cpp_pydist/llama.cpp/src/models/lfm2.cpp +5 -3
- vendor_llama_cpp_pydist/llama.cpp/src/models/mistral3.cpp +160 -0
- vendor_llama_cpp_pydist/llama.cpp/src/models/models.h +59 -1
- vendor_llama_cpp_pydist/llama.cpp/src/models/qwen3next.cpp +1042 -0
- vendor_llama_cpp_pydist/llama.cpp/src/models/rnd1.cpp +126 -0
- vendor_llama_cpp_pydist/llama.cpp/src/unicode.cpp +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tests/.gitignore +1 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/CMakeLists.txt +19 -3
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/simple-tokenize.cpp +37 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/simple-tokenize.h +6 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-basic.cpp +454 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-gbnf-generation.cpp +250 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-json-parser.cpp +109 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-json-serialization.cpp +28 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/test-unicode.cpp +449 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/testing.h +243 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/peg-parser/tests.h +24 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/test-backend-ops.cpp +274 -57
- vendor_llama_cpp_pydist/llama.cpp/tests/test-chat-peg-parser.cpp +768 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/test-chat.cpp +1033 -19
- vendor_llama_cpp_pydist/llama.cpp/tests/test-json-schema-to-grammar.cpp +27 -1
- vendor_llama_cpp_pydist/llama.cpp/tests/test-peg-parser.cpp +25 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/test-quantize-stats.cpp +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/main/main.cpp +12 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-impl.h +5 -12
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.cpp +61 -36
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.h +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-cli.cpp +3 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.cpp +60 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.h +5 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.cpp +11 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.h +5 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/CMakeLists.txt +12 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/server/README.md +329 -38
- vendor_llama_cpp_pydist/llama.cpp/tools/server/public/index.html.gz +0 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/public_legacy/json-schema-to-grammar.mjs +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/{utils.hpp → server-common.cpp} +1083 -961
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.h +359 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.cpp +3636 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.h +83 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.cpp +394 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-http.h +78 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.cpp +1012 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.h +175 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.cpp +361 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.h +155 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.cpp +1495 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.h +494 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server.cpp +234 -5732
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/conftest.py +6 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_basic.py +1 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_chat_completion.py +5 -4
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_compat_anthropic.py +807 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_router.py +194 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_security.py +44 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/utils.py +46 -9
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/.gitignore +1 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/.storybook/main.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/README.md +650 -30
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/architecture/high-level-architecture-simplified.md +102 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/architecture/high-level-architecture.md +269 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/chat-flow.md +174 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/conversations-flow.md +155 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/data-flow-simplified-model-mode.md +45 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/data-flow-simplified-router-mode.md +77 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/database-flow.md +155 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/models-flow.md +181 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/server-flow.md +76 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/docs/flows/settings-flow.md +144 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package-lock.json +16 -24
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package.json +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/playwright.config.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/scripts/dev.sh +3 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/app.css +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/app.d.ts +59 -16
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreview.svelte +283 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentFilePreview.svelte → ChatAttachmentThumbnailFile.svelte} +46 -10
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/{ChatAttachmentImagePreview.svelte → ChatAttachmentThumbnailImage.svelte} +3 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsList.svelte +96 -132
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsViewAll.svelte +117 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatForm.svelte +116 -12
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActionFileAttachments.svelte → ChatFormActions/ChatFormActionFileAttachments.svelte} +26 -19
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/{ChatFormActionRecord.svelte → ChatFormActions/ChatFormActionRecord.svelte} +11 -8
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions/ChatFormActionSubmit.svelte +55 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions/ChatFormActions.svelte +203 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormFileInputInvisible.svelte +12 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormTextarea.svelte +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessage.svelte +53 -8
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageActions.svelte +14 -5
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte +165 -63
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageStatistics.svelte +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageUser.svelte +29 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessages.svelte +32 -17
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte +186 -66
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreenHeader.svelte +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/{ChatProcessingInfo.svelte → ChatScreen/ChatScreenProcessingInfo.svelte} +27 -45
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ChatSettingsDialog.svelte → ChatSettings.svelte} +145 -164
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFields.svelte +29 -25
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFooter.svelte +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ImportExportTab.svelte → ChatSettingsImportExportTab.svelte} +10 -14
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte +6 -12
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebarConversationItem.svelte +4 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentPreview.svelte +67 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte +54 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ChatErrorDialog.svelte → DialogChatError.svelte} +11 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatSettings.svelte +37 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogConversationSelection.svelte +68 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogModelInformation.svelte +211 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogModelNotAvailable.svelte +76 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/index.ts +47 -31
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ActionButton.svelte +1 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ActionDropdown.svelte +1 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/BadgeChatStatistic.svelte +25 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/BadgeInfo.svelte +27 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/BadgeModality.svelte +39 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/ConversationSelection.svelte +205 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/CopyToClipboardIcon.svelte +18 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte +3 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/SyntaxHighlightedCode.svelte +96 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/models/ModelBadge.svelte +56 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/models/ModelsSelector.svelte +596 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/server/ServerErrorSplash.svelte +3 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/server/ServerStatus.svelte +3 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/alert-description.svelte +23 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/alert-title.svelte +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/alert.svelte +44 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/alert/index.ts +14 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/sidebar/sidebar-provider.svelte +12 -15
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/index.ts +28 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-body.svelte +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-caption.svelte +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-cell.svelte +23 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-footer.svelte +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-head.svelte +23 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-header.svelte +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table-row.svelte +23 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/table/table.svelte +22 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/default-context.ts +1 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/floating-ui-constraints.ts +3 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/icons.ts +32 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/localstorage-keys.ts +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/settings-config.ts +16 -10
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/supported-file-types.ts +29 -4
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/table-html-restorer.ts +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/attachment.ts +10 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/files.ts +26 -7
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/index.ts +21 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/model.ts +5 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/enums/server.ts +20 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/hooks/use-model-change-validation.svelte.ts +118 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/hooks/use-processing-state.svelte.ts +35 -60
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/markdown/table-html-restorer.ts +181 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/chat.ts +266 -173
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/{stores → services}/database.ts +51 -78
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/index.ts +5 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/models.ts +110 -8
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/parameter-sync.spec.ts +0 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/parameter-sync.ts +17 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/props.ts +77 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/chat.svelte.ts +953 -1313
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/conversations.svelte.ts +640 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/models.svelte.ts +498 -104
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/server.svelte.ts +79 -274
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/settings.svelte.ts +99 -74
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/api.d.ts +127 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/chat.d.ts +0 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/database.d.ts +15 -12
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/index.ts +70 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/models.d.ts +10 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/settings.d.ts +16 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/api-headers.ts +22 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/attachment-display.ts +61 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/attachment-type.ts +105 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/audio-recording.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/browser-only.ts +35 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/config-helpers.ts +0 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/convert-files-to-extra.ts +15 -11
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/file-preview.ts +30 -17
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/file-type.ts +151 -29
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/formatters.ts +53 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/index.ts +87 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/modality-file-validation.ts +32 -18
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/model-names.test.ts +10 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/model-names.ts +23 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/pdf-processing.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/process-uploaded-files.ts +19 -7
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/svg-to-png.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/syntax-highlight-language.ts +145 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/text-files.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/webp-to-png.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+layout.svelte +75 -48
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+page.svelte +72 -8
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/+page.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/chat/[id]/+page.svelte +129 -9
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/chat/[id]/+page.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/client/components/TestWrapper.svelte +17 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/client/page.svelte.test.ts +11 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/ChatForm.stories.svelte +21 -39
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/ChatMessage.stories.svelte +12 -12
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/stories/ChatSettings.stories.svelte +19 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/ChatSidebar.stories.svelte +6 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/tests/stories/fixtures/storybook-mocks.ts +81 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/vite.config.ts +4 -6
- vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/CMakeLists.txt +98 -8
- vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.cpp +303 -58
- vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/httplib.h +33 -6
- vendor_llama_cpp_pydist/llama.cpp/vendor/sheredom/subprocess.h +1203 -0
- llama_cpp_pydist-0.15.0.dist-info/METADATA +0 -602
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-amd.yml +0 -52
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-riscv-native.yml +0 -120
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/Doxyfile +0 -2579
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreviewDialog.svelte +0 -314
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentsViewAllDialog.svelte +0 -203
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions.svelte +0 -63
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormModelSelector.svelte +0 -358
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreenWarning.svelte +0 -38
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ConversationSelectionDialog.svelte +0 -249
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/server/ServerInfo.svelte +0 -43
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/debounce.ts +0 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/slots.ts +0 -322
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/routes/page.svelte.test.ts +0 -11
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/ChatSettingsDialog.stories.svelte +0 -26
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/stories/fixtures/storybook-mocks.ts +0 -50
- {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/WHEEL +0 -0
- {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/licenses/LICENSE +0 -0
- {llama_cpp_pydist-0.15.0.dist-info → llama_cpp_pydist-0.17.0.dist-info}/top_level.txt +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/{ParameterSourceIndicator.svelte → ChatSettingsParameterSourceIndicator.svelte} +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ConfirmationDialog.svelte → DialogConfirmation.svelte} +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{ConversationTitleUpdateDialog.svelte → DialogConversationTitleUpdate.svelte} +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/{EmptyFileAlertDialog.svelte → DialogEmptyFileAlert.svelte} +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{e2e → tests/e2e}/demo.test.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests/server}/demo.spec.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/Introduction.mdx +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/MarkdownContent.stories.svelte +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/ai-tutorial.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/api-docs.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/1.jpg +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/beautiful-flowers-lotus.webp +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/example.pdf +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/assets/hf-logo.svg +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/blog-post.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/data-analysis.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/empty.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/math-formulas.ts +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/{src → tests}/stories/fixtures/readme.ts +0 -0