Skip to main content

A lightweight, zero-PyTorch ONNX encoder for generic ColBERT models.

Project description

intextus

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

ColBERT embedding and MaxSim scoring without PyTorch. Uses a native C++ extension (ONNX Runtime + tokenizers-cpp) so you don't need to pull in 2 GB of deep learning dependencies just to encode some text.

Install

pip install intextus-embed

Only runtime deps are numpy and huggingface-hub.

Usage

from intextus import LateInteractionEncoder, compute_maxsim

model = LateInteractionEncoder()  # downloads intextus/mxbai-edge-colbert-v0-17m-onnx

q = model.encode_queries("What is late interaction?")
d = model.encode_docs("ColBERT computes token-level similarity.")

score = compute_maxsim(q[0], d[0])
print(score)

You can also point it at a local directory with model.onnx and tokenizer.json:

model = LateInteractionEncoder("./my-model/")

Models

Alias Repo Size Dim Notes
mxbai-edge-colbert-v0-17m intextus/mxbai-edge-colbert-v0-17m-onnx 66 MB 48 Default
mxbai-edge-colbert-v0-32m intextus/mxbai-edge-colbert-v0-32m-onnx 124 MB 64
colbertv2.0 intextus/colbertv2.0-onnx 438 MB 128 Standard ColBERTv2.0 BERT-based model
answerai-colbert-small-v1 intextus/answerai-colbert-small-v1-onnx 135 MB 96 Lightweight, high-performance model
jina-colbert-v2 intextus/jina-colbert-v2-onnx 2.23 GB 128 XLM-RoBERTa multilingual model
lateon intextus/lateon-onnx 580 MB 128 Case-sensitive: use do_lower_case=False

Any ColBERT ONNX model should work if you put model.onnx and tokenizer.json in a folder and pass the path.

Benchmarks

The following benchmark was run on CPU using 20 queries (max length 32) and 20 documents (max length 256), comparing intextus against fastembed execution:

Performance (Throughput & Speedup)

Model Operation intextus Throughput fastembed Throughput Speedup (Wall-clock)
ColBERTv2.0 Queries 71.3 QPS 31.6 QPS 2.25x
ColBERTv2.0 Documents 93.8 DPS 66.1 DPS 1.42x
Jina ColBERT v2 Queries 6.2 QPS 5.0 QPS 1.25x
Jina ColBERT v2 Documents 10.1 DPS 5.2 DPS 1.94x

How it works

  • Tokenization and inference run in C++ via a nanobind extension
  • GIL is released during encode and MaxSim calls, so you can run multiple threads
  • Punctuation tokens are masked out of document embeddings (standard ColBERT behavior)
  • Embeddings are L2-normalized by default
  • CPU only for now

Docker & Alpine Linux Compatibility

Because the underlying precompiled ONNX Runtime library is linked against glibc, this package will not run out-of-the-box on Alpine Linux images (e.g., python:3.10-alpine).

If deploying via Docker, it is highly recommended to use a Debian-based slim image:

FROM python:3.10-slim

If you must use Alpine, you will need to install the compatibility layer: apk add --no-cache gcompat.

Supported Platforms & Architectures

Precompiled wheels are published to PyPI for the following environments:

Operating System Architecture Python Versions Notes
Linux x86_64, aarch64 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 Built on manylinux_2_28 (glibc-based)
macOS arm64 (Apple Silicon) 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 SDK/deployment target macOS 13.3+
Windows AMD64 (x86_64) 3.9, 3.10, 3.11, 3.12, 3.13, 3.14

[!NOTE] Other platforms (such as Intel-based macOS or ARM-based Windows) will fall back to compilation from the source distribution (sdist). This requires a local C++ compiler (supporting C++17) and CMake.

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-0.1.5.tar.gz (20.4 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-0.1.5-cp313-cp313-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.13Windows x86-64

intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

intextus_embed-0.1.5-cp313-cp313-macosx_13_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

intextus_embed-0.1.5-cp312-cp312-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.12Windows x86-64

intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

intextus_embed-0.1.5-cp312-cp312-macosx_13_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

intextus_embed-0.1.5-cp311-cp311-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.11Windows x86-64

intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

intextus_embed-0.1.5-cp311-cp311-macosx_13_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

intextus_embed-0.1.5-cp310-cp310-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.10Windows x86-64

intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

intextus_embed-0.1.5-cp310-cp310-macosx_13_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

intextus_embed-0.1.5-cp39-cp39-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.9Windows x86-64

intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

intextus_embed-0.1.5-cp39-cp39-macosx_13_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

Details for the file intextus_embed-0.1.5.tar.gz.

File metadata

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

File hashes

Hashes for intextus_embed-0.1.5.tar.gz
Algorithm Hash digest
SHA256 d27a637266c102e14041e2b7ff26e7a293f460feccf2c4ebadac1633d88e39f1
MD5 1385064f6752ce321d8814d5542dd8eb
BLAKE2b-256 39aeef88792b7302b311fe9c4e0412c34fb7f036a49d1d31690027ffd71e9b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5.tar.gz:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71fe94ae1a58fa8fcaeb309de24c151bd3627a038f7e4701ced545c06e386132
MD5 7a87febc68c278b0d0899ff628b5690e
BLAKE2b-256 397167d275a02b21c27c65476019be53d26b3c9ccfca71cd1b354b5dfcc071c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ec6eeb464312045631dd1632a1936a71dab56df7609e6c6fae2c4e1ebe9a2f7
MD5 1005df7ad58c8e0c665903f8addc1330
BLAKE2b-256 8cd620854d5c573d5768b89631ac48e273d2286150172adb6ef0fa32a7be0cc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25a13203cfb917332ee11c4af6c54c3833e016265c1ffba2938b32f2929f771f
MD5 0697ad8810cca7cacb17a9b904b0f112
BLAKE2b-256 e47d96eadb357b8d392ba9ca12ec2a356ee8a6030a1676ea87b228b0f22d46cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d9f606bd0f09145a6581770c318de06958a3529959f47697986a591110a8bedd
MD5 b4c4222aedd6140197837fd2230a36ef
BLAKE2b-256 215f64e89915f39fe366b0faa420597a84c205b6936beaf988c80898b5b7606d

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90ea8c27de80304033c99af242092d9ff73c89bcc85f155e77dbc1db4d42c895
MD5 790f5769c83db1a09d45ca2aca985285
BLAKE2b-256 40fed3cb36ca811fb12aecc657ef6642f1a12dcc13ef132f180dc79bfc768cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc1287bdaf8d174f0022dee90cb0d9a354083612a8f6ec9edb6b7581f3028de1
MD5 038dc568a87a875af5c32cd3a84ff87b
BLAKE2b-256 3f98c64f1c85005e3891902f48857664ae6fe5ef3aaee937cc970967ed0a4b3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d568f0e0a5bdccc8f9e1a0b05295a34ec1ebc1275a4434447a83067dba061a8f
MD5 119fc623e71573591f40aa575d4b7a6d
BLAKE2b-256 b37538e1ffb83a51f0b821190d18474203fac31b7bfbabaaa3bd355aeab564a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0966201302f87dc158b243189b8252dad4621cd4c7b857671975423aa72c1da5
MD5 c262f5bdaf20c28648ecfccc423702bc
BLAKE2b-256 7fda8c683cf543c66303f5dfbf467fdc941ed8ac99b92e8d9ae2b56efe931100

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09efa18ded2b01977be786518397a9d77b6d6c906335bce4a591146c75c6e68b
MD5 efb5c6244b40b5fec7fdcc9f42455041
BLAKE2b-256 c4ed36d8894da49f1d4aff8079868eb3a6804b836b55a488ec582f2c36e3dab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97babbb12559034723caa7cc0688ef8bf6cefc6d376301dd4146a695763cd4f7
MD5 11655d246ace7e635dd45e4a6f389839
BLAKE2b-256 b2d95706080fbafd2a0971ba0197fe74ef21ed8be77161efc661b9e122c86eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 865d1be4cec7cea4922f3045cbb73d69a7330c5d588d0cf05f5eaa5e80976060
MD5 35e548f32fcfab108a916c298d7796da
BLAKE2b-256 1687e178adce2b58d0851196c9236ce60c57b3d912dbba6dc4e9798add8da128

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 586ba1a79be4edc650c0d52562a0c726597cb7d471bd3827dc53b6541a587e83
MD5 47d1785327ce3872bad013c10f219021
BLAKE2b-256 504e5b5e15e235788bc3356ba1ac515d0a8b261ae428d349ebaefd3e0ab57fff

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b9e60b4f67a6593c34d1b3b1a215d5ae4146d3280816f9cf0f3485ef5cadc97
MD5 0ea72a8da9088b2a6f81e01d7d5eea0c
BLAKE2b-256 ce645240a5e89677c674cea6af7dce2a263a31bb7eb474316af207df90437003

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 819fb7e67e7606418bbbe162e74f7f8804e47e7c67f121cd5f742b96fb4891e3
MD5 61e719f2258ae4a498075b4d85797c52
BLAKE2b-256 200851bb69a86ab4cc7000ec001be2853f0654b0a713504d92edb1f7d2349d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ce7f18acade5929157339524fb47bc5cac766d2bf4aa9d359860350d041ff4b
MD5 c6824bc63132138df5a6a47a8c1218da
BLAKE2b-256 3ffca2a91f66d36a31191688e10f55a3af18eadf37cdff18b5b41bcf5c64ccb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4e4b136faa7d1642e2ec804766ebb8e4d3c6046608d5ff523ec65bb3a62d8ce6
MD5 c182db6e48b91096c516380ac2ad50da
BLAKE2b-256 9e198b7452fca4336f331d9ffbfd071d088eea6d6f1e058a55ced189e71273e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 247acdc127d1ca67bb0ee5befa1b8ab9653196e82c42f5a3144ee89707101a7f
MD5 398e55602831bb9366b6332f64b0bd0a
BLAKE2b-256 85df4a29453be051a46ac3d7553bd982de1cf086c0049feb3c26ee2e87733728

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94e28211fd6bd7381f5add684762d7e18b4a9d55af0bbe7e17295452b3a762b8
MD5 c927462da6f55df006a77da56affcc74
BLAKE2b-256 b9c1fe0453f640103f0568c83d35dd477054119bf21c03a8c359e187c80253f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4711255e9c9390684e20073ab119ec2b6188ee814c2ebb38f7c144923cf6771
MD5 0a91bade6f43aa82a5605a2b36c17ad7
BLAKE2b-256 afcec48472efbda55e2bdf605654a20e23a054a253d7361ba84412585bcc4775

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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-0.1.5-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for intextus_embed-0.1.5-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 de450d28bf7366b67fe4b3f840cada6af5111ea550b12d058493b42176705d76
MD5 71b4094d8de2de07580e26a1c7f2a51c
BLAKE2b-256 e1da44b67f795bd98973feac6878eb29fd92e607c967c75a7d9ae965862bcd1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for intextus_embed-0.1.5-cp39-cp39-macosx_13_0_arm64.whl:

Publisher: publish.yml on Intextus/intextus-embed

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