llama-cpp-pydist 0.17.0__py3-none-any.whl → 0.18.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-b7278-bin-win-cpu-x64.zip → llama-b7376-bin-win-cpu-x64.zip} +0 -0
- {llama_cpp_pydist-0.17.0.dist-info → llama_cpp_pydist-0.18.0.dist-info}/METADATA +1102 -1
- {llama_cpp_pydist-0.17.0.dist-info → llama_cpp_pydist-0.18.0.dist-info}/RECORD +216 -178
- vendor_llama_cpp_pydist/llama.cpp/.devops/cann.Dockerfile +2 -2
- vendor_llama_cpp_pydist/llama.cpp/.devops/cpu.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.devops/cuda.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.devops/intel.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.devops/musa.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.devops/rocm.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.devops/s390x.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.devops/tools.sh +6 -2
- vendor_llama_cpp_pydist/llama.cpp/.devops/vulkan.Dockerfile +1 -1
- vendor_llama_cpp_pydist/llama.cpp/.github/actions/windows-setup-cuda/action.yml +31 -0
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build-linux-cross.yml +1 -0
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/build.yml +44 -15
- vendor_llama_cpp_pydist/llama.cpp/.github/workflows/release.yml +85 -2
- vendor_llama_cpp_pydist/llama.cpp/CONTRIBUTING.md +2 -1
- vendor_llama_cpp_pydist/llama.cpp/README.md +2 -14
- vendor_llama_cpp_pydist/llama.cpp/ci/run.sh +12 -12
- vendor_llama_cpp_pydist/llama.cpp/common/CMakeLists.txt +2 -0
- vendor_llama_cpp_pydist/llama.cpp/common/arg.cpp +307 -185
- vendor_llama_cpp_pydist/llama.cpp/common/arg.h +43 -2
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.cpp +36 -18
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser-xml-toolcall.h +1 -1
- vendor_llama_cpp_pydist/llama.cpp/common/chat-parser.cpp +3 -2
- vendor_llama_cpp_pydist/llama.cpp/common/chat.cpp +132 -0
- vendor_llama_cpp_pydist/llama.cpp/common/common.cpp +26 -0
- vendor_llama_cpp_pydist/llama.cpp/common/common.h +15 -5
- vendor_llama_cpp_pydist/llama.cpp/common/console.cpp +680 -47
- vendor_llama_cpp_pydist/llama.cpp/common/console.h +30 -8
- vendor_llama_cpp_pydist/llama.cpp/common/download.cpp +69 -25
- vendor_llama_cpp_pydist/llama.cpp/common/log.cpp +8 -26
- vendor_llama_cpp_pydist/llama.cpp/common/log.h +1 -0
- vendor_llama_cpp_pydist/llama.cpp/common/preset.cpp +186 -0
- vendor_llama_cpp_pydist/llama.cpp/common/preset.h +32 -0
- vendor_llama_cpp_pydist/llama.cpp/convert_hf_to_gguf.py +234 -97
- vendor_llama_cpp_pydist/llama.cpp/docs/backend/ZenDNN.md +258 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/backend/zDNN.md +5 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/build-riscv64-spacemit.md +1 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/build.md +32 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/docker.md +3 -3
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/CPU.csv +474 -20
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/CUDA.csv +488 -34
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/OpenCL.csv +15130 -4510
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/WebGPU.csv +18741 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/ops/ZenDNN.csv +18741 -0
- vendor_llama_cpp_pydist/llama.cpp/docs/ops.md +109 -108
- vendor_llama_cpp_pydist/llama.cpp/ggml/CMakeLists.txt +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-cpu.h +1 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-rpc.h +1 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml-zendnn.h +22 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/include/ggml.h +27 -7
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/CMakeLists.txt +1 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-alloc.c +16 -13
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-backend-reg.cpp +19 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +153 -61
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/common.h +2 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cann/ggml-cann.cpp +9 -8
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/CMakeLists.txt +3 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu.c +69 -39
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ggml-cpu.cpp +4 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/ops.cpp +38 -11
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cpu/repack.cpp +2 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/common.cuh +14 -11
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/diag.cu +77 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/diag.cuh +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-common.cuh +3 -3
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-mma-f16.cuh +20 -23
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn-tile.cuh +11 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fattn.cu +15 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fill.cu +37 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/fill.cuh +3 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +13 -2
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mma.cuh +63 -9
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmf.cu +3 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/mmvf.cu +4 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/pad.cu +64 -33
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/solve_tri.cu +118 -46
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/vendors/hip.h +4 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-cuda/vendors/musa.h +5 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-hexagon/htp/rope-ops.c +37 -41
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-context.m +26 -16
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.cpp +38 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.h +16 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-device.m +168 -28
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-impl.h +1 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal-ops.cpp +36 -8
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-metal/ggml-metal.metal +127 -9
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +4 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-rpc/ggml-rpc.cpp +40 -9
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/convert.cpp +19 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/ggml-sycl.cpp +4 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-sycl/softmax.cpp +1 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +225 -326
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_mm.comp +8 -13
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp +70 -20
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/pad.comp +20 -5
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm.comp +5 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +36 -27
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_moe.comp +10 -9
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +58 -16
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/ggml-webgpu.cpp +606 -364
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/wgsl-shaders/embed_wgsl.py +16 -1
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-webgpu/wgsl-shaders/unary_op.wgsl +461 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-zendnn/CMakeLists.txt +92 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml-zendnn/ggml-zendnn.cpp +466 -0
- vendor_llama_cpp_pydist/llama.cpp/ggml/src/ggml.c +53 -2
- vendor_llama_cpp_pydist/llama.cpp/gguf-py/gguf/tensor_mapping.py +11 -0
- vendor_llama_cpp_pydist/llama.cpp/grammars/README.md +24 -0
- vendor_llama_cpp_pydist/llama.cpp/scripts/snapdragon/adb/run-cli.sh +1 -1
- vendor_llama_cpp_pydist/llama.cpp/src/CMakeLists.txt +2 -1
- vendor_llama_cpp_pydist/llama.cpp/src/llama-batch.cpp +12 -2
- vendor_llama_cpp_pydist/llama.cpp/src/llama-batch.h +4 -2
- vendor_llama_cpp_pydist/llama.cpp/src/llama-context.cpp +6 -14
- vendor_llama_cpp_pydist/llama.cpp/src/llama-context.h +1 -1
- vendor_llama_cpp_pydist/llama.cpp/src/llama-grammar.cpp +233 -33
- vendor_llama_cpp_pydist/llama.cpp/src/llama-grammar.h +20 -1
- vendor_llama_cpp_pydist/llama.cpp/src/llama-graph.cpp +12 -12
- vendor_llama_cpp_pydist/llama.cpp/src/llama-hparams.cpp +12 -0
- vendor_llama_cpp_pydist/llama.cpp/src/llama-hparams.h +8 -1
- vendor_llama_cpp_pydist/llama.cpp/src/llama-kv-cache.cpp +6 -12
- vendor_llama_cpp_pydist/llama.cpp/src/llama-model.cpp +62 -26
- vendor_llama_cpp_pydist/llama.cpp/src/llama-quant.cpp +0 -27
- vendor_llama_cpp_pydist/llama.cpp/src/models/deepseek2.cpp +27 -5
- vendor_llama_cpp_pydist/llama.cpp/src/models/{gemma3-iswa.cpp → gemma3.cpp} +30 -5
- vendor_llama_cpp_pydist/llama.cpp/src/models/models.h +3 -2
- vendor_llama_cpp_pydist/llama.cpp/tests/test-arg-parser.cpp +14 -6
- vendor_llama_cpp_pydist/llama.cpp/tests/test-backend-ops.cpp +172 -33
- vendor_llama_cpp_pydist/llama.cpp/tests/test-barrier.cpp +156 -14
- vendor_llama_cpp_pydist/llama.cpp/tests/test-chat.cpp +302 -15
- vendor_llama_cpp_pydist/llama.cpp/tests/test-grammar-integration.cpp +108 -3
- vendor_llama_cpp_pydist/llama.cpp/tests/test-grammar-parser.cpp +14 -0
- vendor_llama_cpp_pydist/llama.cpp/tests/test-llama-grammar.cpp +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tests/test-lora-conversion-inference.sh +6 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/CMakeLists.txt +2 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/cli/CMakeLists.txt +10 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/cli/cli.cpp +395 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/{main → completion}/CMakeLists.txt +2 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/{main/main.cpp → completion/completion.cpp} +11 -13
- vendor_llama_cpp_pydist/llama.cpp/tools/gguf-split/tests.sh +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/llama-bench/llama-bench.cpp +2 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/CMakeLists.txt +26 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-graph.h +115 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-impl.h +8 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip-model.h +279 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.cpp +445 -2160
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/clip.h +2 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/cogvlm.cpp +98 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/internvl.cpp +69 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/kimivl.cpp +63 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/llama4.cpp +96 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/llava.cpp +374 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/minicpmv.cpp +114 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/models.h +58 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/pixtral.cpp +86 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/qwen2vl.cpp +183 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/qwen3vl.cpp +191 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/siglip.cpp +81 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/models/whisper-enc.cpp +107 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-audio.h +2 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-cli.cpp +9 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd-helper.cpp +4 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/mtmd.h +5 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/mtmd/tests.sh +32 -19
- vendor_llama_cpp_pydist/llama.cpp/tools/quantize/tests.sh +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/CMakeLists.txt +29 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/README-dev.md +177 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/README.md +100 -151
- vendor_llama_cpp_pydist/llama.cpp/tools/server/public/index.html.gz +0 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.cpp +15 -12
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-common.h +4 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.cpp +257 -97
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-context.h +12 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.cpp +182 -85
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-models.h +24 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.cpp +11 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-queue.h +6 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.cpp +14 -7
- vendor_llama_cpp_pydist/llama.cpp/tools/server/server-task.h +62 -25
- vendor_llama_cpp_pydist/llama.cpp/tools/server/tests/unit/test_chat_completion.py +19 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package-lock.json +22 -14
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/package.json +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatForm/ChatForm.svelte +1 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessage.svelte +24 -3
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageSystem.svelte +216 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageUser.svelte +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessages.svelte +8 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettings.svelte +6 -6
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsFields.svelte +17 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte +6 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebarConversationItem.svelte +51 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebarSearch.svelte +2 -16
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/index.ts +3 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte +6 -2
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/misc/SearchInput.svelte +73 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/app/models/ModelsSelector.svelte +137 -192
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/popover/index.ts +19 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/popover/popover-close.svelte +7 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/popover/popover-content.svelte +37 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/popover/popover-portal.svelte +7 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/popover/popover-trigger.svelte +17 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/components/ui/popover/popover.svelte +7 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/floating-ui-constraints.ts +0 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/constants/settings-config.ts +3 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/chat.ts +2 -44
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/services/database.ts +43 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/chat.svelte.ts +57 -9
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/stores/models.svelte.ts +25 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/types/chat.d.ts +1 -1
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/latex-protection.test.ts +21 -0
- vendor_llama_cpp_pydist/llama.cpp/tools/server/webui/src/lib/utils/latex-protection.ts +13 -10
- vendor_llama_cpp_pydist/llama.cpp/vendor/cpp-httplib/CMakeLists.txt +4 -0
- {llama_cpp_pydist-0.17.0.dist-info → llama_cpp_pydist-0.18.0.dist-info}/WHEEL +0 -0
- {llama_cpp_pydist-0.17.0.dist-info → llama_cpp_pydist-0.18.0.dist-info}/licenses/LICENSE +0 -0
- {llama_cpp_pydist-0.17.0.dist-info → llama_cpp_pydist-0.18.0.dist-info}/top_level.txt +0 -0
- /vendor_llama_cpp_pydist/llama.cpp/tools/{main → completion}/README.md +0 -0