Skip to main content

A lightweight, zero-PyTorch GGML/GGUF encoder for generic ColBERT models.

Project description

intextus

PyPI Version CI/CD Status PyPI - Downloads Python 3.9+ Platforms License: MIT

A lightweight, zero-PyTorch, zero-ONNX-Runtime dense embedding inference engine. Uses a native C++ extension (llama.cpp + tokenizers-cpp) to encode text extremely fast without pulling in gigabytes of deep learning dependencies.

Install

pip install intextus-embed-ggml

Only runtime dependencies are numpy and huggingface-hub.

Usage

from intextus import DenseEncoder

# Initializes the encoder, downloading the optimized Q8_0 quantized all-MiniLM-L6-v2 GGUF model automatically
model = DenseEncoder("sentence-transformers/all-MiniLM-L6-v2")

embeddings = model.encode(["What is a dense embedding?", "It's extremely fast and lightweight."])
print(embeddings.shape)  # (2, 384)

# Load BAAI General Embedding model (auto-resolves to GGUF and uses CLS pooling)
bge_model = DenseEncoder("BAAI/bge-small-en-v1.5")
bge_embeddings = bge_model.encode(["BAAI General Embedding models use CLS pooling."])

You can also point it at a local directory containing a .gguf file and tokenizer.json or directly to a .gguf file path:

model = DenseEncoder("./my-local-model-directory/")
# OR
model = DenseEncoder("./models/all-MiniLM-L6-v2-Q8_0.gguf")

Configuration Options

  • model_name_or_path: Local path to a GGUF file or directory, or a Hugging Face Hub model ID (defaults to "sentence-transformers/all-MiniLM-L6-v2").
  • tokenizer_path: Optional explicit path to tokenizer.json.
  • num_threads: Number of CPU threads to use. Defaults to 0 (which automatically detects and uses physical CPU cores, avoiding hyperthreading bottlenecks).
  • quantization: Preferred quantization format (e.g., "Q8_0", "F16", "F32", "Q4_0"). Defaults to "Q8_0".
  • pooling_mode: Pooling strategy to use ("mean" or "cls"). Defaults to None (which auto-detects based on the model name).

Advanced: Compile from Source (Hardware Acceleration)

By default, pre-built binary wheels are compiled with native SIMD instructions (AVX2/AVX-512/ARM NEON) for maximum CPU portability. If you are compiling from source and want to link against optimized system BLAS backends, pass the appropriate CMake arguments during installation:

  • AMD / Generic CPUs (OpenBLAS):
    CMAKE_ARGS="-DGGML_OPENBLAS=ON" pip install --no-binary :all: intextus-embed-ggml
    
  • Intel CPUs (Intel MKL / oneDNN):
    CMAKE_ARGS="-DGGML_MKL=ON" pip install --no-binary :all: intextus-embed-ggml
    

Features

  • GGUF-Native: Avoids PyTorch and ONNX Runtime entirely.
  • Hardware Optimized: Compiled with native SIMD instructions (AVX2/AVX-512/ARM NEON) and Flash Attention support.
  • Dynamic Threading: Auto-detects physical CPU cores to prevent runtime CPU thread thrashing.
  • Highly Portable: No complex system level dependencies, builds easily on macOS, Linux, and Windows.

License

MIT. See LICENSE.

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

intextus_embed_ggml-0.1.6.tar.gz (50.1 kB view details)

Uploaded Source

Built Distributions

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

intextus_embed_ggml-0.1.6-cp313-cp313-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.13Windows x86-64

intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

intextus_embed_ggml-0.1.6-cp313-cp313-macosx_13_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

intextus_embed_ggml-0.1.6-cp312-cp312-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.12Windows x86-64

intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

intextus_embed_ggml-0.1.6-cp312-cp312-macosx_13_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

intextus_embed_ggml-0.1.6-cp311-cp311-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.11Windows x86-64

intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

intextus_embed_ggml-0.1.6-cp311-cp311-macosx_13_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

intextus_embed_ggml-0.1.6-cp310-cp310-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.10Windows x86-64

intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

intextus_embed_ggml-0.1.6-cp310-cp310-macosx_13_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

intextus_embed_ggml-0.1.6-cp39-cp39-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.9Windows x86-64

intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

intextus_embed_ggml-0.1.6-cp39-cp39-macosx_13_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

Details for the file intextus_embed_ggml-0.1.6.tar.gz.

File metadata

  • Download URL: intextus_embed_ggml-0.1.6.tar.gz
  • Upload date:
  • Size: 50.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for intextus_embed_ggml-0.1.6.tar.gz
Algorithm Hash digest
SHA256 54dff846afb96dcec94f13bb329b011f9a17e37977971375a79d1e29d0945ad1
MD5 164055c7ace4e2132840e3e588ddb06a
BLAKE2b-256 540ce7e0e633673030c6c3c57b86e3657e47c10c042c42443b394e21353b71a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6.tar.gz:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6eb827809828225035dd971ac427d867914771c1d7fde6a27a8aac5f8cfbb02c
MD5 19c86cfe20086e69da23b5c72c36d7c0
BLAKE2b-256 c8c9fdf8cf5203ca9e98ff8bd21198decf7e701f70ab94727085a78ad1ce25e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95a643f9f8a10247f61cedc33c1216c23bd78cc6c8388549f4afd9fa0c3945e1
MD5 9a6b47f40143fbf37a69921524abbdd5
BLAKE2b-256 aa99e3caa4ee865c4ace13c7e09ea12ab64a5e1a9c9264ebd046381fdb80bba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb3d62398d3881200b4a7efd5b8b1f76349ce126a38eafd272e4433649771496
MD5 d676f17bb88dcf44527cb34eff9ba680
BLAKE2b-256 1fdb3ed1b63908a27d82a542a343ef65ba6650fb8007683f0f6568704e6f2bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1bdbf360d934923fafd497fb81643f2e6d78412ab872542b95d7fbcbbf882e1f
MD5 b54af1342aea3a389cb03fdcafe3b7f4
BLAKE2b-256 75a4d42ecc638b87679fda4302737ebb0d81598142cdcc3e6fac64695efc6457

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bfcbde4410afb19d1d58bdd86d6d742c5c119a15f9bd565d433b8f80c72063bc
MD5 8c30b2d5dee6af0f9387795ae8e0148c
BLAKE2b-256 430c0c69ceff82bb5a1dffaca5b23fef3de6a389dbe102d4d542260a73b3379d

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db57fe0a85e946a9fa12b74831af9fdae0c1057ef0386101ed5e3e4e2391d514
MD5 0208d9bba5a8cb56c9ba5e2c59c2b9bd
BLAKE2b-256 726f3e7ccf9aa3eb65c73981cd36a5ed1a909e8ad1bead46b31cd1e61c7d2a0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b31f43973d4f2ec01e8272912f6876bd580610be8997565ec2c709308bbf1582
MD5 5110ae8792815f5baaf65ad2dc4b0b89
BLAKE2b-256 d64c9a9720bd2fc34d9e54a5dd919f6999e693d183c1b35c697ffcf7977daa55

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c1222e96387995ab88edf092b0dd85fe85e8a1e681c8f9606010e0473613a252
MD5 0b9f2780206028048fd7f59ee8a70a4c
BLAKE2b-256 546e43ea8cbd829cb6092e51d39ba3dca1879e69c4e08a32208cd99f248493d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92aebc063bb3ab8c47029069b900f1697374cc9f94858dfb06bc871035f7a461
MD5 af08cbf9d49af1e39d6e346804243bee
BLAKE2b-256 31c36da5221fb90770afa3ee05918aef58f8ad1cb405064b72cb198b1bacb047

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2e9f496b534daf78a9ebf9f19fed30c33b720cefd0576a025da21e289b72c62
MD5 75b297edcef79075d876b201316c507d
BLAKE2b-256 83f8dfb0128874fd763808fb07df9acbf7cb1861e280d28aad90fe94d808a26c

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b28c32671ede6ee390d1a25ef9bac451fd411d143abafeebc642eeabdae88c6
MD5 5a6ccba8cd7d9af5c41c0d04e789d783
BLAKE2b-256 4148ba47e31ae74cf991fa8a5eca8bfba75b8d5bbf7d0d0f20315629497236b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8f5e725097bf8fbdf9442b465da90079a527c23e2e14968a67013a7415cbc73d
MD5 80e66d698b43ec36cd915a7a80dd4b34
BLAKE2b-256 821435b473d77889f1ba04f9232ff46766fcee89382fd422855201b30c5a57cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7cc8b1af0b81aa87901fbf5007ae92774713037e46fb7140d66317e2a839b8b3
MD5 92910c4e9b3077700e57ee21caa02077
BLAKE2b-256 03cfdd241ea32d0106c83e1dd3ab3fd3cecfc3657b9db5b008348d67a77bbd2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8775d4bd19593c1a9e5c6ac103f853b64750ca285b8ea12f533af0c0d4a7c05
MD5 d8d62e6906c01b1e4d1067b26f3c2ec2
BLAKE2b-256 36fc4d0da031de65c601e6b55e8175b939e513537a27e8ebf430d23d7cdd732c

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4748ef86623c47ac32544a25b2a1b570bb818f13148cffa3547a429b81a1577d
MD5 09ad60c6bec22783c65aa0c3cccceec6
BLAKE2b-256 45595ff0e7ea96b7b90086903a0c4903c78ca3bb2267fb1b500ca403a783a68d

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ee19bd8bac299c8ac634110f11b85a542eaad135e0e0141304cb6de44fcaba89
MD5 ce4ee400402f867a6e15944bbc397264
BLAKE2b-256 89297f83f509e816088ae61b3803300495994bb8f23e0e6a7beee515e8937c3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d3731f33d5a1c677cb345b027f1ad5de182a48d378de8e8a1d3f2783698dcc3f
MD5 09133f95c925aecdf236bbe7a2570a28
BLAKE2b-256 6fdfb8b15db641982b24ab35b0b5341ee0d7084544feee7c9295a9df27df2037

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 933ca412a88dd1d5e52e347d50db767068eeb062f831e1e4b2b948b3b6003dac
MD5 247f28f8d8e0981e41d5517eea417e50
BLAKE2b-256 619c681d87bc212c6182a0c70faff4a7ba786e2c713619e7e90fadf766d7ed9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1622bd15037f3e8e88fd59910d6bc3aea72b0bb2b9bc5ae3e2f432f1bcf4a01
MD5 317a253d955d48f449b82bb994a29166
BLAKE2b-256 d103c453397ff81e01dbbfe6d74a4cdceb9502e1e9a70295f1e20dd7ecac09ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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

File details

Details for the file intextus_embed_ggml-0.1.6-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.6-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9e283e7731259c195a7ff1362fc64ca271d8d6aac735361a60a433359d8af254
MD5 9aea31009e5a20a2e641ea06d9f058f9
BLAKE2b-256 481f2c5fb74cf16699a922ff1d34d7806600e81895b51056d48f4aecc893e5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.6-cp39-cp39-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed-ggml

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