genai-pyo3
Typed Python bindings for the Rust genai crate, built with pyo3 and maturin.
This repo uses the upstream GitHub repository for genai directly:
genai = { git = "https://github.com/jeremychone/rust-genai", rev = "cf3396e3ac9c6bf74be5a9ed4c2400ff920f29e7" }
What It Exposes
The Python extension currently exposes:
ClientGenaiErrorChatMessageChatRequestChatOptionsChatResponseChatStreamEventStreamEndToolCallUsage
The main async entry points are:
await client.achat(model, request, options=None)for a full responseawait client.achat_via_stream(model, request, options=None)for a fully collected response from a streaming-only endpointawait client.astream_chat(model, request, options=None)for chunked streaming
ChatResponse.reasoning_content exposes captured readable reasoning, while
ChatResponse.thought_signatures exposes encrypted reasoning signatures that
must be retained when replaying an assistant turn. Both are also included by
ChatResponse.to_dict().
For a signed-thinking tool continuation, carry both values onto the assistant message along with the returned tool calls:
assistant = ChatMessage(
"assistant",
"",
tool_calls=response.tool_calls,
thought_signatures=response.thought_signatures,
reasoning_content=response.reasoning_content,
)
Install
Editable install with uv:
uv pip install -e .
This builds the pyo3 extension and makes genai_pyo3 importable from the active environment.
Quick Start
Minimal async call:
import asyncio
from genai_pyo3 import ChatMessage, ChatOptions, ChatRequest, Client
async def main() -> None:
client = Client()
request = ChatRequest(
messages=[ChatMessage("user", "Say hello in one short sentence")]
)
options = ChatOptions(temperature=0.2)
response = await client.achat("gpt-4o-mini", request, options)
print(response.text)
asyncio.run(main())
Errors and retries
Model-call failures raise GenaiError, a RuntimeError subclass with structured
metadata copied from rust-genai:
from genai_pyo3 import GenaiError
try:
response = await client.achat(model, request)
except GenaiError as error:
print(error.kind) # e.g. "http_error", "timeout", "web_stream"
print(error.status_code) # e.g. 429 or 503; None for transport failures
print(error.retryable) # True for transport failures, 429, and 5xx
print(error.headers) # response headers when rust-genai retained them
print(error.body) # response body when rust-genai retained it
The library reports retryability but does not retry calls itself. This keeps retry budgets and backoff policy under application control. A response-body stream decode failure generally has no HTTP error status because the server already returned a successful status; it is exposed as a retryable transport error instead.
Minimal async streaming call:
import asyncio
from genai_pyo3 import ChatMessage, ChatOptions, ChatRequest, Client
async def main() -> None:
client = Client()
request = ChatRequest(
messages=[ChatMessage("user", "Write three short bullet points about Rust")]
)
options = ChatOptions(capture_content=True, capture_usage=True)
stream = await client.astream_chat("gpt-4o-mini", request, options)
async for event in stream:
print(event.kind, event.content)
asyncio.run(main())
Examples
examples/async_chat_basic.py: basicachatexampleexamples/async_stream_chat.py: basicastream_chatexampleexamples/client_overrides.py: explicit provider/API-key override exampleexamples/gemini_env.py: Geminiachatexample using env varsexamples/gemini_stream_env.py: Gemini streaming example using env vars
Run The Gemini Examples
The Gemini examples use:
GEMINI_API_KEYGEMINI_MODEL(optional, defaults togemini-2.0-flash)GEMINI_BASE_URL(optional, for custom or local Gemini-compatible endpoints)
Non-streaming:
GEMINI_API_KEY=your-key python examples/gemini_env.py
Streaming:
GEMINI_API_KEY=your-key python examples/gemini_stream_env.py
With a custom endpoint:
GEMINI_API_KEY=your-key \
GEMINI_BASE_URL=http://your-host/v1beta \
python examples/gemini_env.py
GEMINI_API_KEY=your-key \
GEMINI_BASE_URL=http://your-host/v1beta \
python examples/gemini_stream_env.py
If GEMINI_BASE_URL is unset, the examples use the default Gemini endpoint resolved by the underlying genai client.
Layout
Cargo.toml: Rust extension cratepyproject.toml: Python package metadata andmaturinconfigpython/genai_pyo3: Python package entrypointsrc/lib.rs:pyo3binding implementationexamples/: small Python usage examples
Local Development
Create a virtualenv and install in editable mode:
cd genai-pyo3
python -m venv .venv
source .venv/bin/activate
uv pip install -e .
The committed dependency uses an exact upstream revision for reproducible builds.
Release files for genai-pyo3 0.7.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| genai_pyo3-0.7.0.2.tar.gz | 56.2 kB | Details |
Built distributions (wheels)
Total release size:188.6 MB
Release files / genai_pyo3-0.7.0.2.tar.gz
| Download URL | genai_pyo3-0.7.0.2.tar.gz |
|---|---|
| Size | 56.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
79d1fa6cf07be49d4d52ab63c034163603c997e6ca6f739d1f2541c46e7c6eae
|
|
BLAKE2b-256 checksum How to use checksums |
7a690d3c01b7508fc3887e15197b9d305fb2ab43d837e46229e97dcf2601f779
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-win_arm64.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
29210c960b131d66c20a9addb7ce30eac5d32ea0a144cf7c1978c53ceff00837
|
|
BLAKE2b-256 checksum How to use checksums |
4ec80303f62100c1f22a561ca28a39c50047dd37d3f5e5c5f2d6154c077d8f25
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-win_amd64.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
35a5b27a5ce0ee4fe129c28ddec6ebd241d950786100b8f16721f82bb2f31779
|
|
BLAKE2b-256 checksum How to use checksums |
4b3f87ec3371e497153c869d844f2d01eed619c78adbe5317e9af849e4121243
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
780838f34f55469a3ab0bbb63d7c006e0616d07c7f7cdb704b20944de8ed4aa4
|
|
BLAKE2b-256 checksum How to use checksums |
6aa536e19387456724709e3479ac4519a1ced48f685e553e79ceabbf1e0b0e70
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
3471e164dc6bc990114ea474f542ddd5b34cd7df2d3f22ee54632858b944a812
|
|
BLAKE2b-256 checksum How to use checksums |
a7b2f39bd12e810874eb3be044d265d7a30794c462ca78f98d3d959c075fee5c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
c72f42f311fb1134a6dd5c4b90651e21ee82a1aca1e4d0660f810325402d0d30
|
|
BLAKE2b-256 checksum How to use checksums |
f57c665bd607e04d02fcc736755e1b7cba001b226e841e509b380976f7a55c75
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
b0c1faf9b0d1814ab0624ce5f69b4165bc986aef877a40cf35ebf90015095ed5
|
|
BLAKE2b-256 checksum How to use checksums |
9017b4ac35d43524e7bbd4a385cc5a80ae231f95ca21171a90a87aeff1e1df2c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
| Download URL | genai_pyo3-0.7.0.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl |
|---|---|
| Size | 7.9 MB |
| Tags | CPython 3.14 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
017ae8ea3566a61c0506fd900c0afc252eecc20c96dc43264469d809a0f6433b
|
|
BLAKE2b-256 checksum How to use checksums |
c01a497ca75f72299161d049fdb8ca305b54189fdda882bae7e9b0d88aacdd99
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-win_arm64.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
a03c21ab1656bb12c99632d491edf321393c872518ab5cdf5da781b6c46d8d2c
|
|
BLAKE2b-256 checksum How to use checksums |
37d252cc521cf1c9ca1750e2851c781725d3fbfce917636307a435df03d855fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-win_amd64.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0c579705c750dd2fab854e504c39e62cedb1d8c220801dd0b4cea0f60f6047d2
|
|
BLAKE2b-256 checksum How to use checksums |
343239d1d2d370f40d12af447fca5c7f83bb66acb1e50254f3c2571f3c0704f2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
757e00cc8e653a4847b69929223bfe0a18d5124e61e65abdd9a63befcffe7631
|
|
BLAKE2b-256 checksum How to use checksums |
d3778c8241f45773bea770d844e1c0a8e2bcaed07ab700d8e48847c0c22ebf21
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
9272093db63d2eff80f09ad04bbc7a54e4e481d2fad8248b42e191ad8a8afbfa
|
|
BLAKE2b-256 checksum How to use checksums |
04a352cecc7fdef46772a938348d9a6f8ffc04519e85c47067413a6ef5060f19
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
be67cfbbd3fadee23447fe147ef3d2efbdd13834616b6dfb57f62bcd35795406
|
|
BLAKE2b-256 checksum How to use checksums |
ffd7fcdf486d1568ed67d49a8306cb6704d7230ebebba349f8befa1f9a96c1e5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
1968353d3b1a1d0ea77444c77748c57c001e5e60f5887b37ef0521a0cae08ae4
|
|
BLAKE2b-256 checksum How to use checksums |
63dd8a929ff59af9b869f8838b30ca4d5e1b55f130098cf0db666f4a96a5ea3c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
| Download URL | genai_pyo3-0.7.0.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl |
|---|---|
| Size | 7.9 MB |
| Tags | CPython 3.13 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a9ab5b2bebbb40129d95c8b92d468731589474ba23dace23311aacc14d6c5817
|
|
BLAKE2b-256 checksum How to use checksums |
eabc1c632a1b144760242bbab1a7fa5153e186c1c9e6823c63d372be3fd6fd22
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-win_arm64.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
d253d49af48d609bffa2a5408bbd03c779c26dc91a092eb4e8d631bd24d19561
|
|
BLAKE2b-256 checksum How to use checksums |
f08ddbf48cc77a715cf66f379495c40fa8ddd5481125c57e68e738698104e571
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-win_amd64.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cd323a3b0ecfd235578552f9ef4ab565077ca36064aad7dc8af99016bb549437
|
|
BLAKE2b-256 checksum How to use checksums |
a9abaa4b9807cf7676f4300d30c3a76b484ba28d1a77edc78cddaa76fdca9229
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b4eb3f900252cb2704486cb0cf18df5b7277379786392126d6dcdd686a53bebc
|
|
BLAKE2b-256 checksum How to use checksums |
c87a082673b1b727d4c229a6b480dd5e75939b9ab23b57c2fff1df23aba68770
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
603946411cce4fd08212af89bb970a6da10bd7ba6dfa5b1e66d31ef6b9e3e6f6
|
|
BLAKE2b-256 checksum How to use checksums |
4ba6a0862bf3e1366b09927defeada0e56671f39cd7cd004ebf29e978f4a2b8a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
25d1d1b95225cdf4851a602fae54a213546d92776da51b60877a7bbc7485faf0
|
|
BLAKE2b-256 checksum How to use checksums |
aa5532e4d25d4e74ddcc8cb8993d64958509906fa0b7825425c068e16c8582bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
9b6f48b5a370d99262c410622d5cffaa74fdd38681a43f6b4feb8b108d07be03
|
|
BLAKE2b-256 checksum How to use checksums |
9e2b40f9ab34ce8193bc696888fbc6cc45d443775d084bfb59d3e19627efc52e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
| Download URL | genai_pyo3-0.7.0.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl |
|---|---|
| Size | 7.9 MB |
| Tags | CPython 3.12 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c1fa60c8a68f556844551c0a741387ca1b7af8373a9f724660a025814af6816d
|
|
BLAKE2b-256 checksum How to use checksums |
11bc23e024598641251e54d9a273f9d1ee6f021ee363a7ec527a17fc71ba5f3b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-win_arm64.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
10e5231cf3b8310911b70fd5802d60906e9afa93f2ddc2a4211d08cefee314b9
|
|
BLAKE2b-256 checksum How to use checksums |
37ab2be10d567defa9583149461fa7ccfbb323d681cc2ae07bd5e6657da49080
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-win_amd64.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
53bc497efab35cd66c8452a4eceb2f111241cfe289706d1ff07be4d6175ec8c3
|
|
BLAKE2b-256 checksum How to use checksums |
564664d87c1b284407f351e0293e7a9b1b7c2f5eed4efee604a6779eeaa60e90
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
47b6a79529e5e2b0070a8b8483337a167a82e160699444f67fb8c39f2b9c7a45
|
|
BLAKE2b-256 checksum How to use checksums |
da6a0b182a712502c2cc641f6bd8b65a857c10350733d94f67ac1dff6bbf512a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
c77810fbf5c2039cdb2cc8118c12546ad9fcab4f715917e880c0c0316a56e4cb
|
|
BLAKE2b-256 checksum How to use checksums |
e4e1dde0580d5ce1352012106e224bb98e862930223db024f1b84ab61d46ecbc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
468d7f79cf35e6257d464d61bcbbf32634f6baa093f6548bceef37311f206413
|
|
BLAKE2b-256 checksum How to use checksums |
8de5621a92e52f9fa2c0b958fa17ef025246a0cbfe1e7ca04bdea213aaf21a26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
0ec6efa6fcf185b6b1181f50c21e6825596b8f534d470c806dc62ba4980a9d45
|
|
BLAKE2b-256 checksum How to use checksums |
5355274fb6021f4762ce4b8bf5f731790af615d6bfeaa9d8beb5f5e4329ecbf7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
| Download URL | genai_pyo3-0.7.0.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl |
|---|---|
| Size | 7.9 MB |
| Tags | CPython 3.11 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
5c7fd801b147e31da0f76a8a0f44b195467d4d963069bbb59c2269ad7ee5519d
|
|
BLAKE2b-256 checksum How to use checksums |
bbedae9e6fc579dc672ec08350ef52c60efd9e8be1d44635a257041e5cf08b67
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp310-cp310-win_amd64.whl
| Download URL | genai_pyo3-0.7.0.2-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e969cd91dc90582df55310e9926d3c394329be9e19683c21aad992df14b450ad
|
|
BLAKE2b-256 checksum How to use checksums |
11ed23741009ee89e931184bc8d0175b8b8bb748a70653acf1c8171520e2dfb1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
4b83231d136a2c46d3f68065270e627e805e3cdc17f39b65bfbdfa4e8a7e5833
|
|
BLAKE2b-256 checksum How to use checksums |
4cd4eccd52d158981ad43be7991bfc6761d5baa7fe607ed14d83df60b5700dbc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
969bf89bd7d56504b9796dd2818a7141c9dcacaafa379f5ae709b1a909858c9d
|
|
BLAKE2b-256 checksum How to use checksums |
22388b4f26bd589d248e50d4313558621e4dcac76ddeb7e7a244906f50a7958f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
11246ec45a3320499b9af2939ea5e57dfa2cbebefc3a96e7fe693916d27e8e81
|
|
BLAKE2b-256 checksum How to use checksums |
1ad4a9d53dc3a867e80f3bfad731146392ccba4a841efe8a89b9e2dd16d35260
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
b35439a262cee0fd7e33ee5d9be575fd56bbdd3bba56a15da20d3b43ad40026b
|
|
BLAKE2b-256 checksum How to use checksums |
435e0bec9805fbee332950d0c2462bbd2841cb2b5c98699a1ee7b676f306f56e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
| Download URL | genai_pyo3-0.7.0.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl |
|---|---|
| Size | 7.9 MB |
| Tags | CPython 3.10 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c63598454f9f4d47bc5923f311e725f123c30b7c971b0147d3b51ed98acf2d84
|
|
BLAKE2b-256 checksum How to use checksums |
888521173ec4ffb9a7ee7332ad48c617b8b2cb1bc67cee778a792777cdbf1875
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp39-cp39-win_amd64.whl
| Download URL | genai_pyo3-0.7.0.2-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
845bb18b7535436e69491ab997601fbdb9e68d618cb780b862010c784ae9cbee
|
|
BLAKE2b-256 checksum How to use checksums |
779bd8e9b281b47086e91c3f2096713b535d7127c98770f9809ae63073388a12
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
6ad2c2c8d2e767dd4a46264ae629c14531cc7f7d3e1ebcbee04867edeb6b85ce
|
|
BLAKE2b-256 checksum How to use checksums |
0b6b4bf99d4bbcd4c8c1e62429a844bf285a48000089c754278e6aba201ed9e6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
841ec60e231d3d6240e55e6fd8dda17019ee76bf827d77a9387172ceb1552942
|
|
BLAKE2b-256 checksum How to use checksums |
678f61ddd3600c860a6d3d248ce5f239673fa87306e12e61cf4ba5f2f563d658
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | genai_pyo3-0.7.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
831cadb234247c1c95096b1d9e9b2bc7ebc0f0433b0e6e377c73bdce8c27cd72
|
|
BLAKE2b-256 checksum How to use checksums |
1ef2d0a6eaceae800fd3a6f98bdcfab3612f0d74a9c7775ee77c93d849dd5161
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | genai_pyo3-0.7.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
f58f151ff60ffeff030e8efdcd570806d72a607d4866671488a89ad6a5de6a5b
|
|
BLAKE2b-256 checksum How to use checksums |
3db81ac94d9a40d1b879c1c7dd91e74f386b453ca5463f43d68fc7b8b7c4d9f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / genai_pyo3-0.7.0.2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
| Download URL | genai_pyo3-0.7.0.2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl |
|---|---|
| Size | 8.0 MB |
| Tags | CPython 3.9 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
3a0a55f149002c3ea4aaa313968ed96c7a5a5f315d41e804837fdbb9f33775b5
|
|
BLAKE2b-256 checksum How to use checksums |
8134ba8a3b2864fd9bb07d870561011002973a0e652d4197a5f24e60957c5224
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency log