Skip to main content

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" }

What It Exposes

The Python extension currently exposes:

  • Client
  • GenaiError
  • ChatMessage
  • ChatRequest
  • ChatOptions
  • ChatResponse
  • ChatStreamEvent
  • StreamEnd
  • ToolCall
  • Usage

The main async entry points are:

  • await client.achat(model, request, options=None) for a full response
  • await client.achat_via_stream(model, request, options=None) for a fully collected response from a streaming-only endpoint
  • await 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().

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: basic achat example
  • examples/async_stream_chat.py: basic astream_chat example
  • examples/client_overrides.py: explicit provider/API-key override example
  • examples/gemini_env.py: Gemini achat example using env vars
  • examples/gemini_stream_env.py: Gemini streaming example using env vars

Run The Gemini Examples

The Gemini examples use:

  • GEMINI_API_KEY
  • GEMINI_MODEL (optional, defaults to gemini-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 crate
  • pyproject.toml: Python package metadata and maturin config
  • python/genai_pyo3: Python package entrypoint
  • src/lib.rs: pyo3 binding implementation
  • examples/: 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 .

If you want stricter reproducibility, pin that dependency to a branch, tag, or revision.

Release files for genai-pyo3 0.7.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for genai-pyo3 0.7.0.1
File Size Uploaded
genai_pyo3-0.7.0.1.tar.gz 54.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for genai-pyo3 0.7.0.1
File
genai_pyo3-0.7.0.1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
genai_pyo3-0.7.0.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
genai_pyo3-0.7.0.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
genai_pyo3-0.7.0.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
genai_pyo3-0.7.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
genai_pyo3-0.7.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.14 CPython 3.14 macOS 10.12+ universal2 (ARM64, x86-64), macOS 11.0+ ARM64, macOS 10.12+ x86-64 Details
genai_pyo3-0.7.0.1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
genai_pyo3-0.7.0.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
genai_pyo3-0.7.0.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
genai_pyo3-0.7.0.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
genai_pyo3-0.7.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
genai_pyo3-0.7.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64), macOS 11.0+ ARM64 Details
genai_pyo3-0.7.0.1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
genai_pyo3-0.7.0.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
genai_pyo3-0.7.0.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
genai_pyo3-0.7.0.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
genai_pyo3-0.7.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
genai_pyo3-0.7.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64), macOS 11.0+ ARM64 Details
genai_pyo3-0.7.0.1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
genai_pyo3-0.7.0.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
genai_pyo3-0.7.0.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
genai_pyo3-0.7.0.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
genai_pyo3-0.7.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
genai_pyo3-0.7.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64), macOS 11.0+ ARM64 Details
genai_pyo3-0.7.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
genai_pyo3-0.7.0.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
genai_pyo3-0.7.0.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
genai_pyo3-0.7.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
genai_pyo3-0.7.0.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64, macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64) Details
genai_pyo3-0.7.0.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
genai_pyo3-0.7.0.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
genai_pyo3-0.7.0.1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
genai_pyo3-0.7.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
genai_pyo3-0.7.0.1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.9 CPython 3.9 macOS 10.12+ universal2 (ARM64, x86-64), macOS 11.0+ ARM64, macOS 10.12+ x86-64 Details

Total release size:217.8 MB

Release files / genai_pyo3-0.7.0.1.tar.gz

Download URL genai_pyo3-0.7.0.1.tar.gz
Size 54.9 kB
Tags Source
SHA-256 checksum
How to use checksums
25ebcabde0043a5632f8ff9f5070a1770216f7642c0ef52057570c88688125e2
BLAKE2b-256 checksum
How to use checksums
9cf8c9ce7f2b53be4ddc4d1b1a854217417a4ce6ec834541dc9521fb32949f3e
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-win_arm64.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-win_arm64.whl
Size 4.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
9a5379a46d7c66aac8198ba9b0d30755b76fa63c55f76453100d8763fd0af699
BLAKE2b-256 checksum
How to use checksums
bd7624375e0aa459bd6ff7ac7b391928f589f41b0bf564d8e5dbff452a9754b7
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-win_amd64.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-win_amd64.whl
Size 4.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8971b9ddbce839e78b47d509eae6a8598672a92748ff3ae5d65c0a0233d196c7
BLAKE2b-256 checksum
How to use checksums
3a1fb19f24084b3d8f54af6955970bb9ab74a82387e391fff53b983d81afd498
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 5.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7e388ed574ffd3fb47cb102b8c704753e9a4e34713a2b312d4aea122bb111bc7
BLAKE2b-256 checksum
How to use checksums
b60eb89219415991f7a3992f924b90976fc4d6306c9b8bcc2d4220419affc4ed
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 5.1 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
43727501d7f6c00c0b97e5957b51def3a974ee2bee5b356cbd0bd0a1d68431c0
BLAKE2b-256 checksum
How to use checksums
2d8bdc7273ec1b248fece620eb63d106dc06ddf5aa665f8c800c466e536dec6f
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b804fb0f54ee98c9187063fc9f7f8b05bde570bb2bb7af8d3e7d44019c7cc8c8
BLAKE2b-256 checksum
How to use checksums
e571f12c2188d383487847d8c675205b2b387b069c7657ab0f76c5564c25090d
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.9 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3d7c2bf8008cc892bfdefccb8711084ce8dff6b5c5e401a3ee810a057fddc150
BLAKE2b-256 checksum
How to use checksums
e6bd7bb4a719acf5a4307ced73fad545e785ce3200730cdf01df4331e16b9245
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 9.1 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
119e60b043eea341f2e92237b0c6d6943f4bf57f06133ee0c0072e7d59c2ebfb
BLAKE2b-256 checksum
How to use checksums
bac9b6d8d5d4606c9147c8062b2d51d38ae7538ecb8f6c5b2ed80a7e66189e72
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-win_arm64.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-win_arm64.whl
Size 4.1 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
2646b5eb56ef6ff8c66a71a653a99febb202a2ef15d3a972261472e1ff16c957
BLAKE2b-256 checksum
How to use checksums
ec8c2d8d3b2248d720b7d0801dd8082525df23cef3b098d285449cb84eddc961
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-win_amd64.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-win_amd64.whl
Size 4.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c8eb0b57b640049438977e966bd5fbf67cd0e48286a6831997bcf51512acae16
BLAKE2b-256 checksum
How to use checksums
149891585e33d8c1257762f428bb518f26a55c8f43dc7257532c9e93593026dc
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 5.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
efb2de6309a0b9d7faaca90a5474897235f5b15f86c3226a3dd7976b1c8cccac
BLAKE2b-256 checksum
How to use checksums
4741d8ae55bde79d3922a849960487fbe4f4a8591421fa255df2c46e518d3056
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 5.1 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
fccb0307ede33be71f8de37f12c55b4e296d8e0953407cf71be5c85eca7230be
BLAKE2b-256 checksum
How to use checksums
2ae37da0431bafebf317cc314ed65fa62b1df89ac0d6baa15f4184498cc0bd0e
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5bb4ea8d09a653ab022432e020c86683f67253eb569a8c40adbc3ed3f9f589f4
BLAKE2b-256 checksum
How to use checksums
8e57d8cfce94ce62321707fc7da42babb8a8fa143fe007067453ccb0d1a6e319
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.9 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ab11bf1ae73479ae792136ba03a5c6bc85240d9a393081d46d6dcd3a917d5e53
BLAKE2b-256 checksum
How to use checksums
4dbecfeb9a7e99fc5bc3fa02eca943a6d84fe5b7b9b8d2f11d49b69b10fcf99e
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 9.1 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
eeaa2bddde57c72ff0ee90073ffa67ca73e8cd69d32d75ff6e6166398510f012
BLAKE2b-256 checksum
How to use checksums
60a8a8d653bb4e34a8097c22d0d3c76c5ac356c1f8f9fa51caf495a943632e83
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-win_arm64.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-win_arm64.whl
Size 4.1 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
66d0ff0b98a72c2195731cf3f14309c2bbcb4dca99b4ebba610663a594739f4f
BLAKE2b-256 checksum
How to use checksums
9675382816397fcfd785c002cb939318053f5e115a96cc95ba3ba4f372c50c56
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-win_amd64.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-win_amd64.whl
Size 4.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
67f80144a99cba57e8ab780d53d6b089f1650fee99760036ebeb934d4e53e5ee
BLAKE2b-256 checksum
How to use checksums
d1c6888fecb591fb85ccafa69212fe45369165a319dddfa50eb32d4a1bc7ef64
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 5.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
26be103ad3b310885a34fac0a80f4389a5a6aacd74ee322aa8a024a547a5f6fd
BLAKE2b-256 checksum
How to use checksums
5ac502c090f454666a30ac5e9760798555c02d2be017b6b560ded2581fe64607
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 5.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ba504dc50c6490866beae4a81353eaba043b962253fa56033749b74b2f9c1f18
BLAKE2b-256 checksum
How to use checksums
b87700fe0b04d51e6b1094515dc7781ca5ba3405abd332cdbdad3020227a554e
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c11e5eed0438e3f284f652cf0da6d1e92189a5b0bbf32f2d7e7dcd1fcc17dbdc
BLAKE2b-256 checksum
How to use checksums
568d6470bcc603587e9b934241a81242e80c017b700f6cec57a1b120121ca400
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.9 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2b8d3bb52bd87b719865ec62e59bb50d4fef8c4cecf4e9620ff4a5a9dd280e27
BLAKE2b-256 checksum
How to use checksums
9b7d669086058f3e5b1eca417d334fab6bf0168f01d364045355caeb43201fb9
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 9.1 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
639b0639a65689d1737cf3b7ee40d50bbe44474597c91af5f111a8eeccdfb378
BLAKE2b-256 checksum
How to use checksums
f70741a974b33b55c649f75bf252e78dc74b52d9c7e75c941d609ce4ddb0043c
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-win_arm64.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-win_arm64.whl
Size 4.1 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
a02f18653da2a03cb6d0cc2b8c6dafc8b9f0a2effffc34498105080c93daf7c6
BLAKE2b-256 checksum
How to use checksums
af72d2a6c075e2aa518b31471041f5a3e73ba990fd73b3d2349794c5ae5895fc
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-win_amd64.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-win_amd64.whl
Size 4.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
06a97a3ca2bf6204ec646a7dca586e4fbe2bf471bd9d2b06750d0c4aef9d62d7
BLAKE2b-256 checksum
How to use checksums
74988d0d8003b3601984613af1430456e58ff8bfb252e681c10c110b81c5bc35
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 5.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
065f679bc7ab655a5726d0037acf515da2a6459ae18c4ebc87fe2de8948baa07
BLAKE2b-256 checksum
How to use checksums
c8714763822b15e16baa4a3962a2d6989bae52eb8252ce8558aebc28ec49b800
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 5.1 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b6257b69d4cd1891dfe197f68eaf37fe8c2bb23e87c53851e59a6bbc0d0b1817
BLAKE2b-256 checksum
How to use checksums
1a99a446da54cf853c7f15fdb16f4950f0631429a17d1461a2095db18c73cb72
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
619a2b44e327def9bb75f7a0c782e1948e2cfcf8b7f4ff8b03c10fd03548d3b5
BLAKE2b-256 checksum
How to use checksums
e90a2373d6719fc290f13442d1c345c55a3719b34e6a1fcd60dd57d04337d550
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c612e7d996afef026d4d2e394f1a4cd44e03520fd45b813b43d1f35bc6f3ae79
BLAKE2b-256 checksum
How to use checksums
c18344547fb45b2793d92cd87b123bbba9a3f88cd8002481d92f2128c65c6a36
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 9.1 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
353b30544cb09e33f8250e9b503b81a49082296b4dc96a2e87283ac9cd66df07
BLAKE2b-256 checksum
How to use checksums
015c9eae283a07b313c75d8a441da8977e5307bea956f81d1c6b35bb79d51d65
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp310-cp310-win_amd64.whl

Download URL genai_pyo3-0.7.0.1-cp310-cp310-win_amd64.whl
Size 4.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6af9998447b1d60d8ddd083671711201cff59e8febaa5df49358f50d62e374e6
BLAKE2b-256 checksum
How to use checksums
29c9620c5a0ac4051557dedd42a885df017b1c5647c9a91193a202493dca9657
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 5.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f672fb2d91f749c23972446d522113d2f66d690f380b24b445bfb22a9c2dba64
BLAKE2b-256 checksum
How to use checksums
1687f41d6c72b2c9a569ab9007516c48a39716ec559489444fba738d6a902450
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 5.1 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
40c17833d03d0d9bcf6c81faef1cd3eb36fa961085f7ec53d28e1a0ca5d86716
BLAKE2b-256 checksum
How to use checksums
e814d36e5cca75079a43750eaca191dba5ee503cbd7779d5186f3bc791a5569a
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
74c4eee8be75bf8ae5d36d006d29b2efe609649cb9b45568e831ab31048a9fed
BLAKE2b-256 checksum
How to use checksums
db20afc020091b86e1fa55763a5da1d531a4e35adfb387bb5d2c4dde5949bcb6
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.9 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9f9691b49714fc7f972fce728342db0ab172f3d7a5842f0a89205f5e3c425103
BLAKE2b-256 checksum
How to use checksums
785da4fcce9ed6ad9aa17b81a4a7f0ce0f1753acd2e4491bbf7ce45f39cadab7
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 9.1 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
36b40312b506c3ff20cb2bcfdda7de37b000b1b7d1dbab34c846f30b8f9fe06a
BLAKE2b-256 checksum
How to use checksums
d6070434d3f1a79ad42f6ba4ee147326186eee6eb85576db98064f6286a54f03
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp39-cp39-win_amd64.whl

Download URL genai_pyo3-0.7.0.1-cp39-cp39-win_amd64.whl
Size 4.1 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
541d1860b57afe0fb70bcb2bf6f8edf6ce31db80acb8c2fd01aff636dc110ad6
BLAKE2b-256 checksum
How to use checksums
90405edf36f1fcc888fc981131a9493c998a41202e7bcbe3c06bbe2ce9bbb039
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 5.4 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
29b0d8e6692f9005280a52cdbea37871015efc702f0119038e390a60bed139a0
BLAKE2b-256 checksum
How to use checksums
b7406142a46515623d4f72d456cd9bc7517c66751534545c6fe9ab48f837ce11
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 5.1 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f3e4c27ccb64a4b407e8fba829d90d442c357fa6fbe19e71340ae8f4d235621b
BLAKE2b-256 checksum
How to use checksums
8901418c8e688f50679a28bc84e7253e1b1f409c1e502c5e86100dffaf2c53f6
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
21e4131e42ef535cd46aa2b2d56b43a20f02bf813dacfe0ec42f1578251b149d
BLAKE2b-256 checksum
How to use checksums
05799f29bc6ca686ebfa390dda45b1a15722295e44bd3ae75a429809d0b75982
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9c5acf9b665be4d4a79021857d8b6a695a257122cf1ecd7da3021f09fc4b5fe2
BLAKE2b-256 checksum
How to use checksums
96b37b2d8bf303e4aab8d8b8e6070777591a6bb8965e250fda57308b181ca2e7
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 1, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 9.1 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
8dd35f96996c8e4ebb5570d2d73aabff834a8d7026686e15e77d19c4b53bdfd0
BLAKE2b-256 checksum
How to use checksums
57ff950506df4291cb0535640a796a6720da90408c2ce6bd514aae29cb8258bc
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 1, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.7.0.1 This release

41 release files

0.7.0

41 release files

0.6.3

21 release files

0.6.0

21 release files

0.5.4

21 release files

0.5.3

21 release files

0.1.9

21 release files

0.1.8

21 release files

0.1.7

21 release files

0.1.6

21 release files

0.1.5

21 release files

0.1.4

21 release files

0.1.3

21 release files

0.1.2

16 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page