A lightweight, zero-PyTorch ONNX encoder for generic ColBERT models.
Project description
intextus
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d27a637266c102e14041e2b7ff26e7a293f460feccf2c4ebadac1633d88e39f1
|
|
| MD5 |
1385064f6752ce321d8814d5542dd8eb
|
|
| BLAKE2b-256 |
39aeef88792b7302b311fe9c4e0412c34fb7f036a49d1d31690027ffd71e9b60
|
Provenance
The following attestation bundles were made for intextus_embed-0.1.5.tar.gz:
Publisher:
publish.yml on Intextus/intextus-embed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5.tar.gz -
Subject digest:
d27a637266c102e14041e2b7ff26e7a293f460feccf2c4ebadac1633d88e39f1 - Sigstore transparency entry: 1894420438
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71fe94ae1a58fa8fcaeb309de24c151bd3627a038f7e4701ced545c06e386132
|
|
| MD5 |
7a87febc68c278b0d0899ff628b5690e
|
|
| BLAKE2b-256 |
397167d275a02b21c27c65476019be53d26b3c9ccfca71cd1b354b5dfcc071c5
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp313-cp313-win_amd64.whl -
Subject digest:
71fe94ae1a58fa8fcaeb309de24c151bd3627a038f7e4701ced545c06e386132 - Sigstore transparency entry: 1894421747
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ec6eeb464312045631dd1632a1936a71dab56df7609e6c6fae2c4e1ebe9a2f7
|
|
| MD5 |
1005df7ad58c8e0c665903f8addc1330
|
|
| BLAKE2b-256 |
8cd620854d5c573d5768b89631ac48e273d2286150172adb6ef0fa32a7be0cc1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
7ec6eeb464312045631dd1632a1936a71dab56df7609e6c6fae2c4e1ebe9a2f7 - Sigstore transparency entry: 1894422751
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25a13203cfb917332ee11c4af6c54c3833e016265c1ffba2938b32f2929f771f
|
|
| MD5 |
0697ad8810cca7cacb17a9b904b0f112
|
|
| BLAKE2b-256 |
e47d96eadb357b8d392ba9ca12ec2a356ee8a6030a1676ea87b228b0f22d46cb
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
25a13203cfb917332ee11c4af6c54c3833e016265c1ffba2938b32f2929f771f - Sigstore transparency entry: 1894420677
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp313-cp313-macosx_13_0_arm64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp313-cp313-macosx_13_0_arm64.whl
- Upload date:
- Size: 16.6 MB
- Tags: CPython 3.13, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9f606bd0f09145a6581770c318de06958a3529959f47697986a591110a8bedd
|
|
| MD5 |
b4c4222aedd6140197837fd2230a36ef
|
|
| BLAKE2b-256 |
215f64e89915f39fe366b0faa420597a84c205b6936beaf988c80898b5b7606d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp313-cp313-macosx_13_0_arm64.whl -
Subject digest:
d9f606bd0f09145a6581770c318de06958a3529959f47697986a591110a8bedd - Sigstore transparency entry: 1894421979
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90ea8c27de80304033c99af242092d9ff73c89bcc85f155e77dbc1db4d42c895
|
|
| MD5 |
790f5769c83db1a09d45ca2aca985285
|
|
| BLAKE2b-256 |
40fed3cb36ca811fb12aecc657ef6642f1a12dcc13ef132f180dc79bfc768cb0
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp312-cp312-win_amd64.whl -
Subject digest:
90ea8c27de80304033c99af242092d9ff73c89bcc85f155e77dbc1db4d42c895 - Sigstore transparency entry: 1894422948
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc1287bdaf8d174f0022dee90cb0d9a354083612a8f6ec9edb6b7581f3028de1
|
|
| MD5 |
038dc568a87a875af5c32cd3a84ff87b
|
|
| BLAKE2b-256 |
3f98c64f1c85005e3891902f48857664ae6fe5ef3aaee937cc970967ed0a4b3d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
cc1287bdaf8d174f0022dee90cb0d9a354083612a8f6ec9edb6b7581f3028de1 - Sigstore transparency entry: 1894422372
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d568f0e0a5bdccc8f9e1a0b05295a34ec1ebc1275a4434447a83067dba061a8f
|
|
| MD5 |
119fc623e71573591f40aa575d4b7a6d
|
|
| BLAKE2b-256 |
b37538e1ffb83a51f0b821190d18474203fac31b7bfbabaaa3bd355aeab564a3
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
d568f0e0a5bdccc8f9e1a0b05295a34ec1ebc1275a4434447a83067dba061a8f - Sigstore transparency entry: 1894423157
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp312-cp312-macosx_13_0_arm64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp312-cp312-macosx_13_0_arm64.whl
- Upload date:
- Size: 16.6 MB
- Tags: CPython 3.12, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0966201302f87dc158b243189b8252dad4621cd4c7b857671975423aa72c1da5
|
|
| MD5 |
c262f5bdaf20c28648ecfccc423702bc
|
|
| BLAKE2b-256 |
7fda8c683cf543c66303f5dfbf467fdc941ed8ac99b92e8d9ae2b56efe931100
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp312-cp312-macosx_13_0_arm64.whl -
Subject digest:
0966201302f87dc158b243189b8252dad4621cd4c7b857671975423aa72c1da5 - Sigstore transparency entry: 1894422841
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09efa18ded2b01977be786518397a9d77b6d6c906335bce4a591146c75c6e68b
|
|
| MD5 |
efb5c6244b40b5fec7fdcc9f42455041
|
|
| BLAKE2b-256 |
c4ed36d8894da49f1d4aff8079868eb3a6804b836b55a488ec582f2c36e3dab1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp311-cp311-win_amd64.whl -
Subject digest:
09efa18ded2b01977be786518397a9d77b6d6c906335bce4a591146c75c6e68b - Sigstore transparency entry: 1894421261
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97babbb12559034723caa7cc0688ef8bf6cefc6d376301dd4146a695763cd4f7
|
|
| MD5 |
11655d246ace7e635dd45e4a6f389839
|
|
| BLAKE2b-256 |
b2d95706080fbafd2a0971ba0197fe74ef21ed8be77161efc661b9e122c86eec
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
97babbb12559034723caa7cc0688ef8bf6cefc6d376301dd4146a695763cd4f7 - Sigstore transparency entry: 1894420568
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
865d1be4cec7cea4922f3045cbb73d69a7330c5d588d0cf05f5eaa5e80976060
|
|
| MD5 |
35e548f32fcfab108a916c298d7796da
|
|
| BLAKE2b-256 |
1687e178adce2b58d0851196c9236ce60c57b3d912dbba6dc4e9798add8da128
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
865d1be4cec7cea4922f3045cbb73d69a7330c5d588d0cf05f5eaa5e80976060 - Sigstore transparency entry: 1894422629
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp311-cp311-macosx_13_0_arm64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp311-cp311-macosx_13_0_arm64.whl
- Upload date:
- Size: 16.6 MB
- Tags: CPython 3.11, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
586ba1a79be4edc650c0d52562a0c726597cb7d471bd3827dc53b6541a587e83
|
|
| MD5 |
47d1785327ce3872bad013c10f219021
|
|
| BLAKE2b-256 |
504e5b5e15e235788bc3356ba1ac515d0a8b261ae428d349ebaefd3e0ab57fff
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp311-cp311-macosx_13_0_arm64.whl -
Subject digest:
586ba1a79be4edc650c0d52562a0c726597cb7d471bd3827dc53b6541a587e83 - Sigstore transparency entry: 1894421621
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b9e60b4f67a6593c34d1b3b1a215d5ae4146d3280816f9cf0f3485ef5cadc97
|
|
| MD5 |
0ea72a8da9088b2a6f81e01d7d5eea0c
|
|
| BLAKE2b-256 |
ce645240a5e89677c674cea6af7dce2a263a31bb7eb474316af207df90437003
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp310-cp310-win_amd64.whl -
Subject digest:
0b9e60b4f67a6593c34d1b3b1a215d5ae4146d3280816f9cf0f3485ef5cadc97 - Sigstore transparency entry: 1894421348
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
819fb7e67e7606418bbbe162e74f7f8804e47e7c67f121cd5f742b96fb4891e3
|
|
| MD5 |
61e719f2258ae4a498075b4d85797c52
|
|
| BLAKE2b-256 |
200851bb69a86ab4cc7000ec001be2853f0654b0a713504d92edb1f7d2349d44
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
819fb7e67e7606418bbbe162e74f7f8804e47e7c67f121cd5f742b96fb4891e3 - Sigstore transparency entry: 1894421157
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ce7f18acade5929157339524fb47bc5cac766d2bf4aa9d359860350d041ff4b
|
|
| MD5 |
c6824bc63132138df5a6a47a8c1218da
|
|
| BLAKE2b-256 |
3ffca2a91f66d36a31191688e10f55a3af18eadf37cdff18b5b41bcf5c64ccb6
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
1ce7f18acade5929157339524fb47bc5cac766d2bf4aa9d359860350d041ff4b - Sigstore transparency entry: 1894422506
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp310-cp310-macosx_13_0_arm64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp310-cp310-macosx_13_0_arm64.whl
- Upload date:
- Size: 16.6 MB
- Tags: CPython 3.10, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e4b136faa7d1642e2ec804766ebb8e4d3c6046608d5ff523ec65bb3a62d8ce6
|
|
| MD5 |
c182db6e48b91096c516380ac2ad50da
|
|
| BLAKE2b-256 |
9e198b7452fca4336f331d9ffbfd071d088eea6d6f1e058a55ced189e71273e9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp310-cp310-macosx_13_0_arm64.whl -
Subject digest:
4e4b136faa7d1642e2ec804766ebb8e4d3c6046608d5ff523ec65bb3a62d8ce6 - Sigstore transparency entry: 1894420840
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
247acdc127d1ca67bb0ee5befa1b8ab9653196e82c42f5a3144ee89707101a7f
|
|
| MD5 |
398e55602831bb9366b6332f64b0bd0a
|
|
| BLAKE2b-256 |
85df4a29453be051a46ac3d7553bd982de1cf086c0049feb3c26ee2e87733728
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp39-cp39-win_amd64.whl -
Subject digest:
247acdc127d1ca67bb0ee5befa1b8ab9653196e82c42f5a3144ee89707101a7f - Sigstore transparency entry: 1894422110
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94e28211fd6bd7381f5add684762d7e18b4a9d55af0bbe7e17295452b3a762b8
|
|
| MD5 |
c927462da6f55df006a77da56affcc74
|
|
| BLAKE2b-256 |
b9c1fe0453f640103f0568c83d35dd477054119bf21c03a8c359e187c80253f9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
94e28211fd6bd7381f5add684762d7e18b4a9d55af0bbe7e17295452b3a762b8 - Sigstore transparency entry: 1894421006
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4711255e9c9390684e20073ab119ec2b6188ee814c2ebb38f7c144923cf6771
|
|
| MD5 |
0a91bade6f43aa82a5605a2b36c17ad7
|
|
| BLAKE2b-256 |
afcec48472efbda55e2bdf605654a20e23a054a253d7361ba84412585bcc4775
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl -
Subject digest:
a4711255e9c9390684e20073ab119ec2b6188ee814c2ebb38f7c144923cf6771 - Sigstore transparency entry: 1894422262
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type:
File details
Details for the file intextus_embed-0.1.5-cp39-cp39-macosx_13_0_arm64.whl.
File metadata
- Download URL: intextus_embed-0.1.5-cp39-cp39-macosx_13_0_arm64.whl
- Upload date:
- Size: 16.6 MB
- Tags: CPython 3.9, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de450d28bf7366b67fe4b3f840cada6af5111ea550b12d058493b42176705d76
|
|
| MD5 |
71b4094d8de2de07580e26a1c7f2a51c
|
|
| BLAKE2b-256 |
e1da44b67f795bd98973feac6878eb29fd92e607c967c75a7d9ae965862bcd1e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
intextus_embed-0.1.5-cp39-cp39-macosx_13_0_arm64.whl -
Subject digest:
de450d28bf7366b67fe4b3f840cada6af5111ea550b12d058493b42176705d76 - Sigstore transparency entry: 1894421471
- Sigstore integration time:
-
Permalink:
Intextus/intextus-embed@5b3184000222c55018af18be4a466d7285b96236 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Intextus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5b3184000222c55018af18be4a466d7285b96236 -
Trigger Event:
push
-
Statement type: