Skip to main content

A lightweight, zero-PyTorch GGML/GGUF encoder for generic dense embedding 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 native tokenization) 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 or directly to a .gguf file path:

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

Supported Out-of-the-Box Models

The engine automatically handles GGUF model downloading, caching, and pooling settings for the following pre-quantized models hosted on Hugging Face:

  • sentence-transformers/all-MiniLM-L6-v2 (default, Mean Pooling, 384 dimensions)
  • BAAI/bge-small-en-v1.5 (CLS Pooling, 384 dimensions)
  • lightonai/DenseOn (ModernBERT architecture, CLS Pooling, 768 dimensions)

You can query the list programmatically:

from intextus import DenseEncoder

print(DenseEncoder.list_supported_models())
# ['sentence-transformers/all-MiniLM-L6-v2', 'BAAI/bge-small-en-v1.5', 'lightonai/DenseOn']

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 (no longer required, as llama.cpp loads vocabulary natively from the GGUF model).
  • 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).

Benchmarks & Reproducibility

To reproduce the latency, memory footprint (RSS), and quantization accuracy results, run the scripts directly using uv:

# 1. Run the latency and memory benchmark (automatically manages fastembed dependency)
uv run --group benchmark python scripts/benchmark.py

# 2. Run the quantization accuracy benchmark
uv run python scripts/benchmark_accuracy.py

Benchmark Results & Visualizations

Below is the comparison data and performance charts measured on AMD64 CPU (Linux):

Model: sentence-transformers/all-MiniLM-L6-v2 (Mean Pooling)

MiniLM Latency MiniLM Memory

Metric intextus (Q8_0) fastembed (ONNX) Speedup / Savings
Model Load Time 1418.8 ms 15163.7 ms 10.69x
Single Latency (Mean) 2.15 ms 8.50 ms 3.96x
Single Latency (p50) 2.11 ms 8.03 ms 3.81x
Single Latency (p95) 2.49 ms 10.71 ms -
Peak RSS Memory 106.2 MB 945.3 MB 8.90x less

Batch Latency & Throughput

MiniLM Throughput

Batch Size intextus Latency (per-sent) fastembed Latency (per-sent) intextus Throughput fastembed Throughput
1 1.22 ms 9.11 ms 821.2 sent/s 109.8 sent/s
4 1.33 ms 7.07 ms 753.6 sent/s 141.5 sent/s
8 1.43 ms 7.30 ms 699.5 sent/s 137.0 sent/s
32 1.44 ms 13.12 ms 693.4 sent/s 76.2 sent/s
128 1.47 ms 18.67 ms 682.3 sent/s 53.6 sent/s

Model: BAAI/bge-small-en-v1.5 (CLS Pooling)

BGE Latency BGE Memory

Metric intextus (Q8_0) fastembed (ONNX) Speedup / Savings
Model Load Time 1645.5 ms 11304.1 ms 6.87x
Single Latency (Mean) 5.17 ms 5.30 ms 1.02x
Single Latency (p50) 5.16 ms 5.19 ms 1.01x
Single Latency (p95) 5.97 ms 5.93 ms -
Peak RSS Memory 120.2 MB 403.5 MB 3.36x less

Batch Latency & Throughput

BGE Throughput

Batch Size intextus Latency (per-sent) fastembed Latency (per-sent) intextus Throughput fastembed Throughput
1 2.68 ms 4.98 ms 373.3 sent/s 200.7 sent/s
4 3.44 ms 2.26 ms 290.9 sent/s 442.0 sent/s
8 3.71 ms 2.80 ms 269.9 sent/s 356.9 sent/s
32 3.73 ms 2.47 ms 268.0 sent/s 405.0 sent/s
128 3.66 ms 4.31 ms 273.0 sent/s 231.8 sent/s

Quantization Accuracy vs. F32 Baseline

Below is the cosine similarity accuracy comparison of different quantization formats vs the unquantized F32 baseline, measured over a set of diverse test sentences:

Quantization Size (MiniLM) Cosine Similarity vs. F32 Status / Recommendation
F32 86.7 MiB 1.000000 Baseline
F16 43.4 MiB 1.000000 Near Lossless
Q8_0 23.5 MiB 0.999659 Highly Recommended (virtually lossless, 3.7x smaller)
Q4_0 18.4 MiB 0.970772 Not Recommended (noticeable drop in semantic accuracy)

💡 Tip: For small embedding models like MiniLM and BGE-small, 8-bit quantization (Q8_0) is the absolute sweet spot, retaining 99.96% accuracy while reducing memory footprint and load times. Lower bit-depths like 4-bit (Q4_0) suffer noticeable quality loss due to the small parameter capacity of these architectures.

Model: lightonai/DenseOn (ModernBERT, CLS Pooling)

We have conducted a detailed evaluation of accuracy loss, file size compression, and CPU inference latency across all 9 quantization formats of the lightonai/DenseOn model (ranging from Float32 to 2-bit quantization).

For detailed tables, recommendation guides, and performance charts, please read the full DenseOn Quantization & Accuracy Results.

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.8.tar.gz (778.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.8-cp313-cp313-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.13Windows x86-64

intextus_embed_ggml-0.1.8-cp313-cp313-manylinux_2_34_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

intextus_embed_ggml-0.1.8-cp313-cp313-manylinux_2_34_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

intextus_embed_ggml-0.1.8-cp313-cp313-macosx_13_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

intextus_embed_ggml-0.1.8-cp312-cp312-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.12Windows x86-64

intextus_embed_ggml-0.1.8-cp312-cp312-manylinux_2_34_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

intextus_embed_ggml-0.1.8-cp312-cp312-manylinux_2_34_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

intextus_embed_ggml-0.1.8-cp312-cp312-macosx_13_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

intextus_embed_ggml-0.1.8-cp311-cp311-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.11Windows x86-64

intextus_embed_ggml-0.1.8-cp311-cp311-manylinux_2_34_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

intextus_embed_ggml-0.1.8-cp311-cp311-manylinux_2_34_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

intextus_embed_ggml-0.1.8-cp311-cp311-macosx_13_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

intextus_embed_ggml-0.1.8-cp310-cp310-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.10Windows x86-64

intextus_embed_ggml-0.1.8-cp310-cp310-manylinux_2_34_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

intextus_embed_ggml-0.1.8-cp310-cp310-manylinux_2_34_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

intextus_embed_ggml-0.1.8-cp310-cp310-macosx_13_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

intextus_embed_ggml-0.1.8-cp39-cp39-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.9Windows x86-64

intextus_embed_ggml-0.1.8-cp39-cp39-manylinux_2_34_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

intextus_embed_ggml-0.1.8-cp39-cp39-manylinux_2_34_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ARM64

intextus_embed_ggml-0.1.8-cp39-cp39-macosx_13_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: intextus_embed_ggml-0.1.8.tar.gz
  • Upload date:
  • Size: 778.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.8.tar.gz
Algorithm Hash digest
SHA256 f8e6fc545faa1a384b18163a3db2d62c62b91e1475f4b37bf6ae9e2eba599545
MD5 615976d848bd651cbe5dfeb035ce0100
BLAKE2b-256 cb4d30bb2d3931d3c986ebb299b1f8505be32ae2b2f1f283c99983206bfb38f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8.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.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ffea63a992d5bfaf311c0fbd8138bea75e3a181414f15f66782338355e2186c6
MD5 320fb5bbd2143362b6eee713b5c4d4a9
BLAKE2b-256 d4cda51ab0b678fdd7569d288d53d1f4231a7b08dd81c6f8f9fef0531a4faef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8d5353cb8fc344972703fd4bb3f6cc66211a62bcb92c748835084f56965275ac
MD5 0dfdba2102286777abfb34f47bcebc2c
BLAKE2b-256 0ff6c13a5c556958c860037d80bec8303def2569b4b95ca3ce9e5bad6546c36e

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp313-cp313-manylinux_2_34_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.8-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4825c78d4715ef6afd31d104aef704efbf6677883a7eb4f5a0585795440c41e4
MD5 9a66ebbdeb62a28fbce07d4cb3ba8dd8
BLAKE2b-256 fdd229d572178628b54455762f42f20ec35d3c386c4f2a7304730a4f1c2b2eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp313-cp313-manylinux_2_34_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.8-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5781c678afec6c66a7fb88b681b58a18ebde1e7154aea9317ec12d2e0eb0d8bc
MD5 d9f6db6aaced7151ff44d8f11e9d8393
BLAKE2b-256 931f5a09b915a834698542854282ffb8d70f2c729410356dbcb65addb1e8c969

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed689f8911932a633fab21ab6d8d1874897f08e08e916028b32d402499096d5d
MD5 fe9c800af5c15f8bb41ec60b72c2f8eb
BLAKE2b-256 1599a216b34531ad3e4af028cb26c2b981415422c2a76bd52f16485c87fd3527

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5b57c8ab9ffd336960c55d6d905f85619a209f53fa91149e0436a4c0f934c3f4
MD5 a9f844a1e5468c9434129e24195a4a26
BLAKE2b-256 70499e748d219d18f76095ae35945462fc11a3fc0fe5e5839d5aeffc92dea7f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp312-cp312-manylinux_2_34_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.8-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 3fcb214c4b7dac7ce395ffb399711bbab2bae1ab9d1922d780b12eedd8930c88
MD5 4e6bd5d61b205e3d9cd9887a19747865
BLAKE2b-256 f423b61efeeffac699ea83f30cbce7afbeb2767c45fe53c6ab5c7848d1ece032

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp312-cp312-manylinux_2_34_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.8-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c30511143a6bd574465023a2d956b96b59d7a7f9e6d5223939213bb9b9b8454e
MD5 2ac2f0eaf7a70d1d92fdf380b3367062
BLAKE2b-256 d3c47af6d53f9edf2038940826c727b93422e1ed5c0062d4903f85f5be89533a

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5699594c07d8d29b321f1d7209010e9ff533da86d6f4c529eed57d8339e83be3
MD5 dfa0f470e4666e6e40c76296e2960a42
BLAKE2b-256 f80353a6cd35162050f43d30fb4bdfe7a65dcdfe145907465f62f1f76c819a05

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5a5fc8d9798a10260074c75b797a99058f4d7b15d38829829740bcf0521df3e5
MD5 e3beaefec510d54e459d94bf381f26db
BLAKE2b-256 e3d1fc1c023f4d24d8f88f95019427f3584f50b891bbe3e793da849c7c778dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp311-cp311-manylinux_2_34_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.8-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b9d503b6112deff9429fbf321cf7cd99b9e0b3211d831fe410f0d1c4300ce00b
MD5 9d4fcc5b5a1888e29b38c1ea7a34de62
BLAKE2b-256 c5f51d3e9dc8286d49616ceb652bea37643d1c26d9f1602c56739077601c9b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp311-cp311-manylinux_2_34_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.8-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 913f741b39775e122498cb1cc892e66e06b85491b8add92f4cd94174934c0986
MD5 194f33a80e56367f5bb5e02a8f9d06d1
BLAKE2b-256 905a6524ef4663ca94f4d471a2c77dac0c159de10280de4893c7a531c224e24e

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4592f3a49b671e965b8ba09f9b6e6833021d8efdabb46f92a4b85485217aec20
MD5 201c0f3ee22a58e6e89905a7c200e823
BLAKE2b-256 6a7b0ef94fcdf06d16afabe31c32bba7c19144f6a577143aa94069ac245f7bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9d823fd94cf711604b7efae50327349bdc5878df78b553830dce9779b80e199d
MD5 58519be980bb669a1cae5e1ce5d47d13
BLAKE2b-256 96888077552d3f290df8a6f2870d71ccdd22f9c9f0d658a2b0448b62f4c17490

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp310-cp310-manylinux_2_34_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.8-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 40f288f9687cb49072ebfd4ec1569a26ff108b8c73f0d577aff56a2ce3097308
MD5 5249b9183c7fee36ca821c71e2be76de
BLAKE2b-256 8383737c2019fb44c4248cd840628a8477b6806293a0aa8ff8a7ac8755ccf4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp310-cp310-manylinux_2_34_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.8-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7f55a31348321a982e9957bf7611a584f1f46aae76e9f25b3ca9a37722e61ee3
MD5 0e0dc4f5abb71674579a60dc582a4475
BLAKE2b-256 6e5a89921965b20ee9693d75f849435cb3111c1df99f9db2be1df1ec55bd6799

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6afde1b8712f985d741479b7404925adaa4b5e6c49ce1bb14b551834e6b84859
MD5 f4c5c40134a35dbe021971077a6ff0ad
BLAKE2b-256 30a34ce9b82a2483a76f07b04bad31b5441d7a66921313c0909e3de5b77df7eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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.8-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bdd492aeef58af9b65584a1dad94361d3543aa70131dc32bfdf0e8a01f146a3f
MD5 e4892ad222ff448c7c0dbab10b723f55
BLAKE2b-256 6f9dde771330b611a052feed859e41ae79e2892966b9c0bf3b27b38d1a4af853

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp39-cp39-manylinux_2_34_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.8-cp39-cp39-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp39-cp39-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4369efe46c0201a9c9276160aff8fc08f13c0000dfc0de9794c0eb1ab8502666
MD5 88d39e1a5935f26c74a7fc4f49864c4e
BLAKE2b-256 6f0d5527be67a594aac81452a39ce820e1dd373dc2514373d8c4c3552fdf2455

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-cp39-cp39-manylinux_2_34_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.8-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed_ggml-0.1.8-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2f87871a6848b1b622fcdec7419414a1d6727d2750ee6eb5ac276ddd7175e688
MD5 8d81b4d7ab0e2f2b9e54be532e19b975
BLAKE2b-256 c3a371611214a4be339db183215060276579289a63dfadabc3f350d5fc8b7490

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed_ggml-0.1.8-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