Skip to main content

Python bindings for ik_llama.cpp — high-performance llama.cpp fork

Project description

ik-llama-cpp-python

PyPI version PyPI - Python Version License: MIT

Python bindings for ik_llama.cpp — a high-performance fork of llama.cpp with faster CPU inference, novel quantization types (Trellis / IQK quants), and AVX-VNNI / AVX-512 optimizations.

Designed as a drop-in replacement for llama-cpp-python.

Installation

Pre-built wheels (CPU, with AVX2)

pip install ik-llama-cpp-python

Pre-built wheels (CUDA)

CUDA wheels are distributed via GitHub Releases (too large for PyPI). Install by downloading from the latest release:

# Replace the URL with the wheel matching your Python version
pip install https://github.com/gongpx20069/ik-llama-cpp-python/releases/download/v0.1.3/ik_llama_cpp_python_cuda-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl

Available for Python 3.10–3.13, Linux x86_64, CUDA 12.4.

From source (requires CMake ≥ 3.21 and a C++20 compiler)
git clone https://github.com/gongpx20069/ik-llama-cpp-python
cd ik-llama-cpp-python
git submodule update --init --recursive
pip install -e .
From source with CUDA
CMAKE_ARGS="-DGGML_CUDA=ON" pip install -e .
From source with native CPU optimizations

For maximum performance on your specific CPU (AVX-512, AVX-VNNI, etc.):

CMAKE_ARGS="-DGGML_NATIVE=ON" pip install -e .

Quick Start

from ik_llama_cpp import IkLlama

llm = IkLlama("model.gguf", n_ctx=4096)

# Simple chat
text = llm.chat("What is the theory of relativity?")
print(text)

API

create_chat_completion — OpenAI-compatible

Returns a dict matching the llama_cpp.Llama.create_chat_completion schema.

response = llm.create_chat_completion(
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello!"},
    ],
    temperature=0.3,
    max_tokens=256,
)
print(response["choices"][0]["message"]["content"])
print(response["usage"])

chat — Convenience wrapper

text = llm.chat("Explain quantum mechanics in one sentence.")

generate — Low-level token generation

tokens = llm.tokenize("Hello, world!")
output_ids = llm.generate(tokens, max_tokens=128, temperature=0.7)
text = llm.detokenize(output_ids)

Drop-in replacement for llama-cpp-python

# Change this:
# from llama_cpp import Llama
# To this:
from ik_llama_cpp import IkLlama as Llama

llm = Llama("model.gguf", n_ctx=4096, flash_attn=True)
response = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Hello!"}],
)

Quantization (IQ4_KT)

ik_llama.cpp provides novel Trellis quantization types (IQ1_KTIQ4_KT) that are not available in upstream llama.cpp. This package includes llama-quantize and a Python API to create these quants from standard GGUF files.

Install with quantization support

pip install ik-llama-cpp-python[quantize]

CLI: Download from HuggingFace and quantize

# Download bf16 source + imatrix, quantize to IQ4_KT in one step
ik-llama-quantize from-hf bartowski/google_gemma-4-E2B-it-GGUF

# Specify a different quant type
ik-llama-quantize from-hf bartowski/google_gemma-4-E2B-it-GGUF --type IQ3_KT

# Custom output directory
ik-llama-quantize from-hf bartowski/google_gemma-4-E2B-it-GGUF --output-dir models/

CLI: Quantize a local file

# With imatrix (recommended for IQ quants)
ik-llama-quantize quantize model-bf16.gguf model-IQ4_KT.gguf IQ4_KT \
    --imatrix model-imatrix.gguf

# Without imatrix
ik-llama-quantize quantize model-bf16.gguf model-IQ4_KT.gguf IQ4_KT

# Shorthand (without subcommand)
ik-llama-quantize model-bf16.gguf model-IQ4_KT.gguf IQ4_KT

Python API

from ik_llama_cpp import quantize, quantize_from_hf

# One-step: download from HuggingFace and quantize
path = quantize_from_hf("bartowski/google_gemma-4-E2B-it-GGUF", quant_type="IQ4_KT")

# Or quantize a local file
path = quantize("model-bf16.gguf", "model-IQ4_KT.gguf", "IQ4_KT",
                imatrix_path="model-imatrix.gguf")

Check if llama-quantize is available

ik-llama-quantize check

Constructor Parameters

Parameter Type Default Description
model_path str required Path to GGUF model file
n_ctx int 4096 Context window size
n_threads int 0 CPU threads (0 = auto)
use_mmap bool True Memory-map model file
use_mlock bool False Lock model in RAM
flash_attn bool True Enable flash attention
n_gpu_layers int 0 Number of layers to offload to GPU
verbose bool True Logging verbosity

Supported Platforms

Platform Wheels Notes
Linux x86_64 CPU (AVX2), CUDA 12.4 CUDA wheels via GitHub Releases
Linux aarch64 CPU Python 3.10–3.13
macOS arm64 CPU + Metal Python 3.10–3.13
Windows x86_64 CPU (AVX2) Python 3.10–3.13

Environment Variables

Variable Description
IK_LLAMA_CPP_LIB_PATH Override path to the compiled shared library
CMAKE_ARGS Extra CMake flags for source builds

Why ik_llama.cpp?

ik_llama.cpp is a llama.cpp fork focused on performance and quantization research. Key advantages:

  • Faster CPU inference — improved prompt processing across all quantization types, better Flash Attention token generation
  • Novel quantization types — Trellis quants (IQ1_KTIQ4_KT), IQK quants (IQ2_KIQ6_K), row-interleaved R4 variants, MXFP4
  • Better KV cacheQ8_KV / Q4_0 KV-cache quantization with Hadamard transforms
  • DeepSeek optimizations — FlashMLA (v1–v3), fused MoE operations, Smart Expert Reduction
  • Hardware support — optimized kernels for AVX2, AVX-512, AVX-VNNI, ARM NEON, CUDA (Turing+)
  • Broad model support — LLaMA-3/4, Qwen3, DeepSeek-V3, Gemma3/4, Mistral, and many more

Architecture

ik_llama_cpp/
  __init__.py        # Public API: IkLlama, quantize, quantize_from_hf
  _lib_loader.py     # Finds and loads the shared library (.dll/.so/.dylib)
  _ctypes_api.py     # Low-level ctypes bindings to llama.h C API
  _internals.py      # RAII wrappers: IkModel, IkContext
  llama.py           # High-level IkLlama class
  quantize.py        # Quantization CLI and API (wraps llama-quantize)
  lib/               # Compiled shared libraries (installed by CMake)
  bin/               # llama-quantize binary (installed by CMake)

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request on GitHub. Whether it's bug reports, feature requests, documentation improvements, or code contributions — all are appreciated.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ik_llama_cpp_python-0.1.3.tar.gz (42.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ik_llama_cpp_python-0.1.3-cp313-cp313-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.13Windows x86-64

ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

ik_llama_cpp_python-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (28.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ik_llama_cpp_python-0.1.3-cp312-cp312-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.12Windows x86-64

ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

ik_llama_cpp_python-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (28.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ik_llama_cpp_python-0.1.3-cp311-cp311-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.11Windows x86-64

ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

ik_llama_cpp_python-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (28.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ik_llama_cpp_python-0.1.3-cp310-cp310-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.10Windows x86-64

ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

ik_llama_cpp_python-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (28.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file ik_llama_cpp_python-0.1.3.tar.gz.

File metadata

  • Download URL: ik_llama_cpp_python-0.1.3.tar.gz
  • Upload date:
  • Size: 42.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ik_llama_cpp_python-0.1.3.tar.gz
Algorithm Hash digest
SHA256 93a863012499fc017b343035c8b8d3b79d38c45c65d4762df9dea45ccd34d977
MD5 61e211a05a15c3b5230cc9025d1a3acb
BLAKE2b-256 b906263896ada09e2829769144507f24e9d43d4a14ae0e9a9ee681fd8199d14c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3.tar.gz:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b626f191c610406ad894a6580331e8e91c006cf03ca69e9c483499bcdb2256c
MD5 a238ae6dd4b7f4e061317e39ad340c1e
BLAKE2b-256 c0a80ffd0b0e4db3fec62d34713b4291cf1007c8efc0eea808306d14a6a99df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99986ac524213343c848ed4f6d17a5e6530ea5e026c988bcf87b7ea8d48eec9d
MD5 e3c53fb50536894440f5460a0cec4c8b
BLAKE2b-256 dae32729446f2eb14098a22be79dda757759dd0ed627898ce67d2f08b5cc2faf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 631bd06b31340dd611bcd3c8503e7b4c96f0a6fab855e44137b9104ed1c63c85
MD5 eda1520101b4c3a54aba0e7d79a8e2e3
BLAKE2b-256 bf84cfc4d4161057b5b948561f54c065587a61c6bc16ed60af9b8336609263e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b210d54982600eddf31bb32b34eee7a717a607231c675b7e15f1b822bcf6f71e
MD5 f41d700d43e26d5788e0ca3639a2bec0
BLAKE2b-256 1e562254b5fb886b5975b9013f3ba2fa0b65d6b4194fccf1bc537dabc49b7d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fbc6c951b6ceee767eea568ebd672b2855ba00acea1b85e7ea81eb0515aa2bb1
MD5 ce73b84b4880f4050a50920d0c618a43
BLAKE2b-256 99a12fbe9b37641728b7948f36f83ece30616f9b4294bad968ad9770fa1c9979

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f6c9e48b61d35dafb267ab24273aaf8f1aa62396265d57d267cd84da634d615
MD5 5917d82ca554d8cdf32b4be68b0345e2
BLAKE2b-256 6246d9838bc1a47a509efcaa0ed7c24c0048ec060caacf9057f3c6931e6054fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2343206cf8cee134fa9d1e6eeae8602501d446159404a9be448b0018b6fa4a3c
MD5 8d7e39fd09ec85be90f699e0ed25f462
BLAKE2b-256 a414453c456f6ae2ca7c5308b4a74a5beaaa66b963388b0485c7db7b1b66cdcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35e44c8df6ac1b7e1a4330b8086ede43a71fff8f871b2b5e9eec27e99e638dc5
MD5 f6adbbd5ddb776d4b324df0319ebaedd
BLAKE2b-256 66772aec63d837ea185e375bf409799d0b03590987f51943c22c2378bc738153

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b2c8be8269625142243aa1013701dc764964ab186cbd94a6470339470168dcb
MD5 53abbb45565701fa768388bb05050aed
BLAKE2b-256 b88b87f3a5154782dd04dc9cc88a01de9656fb8c2f43c608e8e2864ec98a6ca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27b63a3ac49a8dd68a4147796baa65550d462481c8fcfe0655287d25a69818ce
MD5 cb4fa9b90dd3b3d23d1fd1a3d8e1be52
BLAKE2b-256 f2c5caf924d76617aae49139c9347014dadbb43df88aa3280de16920ca627b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fd00035f84af19b20b751ffe7e00acd722e829b540458a272c76bb723f91970
MD5 36b60875503ba962adbf340c617dc53c
BLAKE2b-256 4a399d2e4f6e4d42603011617e8277eef7f6fa1283f573b2d8eb27edff3a723a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9e139cd8167bfb4139777af02f387ea2ae2a0ddf257f782ae8c0148229cf774
MD5 a22ceb6cd9a8d0fbe0faaddcd3c37809
BLAKE2b-256 abbbe4749fd8b7b056a3004d1aa5ae34d572b6baf6625ab0642e8d1932e99f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d841ef9b058a943b3d4e4261230a3ea6613e56c1689191aa6b6e119ad5ae963
MD5 798659f37aa9b839669ee905083fa522
BLAKE2b-256 86c4b5e2a217bfda450196240bfa2ffa19a709ccb04e1921dc397bac9710d17c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0684026467f163c5b2d7f2aabaaaec370a8b5f98da294ad4c9d37d2064a433c
MD5 8c0325a166b2324593c32e8b1f3d4d45
BLAKE2b-256 f0bb166a878c5bdc00240e6753e353e54a88b7784f4a8a899e177b59a8f0def1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b79745e734bfa2bb712ae4eac701cdec5815b768c46aecad362f8159dda95b9c
MD5 4301f308490d884ed6d1889e1eca3d1f
BLAKE2b-256 9acac497eb3319fa829e0645f28c0e799156264ac6a82013188a3d1a397441a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ik_llama_cpp_python-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ik_llama_cpp_python-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb4c88ed2fd103bce11a2621c9bda3f1e09d8172d5033074406f9dd170764a0e
MD5 c7ccdd2fbfaff2484c15604e5b152b72
BLAKE2b-256 e523770f274366a54aeeb1107bc824f113715cdd00c4d2490b0b1386317a9661

See more details on using hashes here.

Provenance

The following attestation bundles were made for ik_llama_cpp_python-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on gongpx20069/ik-llama-cpp-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page