Skip to main content

genai-pyo3

Typed Python bindings for the Rust genai crate, built with pyo3 and maturin.

Release 0.7.0.3 pins the completed signed-thinking round-trip change from rust-genai PR #275:

genai = { git = "https://github.com/ropoctl/rust-genai", rev = "df357375f31fa3990bf8cd1d3edeac5359efd90c" }

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().

For a signed-thinking tool continuation, use the response helper. It preserves the original reasoning/signature block associations, including multiple blocks:

assistant = response.to_assistant_message_for_tool_use()

The explicit ChatMessage(...) fields remain available for providers that use a single flattened reasoning block.

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 .

The committed dependency uses an exact upstream revision for reproducible builds.

Release files for genai-pyo3 0.7.0.3

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.3
File Size Uploaded
genai_pyo3-0.7.0.3.tar.gz 57.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for genai-pyo3 0.7.0.3
File
genai_pyo3-0.7.0.3-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
genai_pyo3-0.7.0.3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
genai_pyo3-0.7.0.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.3-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.3-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.3-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.3-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
genai_pyo3-0.7.0.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
genai_pyo3-0.7.0.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.3-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.3-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.3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64, macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64) Details
genai_pyo3-0.7.0.3-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
genai_pyo3-0.7.0.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
genai_pyo3-0.7.0.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.3-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.3-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.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64, macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64) Details
genai_pyo3-0.7.0.3-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
genai_pyo3-0.7.0.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
genai_pyo3-0.7.0.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.3-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.3-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.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64, macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64) Details
genai_pyo3-0.7.0.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
genai_pyo3-0.7.0.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.3-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.3-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.3-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.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
genai_pyo3-0.7.0.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
genai_pyo3-0.7.0.3-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.3-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.3-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64, macOS 10.12+ x86-64, macOS 10.12+ universal2 (ARM64, x86-64) Details

Total release size:188.9 MB

Release files / genai_pyo3-0.7.0.3.tar.gz

Download URL genai_pyo3-0.7.0.3.tar.gz
Size 57.6 kB
Tags Source
SHA-256 checksum
How to use checksums
d819dff2db36993b40938457d0d0adf13baf1179bfad24b8c484c291ba48ffc1
BLAKE2b-256 checksum
How to use checksums
b9b1239b7e6dd9c2b473db62b1fd52221252a0e240d883295697293dca3c1a82
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

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

Download URL genai_pyo3-0.7.0.3-cp314-cp314-win_arm64.whl
Size 3.5 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
0cdb3a6c75a54109cd4f4f08156161b86b87f3cfabac5f763f38ec88ec8806da
BLAKE2b-256 checksum
How to use checksums
873384fcc2a6b4005ba84af6b8569a00df08139aa1cbf2b3cf3e7243ad7f8dd4
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

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

Download URL genai_pyo3-0.7.0.3-cp314-cp314-win_amd64.whl
Size 3.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ad86b1792e47f8cde82fd90abaee2264dc66b8e382278cee4c4fe698d12316fa
BLAKE2b-256 checksum
How to use checksums
943c85cc45e5cf2c74dd151d3e9dbf6055fdc2f39477bd8377ac6ac18be273c9
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

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

Download URL genai_pyo3-0.7.0.3-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
3d4e3bb56bd630c09d3260a02e57be08cb2b639b03810fa1aba0b2aa594b89bb
BLAKE2b-256 checksum
How to use checksums
b7fd9fce2b1b46117dfddb601d3f0b8793fad7a39fadc42293e60c85ab1dc528
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

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

Download URL genai_pyo3-0.7.0.3-cp314-cp314-musllinux_1_2_aarch64.whl
Size 4.4 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5e3b43cd4db16b1d5e463ef813ffe86a9bb2fe8c04fbdde951ea467ccceee3f1
BLAKE2b-256 checksum
How to use checksums
a602905279fa667a97683f97e6f4f2cdac256258f7ab7f3724768f41fa0f2611
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

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

Download URL genai_pyo3-0.7.0.3-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
80db8db4e752637a0d5777c7805e6d82c476b003f5bb2fccf0539579021dcd5e
BLAKE2b-256 checksum
How to use checksums
e7b186b534c1f8e20e42c39fddae20e4be9c30a29771c3a7d0781d660c6f0bc3
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

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

Download URL genai_pyo3-0.7.0.3-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
bce545ec7b452145259a5d438fd33ff2b9688f0ebb070134c564cbbafcacbb96
BLAKE2b-256 checksum
How to use checksums
da061deb5f1b72d6d9ada22db2488aa0c693073c537abf65a72bd23ab92f7f41
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

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

Download URL genai_pyo3-0.7.0.3-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
1e030e933648b98b6c0aebb5cbb4c03253eeb7e05180438bc42117a22c24ad63
BLAKE2b-256 checksum
How to use checksums
e770033f33aaa1e0a38d6bf882b1d71c2802a32e8ccc4608050d6d24ca5c7b09
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

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

Download URL genai_pyo3-0.7.0.3-cp313-cp313-win_arm64.whl
Size 3.5 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
6141db241e8f73e256683ece6f92d0e548176fe16876ad27fe6996c1f622d1d0
BLAKE2b-256 checksum
How to use checksums
bc458b9afcb16e92d3622e771a854ced7edaa0790bf86cc5a299d74ced9f3994
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

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

Download URL genai_pyo3-0.7.0.3-cp313-cp313-win_amd64.whl
Size 3.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
0a8325b68634ca352eb27a391df2aa4983e446acf96b53adc465931e1abaf187
BLAKE2b-256 checksum
How to use checksums
993bf814aaf43b2a4cb7f9b9d718f7bbc4c697b8e67662fdeaddb7f90d9e21de
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

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

Download URL genai_pyo3-0.7.0.3-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
0027206eed7043352d70a4861416ea4da1bd9260211f4136da0019a66d87650e
BLAKE2b-256 checksum
How to use checksums
2c910a4f046ea2927b0d2c2011b8de53bf5ec63f2eb6d92a65a6675a878e794f
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

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

Download URL genai_pyo3-0.7.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Size 4.4 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4be97e681d1fd3902819b828ad67d7c907994c79a366ba92bf50a95e26d76a49
BLAKE2b-256 checksum
How to use checksums
70dbf81fc538446f88ae86dc699e217a54a48ee71dc9154cfea7289fb422b98c
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

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

Download URL genai_pyo3-0.7.0.3-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
6ef5ee8f9ac414d90b3e383a6916987a47bbafad4cb66bdd0305a138143e2365
BLAKE2b-256 checksum
How to use checksums
2efa99ffbbf286787b93efdb74da30bf50a4de3e5aa0289812f8b3833ee9b2c2
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

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

Download URL genai_pyo3-0.7.0.3-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
68b5e915c87cff5e65a87efdb95f36326a5c505b29606a82fc402f0023108624
BLAKE2b-256 checksum
How to use checksums
f124fbb8b42d79b8d4ec5612205befaf558eaba4e789aa1204dd5fbb72b3a0fa
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

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

Download URL genai_pyo3-0.7.0.3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.0 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
e4a51de21d2d477d700c92c5f9cef7702023afb2de570359d696ed9f542c4d8d
BLAKE2b-256 checksum
How to use checksums
e8ae688bd5c7c5c163436249b240219643b10e1bfc87489b646f182d7356e8b5
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

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

Download URL genai_pyo3-0.7.0.3-cp312-cp312-win_arm64.whl
Size 3.5 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
3dd42889a299450ddb57e0699704ee38428f270076c7a3f688f4272ce7883cc8
BLAKE2b-256 checksum
How to use checksums
12c5ece5dc035a39515f73b0c05e4498eb736a40ba93ebaeff9433a9b6c6dd85
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

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

Download URL genai_pyo3-0.7.0.3-cp312-cp312-win_amd64.whl
Size 3.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
20303cb06e20eab2a0573a2b9df9a77f87c408e38e1a21c8e051f5a459e7b662
BLAKE2b-256 checksum
How to use checksums
c0023ff6454cb4841c5e176d690759525442caf0d62c810690995b886864abfb
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

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

Download URL genai_pyo3-0.7.0.3-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
a01ff6dd4b3e6627cfa5384c4068e24670f9ada8aa88ca4d3c424773b3476d63
BLAKE2b-256 checksum
How to use checksums
9eb22a81c2a92160c11c60c8218a13810d19351c651f175147201ad5b29a8f4f
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

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

Download URL genai_pyo3-0.7.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Size 4.4 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
797d0139f7d70d0147621aab63551deb84c31c45f1b5cd568246b13e73a66bba
BLAKE2b-256 checksum
How to use checksums
45bf3bbb4ca0ea67676110e626c9e1fd75ea2b40c46009e297e85708da29b961
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

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

Download URL genai_pyo3-0.7.0.3-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
41c906b8377f5cd44417bdd55fa1476f5b33048a039463487d32f6bc4672c88a
BLAKE2b-256 checksum
How to use checksums
2a8f25933a16bf6f2e07b3187eacb16d70af4b1d553bcd1f4fdb4044eb234c2e
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

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

Download URL genai_pyo3-0.7.0.3-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
f78840f264f447ec33c83e317a8f3f3762bbbe41cd9b30124294dcafe2d92882
BLAKE2b-256 checksum
How to use checksums
50c3c5f33cf8da25b6778f60859f99f026b41d42fcead826ef43efc56a830e88
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

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

Download URL genai_pyo3-0.7.0.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.0 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
0c516c911f5f457b6b1a9f815d9385059a417f6a1ae6759982c8072dd0ee5268
BLAKE2b-256 checksum
How to use checksums
579a92c3de75ad29b1a5c97e836fd6734b0a5c734d563669534093d3871496fc
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

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

Download URL genai_pyo3-0.7.0.3-cp311-cp311-win_arm64.whl
Size 3.5 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
a18686a7483793ef8a0eb88221b3d837b50ec0a958b399c1131d819a8e237b4d
BLAKE2b-256 checksum
How to use checksums
6d6b7fbafb70a08b4a2b9336c1541b38e7b70f10019a55fb6d015647379d05bd
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

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

Download URL genai_pyo3-0.7.0.3-cp311-cp311-win_amd64.whl
Size 3.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
b380888ddb5782161087e04b2f17833e5b2f654c39cbd77a3d6116e1d86291ba
BLAKE2b-256 checksum
How to use checksums
916ea11e0991bf649c2ad1e565c63d0cfb00e55b7ff59da6a27f189bd2f2d628
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

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

Download URL genai_pyo3-0.7.0.3-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
daad1192eb852ddbc4e9ae030aec0bd0ad895fe3fbbb31d03c1d59686ef83018
BLAKE2b-256 checksum
How to use checksums
c5c1666d48525d17707111ecc1089aa8f153a22e61c0cd31d34d2d325f84d1a4
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

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

Download URL genai_pyo3-0.7.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Size 4.4 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
810401336ef5da5e1d907b7b4d1135f9a10f49b1ef7c39bdcc696581c5ebfb97
BLAKE2b-256 checksum
How to use checksums
8a2b1baec208e7d077f6e909e8f8c7f0bf4cc7dabf98c0f97d09325e27f4c7d5
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

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

Download URL genai_pyo3-0.7.0.3-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
83a66d7b4b92178e23e8e4059e72e07f2e3ddf1007a039c27bd29165b54f360f
BLAKE2b-256 checksum
How to use checksums
c3c6d8e15ce630c59a874049c9c0dd41417c716da15704b1a6a6ea05ecf2fcd0
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

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

Download URL genai_pyo3-0.7.0.3-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
806f39c4fd67371392681315c009c258f065d8a180e9664867ea787e2cfb16a5
BLAKE2b-256 checksum
How to use checksums
641582fbab012371a3f5d7475f30a5cb06e8fb6928942cfa4973fadc7ba60c6c
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

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

Download URL genai_pyo3-0.7.0.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.0 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
9dd73d90617934d451dd61dc11b5d50f1ad028bd1ed4d0e31710c6be39059a59
BLAKE2b-256 checksum
How to use checksums
69155b1abafc16455663be21e1c82388d2ed4335d6fa5cac03d24e77843fd1ec
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

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

Download URL genai_pyo3-0.7.0.3-cp310-cp310-win_amd64.whl
Size 3.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
295dba4fdc2c64143fb9d203ace2452b32d5eb0c29e1c61ba4e26b520fe748bf
BLAKE2b-256 checksum
How to use checksums
83e039ff58df969277417a918cb162d043a4d9420764f10fdc58694dcbaac45e
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

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

Download URL genai_pyo3-0.7.0.3-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
6c9663f4be4a531f481cc3b18442d82f6abcf5006b4e178eb153222a38bfa7d7
BLAKE2b-256 checksum
How to use checksums
3bc2e3b90fb183587b1c59179aff1eacc4bfe7dd914d2ce44f873d615011bf20
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

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

Download URL genai_pyo3-0.7.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 4.4 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
fabb0299c9b28643130aef46c440a5d63bee62844d8d543b8ae2e59eac1b1dc6
BLAKE2b-256 checksum
How to use checksums
b09d279feefa21a7f5cfd95b9bd36911c3ae4d03fdf024207341a4047fce6d91
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

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

Download URL genai_pyo3-0.7.0.3-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
a81968a6b898e222682d38e39926fbbf09a4b51aa06a64ff465e077b8ac7d242
BLAKE2b-256 checksum
How to use checksums
9a78663636dc37859474980c009f55c3ced303ebe087354048f904ab3ebf5652
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

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

Download URL genai_pyo3-0.7.0.3-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
34617481d585ed368d55dbd84394431920bb7f4662d18d757e8d72ec7a208280
BLAKE2b-256 checksum
How to use checksums
f1f565c91697602f9fe630daa82030fd71b173622acdcc5e84b6d04a15e39042
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

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

Download URL genai_pyo3-0.7.0.3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.0 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
21d54afe765aac1459e0c324b591d125cba27043cb0b661b9112e043eefde56c
BLAKE2b-256 checksum
How to use checksums
6afd6d81f3a89a344b7537c861339ae7cfc1789c3a0e4963c63d71ebe63435f6
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

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

Download URL genai_pyo3-0.7.0.3-cp39-cp39-win_amd64.whl
Size 3.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
58269014a2dcb12618e11ae9e15879a21ca494f92296906999250d0a82f4253c
BLAKE2b-256 checksum
How to use checksums
10d228b54be734ac95bc94b5611949b88d2742bd6d318280f9022721ac402523
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

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

Download URL genai_pyo3-0.7.0.3-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
333c7d357fd0913caa79372677d1886a4149108b4d4cacb6dc1f028312b5684e
BLAKE2b-256 checksum
How to use checksums
0d43e4da1e2bc4c6b8585a6f2f41af642ec6009a3a6a0fcb453e564493d68760
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

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

Download URL genai_pyo3-0.7.0.3-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
bd4195538ac88f88b5106f66aa5e9fdb1c2aac78ad660c51ba5b7045a8594cb8
BLAKE2b-256 checksum
How to use checksums
1e111e3233a9d6d96389047f20bd0ee7d409d080ba2c2713bdaef74378a4b84c
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

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

Download URL genai_pyo3-0.7.0.3-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
d8265b9142c3edc2323302caefa92512ef34193f842eec6cf30059114d817463
BLAKE2b-256 checksum
How to use checksums
cd6ae35a9ec89916734612fff5d087ee509e3389a0222bcfc84bdf5595270427
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

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

Download URL genai_pyo3-0.7.0.3-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
9cc2bc55797d6a2a21a852acdcd8cf8b0fdfbe2d0520633edb1debf21699d98e
BLAKE2b-256 checksum
How to use checksums
d747df001999cdd21d4b569e63dfa90e2dcd993678001e3ef9c377fc4f6b6514
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

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

Download URL genai_pyo3-0.7.0.3-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
7ba56cdae45c8005d034e675e3e7855d13a29a196d0a6e8d481d3b2f6015d2bc
BLAKE2b-256 checksum
How to use checksums
db5f045ed564e7a4455767f7347aed9eea5fd3b0bf1bb869d93b448114d583d6
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

Release history Release notifications | RSS feed

This release

0.7.0.3 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