Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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

RoutingAdapterKind, ModelIden, Endpoint, AuthData, ServiceTarget

ClientClient, ClientBuilder

RequestsChatRequest, ChatMessage, ChatOptions, Tool, ToolCall, JsonSpec, Binary

ResponsesChatResponse, StreamEnd, ChatStreamEvent, Usage (with prompt/completion/cache-creation detail)

EmbeddingsEmbedOptions, EmbedResponse, Embedding

ErrorsGenaiError and its subclasses (see below)

Entry points:

await client.achat(model, request, options=None) a full response
await client.astream_chat(model, request, options=None) an async iterator of events
await client.achat_via_stream(model, request, options=None) stream under the hood, one response out
client.chat(model, request, options=None) blocking
await client.aembed(model, text, options=None) one embedding
await client.aembed_batch(model, texts, options=None) many
client.resolve_service_target(model) where a call would go, without making it
await client.aall_model_names(adapter_kind) what a provider is serving

model is str | ModelIden | ServiceTarget everywhere.

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

import asyncio
from genai_pyo3 import AuthData, ChatMessage, ChatRequest, Client


async def main() -> None:
    client = (
        Client.builder()
        .adapter_kind("openai")
        .provider("openai", auth=AuthData.from_env("OPENAI_API_KEY"))
        .build()
    )
    request = ChatRequest(messages=[ChatMessage("user", "Say hello in one short sentence")])

    response = await client.achat("gpt-4o-mini", request)
    print(response.text)


asyncio.run(main())

Named endpoints

A ServiceTarget states where to go, how to authenticate, and which model to ask for. A registry of them is just a dict, and one client serves all of it:

from genai_pyo3 import AuthData, Client, ModelIden, ServiceTarget

client = Client()
registry = {
    "flash": ServiceTarget(
        "https://openrouter.ai/api/v1/",
        AuthData.from_env("OPENROUTER_API_KEY"),
        ModelIden("openai", "deepseek-ai/DeepSeek-V4-Flash-0731"),
    ),
    "local": ServiceTarget(
        "http://localhost:8000/v1/",
        AuthData.none(),
        ModelIden("openai", "Qwen/Qwen3.8-27B"),
    ),
}

response = await client.achat(registry["flash"], request)

AuthData never reveals a key to Python and redacts it in repr(), so logging a ServiceTarget does not log a credential.

Errors

GenaiError(RuntimeError)
├── ConfigError        malformed request/options, adapter mismatch
├── AuthError          missing or unresolvable credentials
├── ResolverError      a resolver (including a Python callback) failed
├── ApiError           the provider answered with a failure status
│   ├── BadRequestError    4xx other than 429
│   ├── RateLimitError     429
│   └── ServerError        5xx
├── TransportError     connect/timeout/socket failures, dropped streams
├── StreamError        malformed or error events mid-stream
├── ResponseError      a well-formed reply that could not be interpreted
└── UnsupportedError   feature unavailable on this adapter/model

Every instance carries:

kind the precise failure in rust-genai's own vocabulary — the error variant in snake_case ("http_error", "no_auth_data"), or the provider's own error type for a mid-stream failure ("overloaded_error")
status HTTP status, when the provider answered with one
retryable conservative hint; the retry and backoff policy is yours
body response body, when there was one
headers response headers, when the failure carried an HTTP response
retry_after seconds, parsed from headers when present
model_iden the model the failure is about, when the error names one

The exception class is the actionable category; kind is the exact cause. Branch on the class, log the kind.

try:
    response = await client.achat(target, request)
except RateLimitError as err:
    await asyncio.sleep(err.retry_after or 5.0)

Truncation

stop_reason is normalised across providers — "completed", "max_tokens", "tool_call", "content_filter", "stop_sequence", "other" — with the provider's own wording kept in stop_reason_raw. Without it, a truncated answer is indistinguishable from a short one.

Images and PDFs

from genai_pyo3 import Binary, ChatMessage

ChatMessage("user", content_parts=["what is in this?", Binary.from_path("chart.png")])

Transport

(Client.builder()
    .proxy("http://proxy.corp:3128", scheme="https")   # "all" | "http" | "https"
    .timeouts(connect_seconds=10.0, read_seconds=120.0)
    .gzip(False)
    .tcp_nodelay(False)
    .build())

Without an explicit proxy, requests ignore whatever proxy environment the process was started with — which on a locked-down network looks like an unexplained connect timeout.

sanitize_json_schema(schema, dialect) applies a provider's constrained-decoding normalization without making a request, for seeing what will actually be enforced before a rejection tells you.

Resolver callbacks

For credentials or routing that cannot be stated up front:

(Client.builder()
    .auth_resolver(lambda iden: AuthData.key(cache[iden.adapter_kind.name]))
    .model_mapper(lambda iden: ALIASES.get(iden.model_name, iden.model_name))
    .service_target_resolver(lambda target: reroute(target))
    .build())

Callbacks must be regular defs. They are called synchronously while holding the GIL, so an async def would never be awaited — it is rejected at registration — and blocking inside one stalls every other Python thread. Cache in Python rather than doing I/O in a callback.

Development

maturin develop          # build the extension into the active venv
python -m pytest         # Python tests (no network; a local fake provider)

# Rust tests link against libpython, so they need the extension-module
# feature off and the interpreter feature on:
cargo test --no-default-features --features test-interpreter

cargo build does not link the cdylib on macOS (it lacks maturin's link arguments); use cargo check or maturin develop.

Migrating

See MIGRATION.md for the move from the Client.with_* constructors to ClientBuilder.

Release files for genai-pyo3 0.7.0.4b1

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.4b1
File Size Uploaded
genai_pyo3-0.7.0.4b1.tar.gz 102.1 kB Details

Built distributions (wheels)

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

Release files / genai_pyo3-0.7.0.4b1.tar.gz

Download URL genai_pyo3-0.7.0.4b1.tar.gz
Size 102.1 kB
Tags Source
SHA-256 checksum
How to use checksums
0a2cf19268e5bcb52c165c35ec0830cf10c7ac9d4842d73bce1485f2a22d2520
BLAKE2b-256 checksum
How to use checksums
a6371d63a1caa7f9226ce7d63d02144c07e5693ad637d50d94df0f6d2657d6bb
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-win_arm64.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-win_arm64.whl
Size 3.9 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
8b3e02b13c0eb0dc4b5dc1a8fba6969772b79d27aa85f3437469084c2a2e4655
BLAKE2b-256 checksum
How to use checksums
074885b0428c753064f8f471ca076462406893d2c5e7be48df6140e06cc062d2
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-win_amd64.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-win_amd64.whl
Size 3.9 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
39835085762cf84e2cba7ebcec54780bdba136c385e5e60e7b8258bbcfffd365
BLAKE2b-256 checksum
How to use checksums
d225ee0456c1e93a735930eaa52cfa0c3dc421a31119ef1e5256c9b1059c6ea4
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 5.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
915c22fd5ff6aa3b802e1c9e9040a4891df5c833423e032ef569b3ae7128cd01
BLAKE2b-256 checksum
How to use checksums
63d933442890c3705ccbde51fd67bf09e2c8a80f7d5cd90149e217d878375ce7
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 4.9 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b740f6cc03d2b38a44cbef5b787fa11b5e0c1b315ab82d31c9713cfbeb5af54b
BLAKE2b-256 checksum
How to use checksums
b9afddf89244cf962e886bd559e0ff2302089202881cb934b45b893e8f0dc1a4
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.7 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b29fabce2266995cfef0ccb168f7795361d6aba5b6a9aba0fc7002601cfc5737
BLAKE2b-256 checksum
How to use checksums
8a85f4f44ef88ab0a3f465576fb52c1c73d8d91662b61b103f9a450ace3277e9
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.8 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a8544e6d4164bc5f6cccc38cbab1b70307117e6a5f2c8b8ae94fab279c7077e3
BLAKE2b-256 checksum
How to use checksums
fb43bc5e8e2a5468f075901f852092befbdd387180b06d22f5b639610dcd0bce
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.4b1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.7 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
9d6637b89e577eda4f6e352caa55308a7d2bb15ccca78889d4abc78a61aed60f
BLAKE2b-256 checksum
How to use checksums
7574d5f683d44d6106ef3a88ea7e6d7c70a77917c37e0b7fd5240e6ccd91dd1c
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-win_arm64.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-win_arm64.whl
Size 3.9 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
c8c31d698e3c3351e1a6422037e62e02c93bb72233bb8d6cbb349cc56606526e
BLAKE2b-256 checksum
How to use checksums
1965b89ef151e7214882137e766baefc8812b707b1e6b60c803059b6411a8d8f
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-win_amd64.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-win_amd64.whl
Size 3.9 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
962b2ab3e392b56e47e16c5c981af3e51fc4b1241b0ba673a24a3409bfa78b9d
BLAKE2b-256 checksum
How to use checksums
671e0a1a813fe3905a9f09ca9167af7eb19fa3445a5d03a0629a819814f0d14f
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 5.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4451c4480ed966aed226a54507f4b6dbd469c960f7b7c3810abb5b0b1e38f58e
BLAKE2b-256 checksum
How to use checksums
bf32e394576cdaee7bfc1a3ad170260c107aba48405e41111f5a3c22d70076a6
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 4.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
14b780e65fcf26a0004fe56257bdf4f51d5502e0d92363cae753b67952dc40f1
BLAKE2b-256 checksum
How to use checksums
11b318a4d1ed97965fbbdf99c7e6bcbb37a99c7e2a1c06d625a0f87107784dc4
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.7 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7b41509f204e7fe7036a98d30a92949321f5c1159d5a86c48213a73ff9482c19
BLAKE2b-256 checksum
How to use checksums
f3fc1216c394307252aeef8ebd7900873a9d2cee828dc90d3d0573ebecbe6f10
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.8 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
248b9cf884bc791431db379b7445a8049a931176332ecbbd4306195e307d9c89
BLAKE2b-256 checksum
How to use checksums
d5f8f68bbeb3874477d88f1d7527dd8f11c5ecc495f134f12e60c4f97124c7b7
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.4b1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.7 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
8bea644684789de5100a6c2e1ca0ded13bd556e67566c00a83163f30f32d5642
BLAKE2b-256 checksum
How to use checksums
9784ead65c8b7ff1e8fcaccfa7cf69ab0c7cd5e0c8b920408a2d71a77c3913e5
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-win_arm64.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-win_arm64.whl
Size 3.9 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
d1e79fda267700569ca9d6353b23d582c084666fa3e98fbcd91e9509e5baca79
BLAKE2b-256 checksum
How to use checksums
e21c839a94167a3ed5264bc5ee22e1cbf0fdfa8bdbfc0d53e5b0dfc6fbf49718
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-win_amd64.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-win_amd64.whl
Size 3.9 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4c1320560751cd9eeb9773d37fb9c5fd56961f8efb113f469cfd455e2a88993b
BLAKE2b-256 checksum
How to use checksums
790d56cfcf102e465de1535332ae00ccd3f5cd1124ebbc60ef055dd4f05a094e
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 5.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5b4e2b1de23622db9bf50971eac102991c6ee66a589cb4d8a950baea5997257a
BLAKE2b-256 checksum
How to use checksums
59536f035b7a623502581ba17abaf8cba14d46fba7e37e2123afcde42f0db2e2
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 4.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c8216b8019f406d345945836e918e97676c3a50207ccccb830653166e9ec5eeb
BLAKE2b-256 checksum
How to use checksums
19c409e6500d898207630a06f054fc2906ea1affdbf91c25d320c0aa2c6ea353
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.7 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5a2ce6cf59803f687752664cf1fff9a5279acbae8142e46198b3a10d567fca67
BLAKE2b-256 checksum
How to use checksums
1ae365bee90a2e9ad586c6b95a2ce4f8bebf0f04f06e7b1ee3ea368ab7b4a2b6
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.8 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
509b9caf1c945af82c75fa81b05ce99793bfbace4eb21de14913a9703e1fc6fe
BLAKE2b-256 checksum
How to use checksums
4653e38a71c0e0b047f39862eac7fc1e2f73749d907e92f4e9913feabfc85e3c
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.4b1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.7 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
e21f111788dbe98d452d51b8b43935d943cceaddaff35275aaf4b8f34ed598cc
BLAKE2b-256 checksum
How to use checksums
8418f18df3ca8d6a439c060e21b8335cb8b846a060899d412c953c8d15197d91
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-win_arm64.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-win_arm64.whl
Size 3.9 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
391b7901cd45a413479d082db32ad547e68de788fc65dcfe3fa0d40fc927e2df
BLAKE2b-256 checksum
How to use checksums
c60d87b45e47858ceccd4db83a6daa79a0327fcf34ee7383417089df23475b92
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-win_amd64.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-win_amd64.whl
Size 4.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
735bcb4b5bc94f7fb8bdc6f2558f9d0ec0827c2a3623657332396ebfd3ff63b7
BLAKE2b-256 checksum
How to use checksums
6e3e991df24fbebfbf400bfe0fdd24a3167b0305c27626c301a1b53e416a5889
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 5.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
65e63d40ba034c87fb6f35fba98ed04289122ba68322e8955b2b7e7b4dd4b247
BLAKE2b-256 checksum
How to use checksums
5c5aa9583f420ab96b2531a11914dc198d8991cf9e5f306ae7aff252d5747513
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 4.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8c3549194d6ee444cfbb75b6cf2725254a117c8c6970cf45c1ac4bfa793fcdbe
BLAKE2b-256 checksum
How to use checksums
e1f02a6db5ac2ad7d8f1c66ec20b53a90d45c22f034b779e6a6450536c128b8c
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5873560932956e8fbbb331c52835c896f37ba8c309ab246bbcf007a3e2e5d393
BLAKE2b-256 checksum
How to use checksums
7ee624fb703eab7c441fa86527edb144c9d65aec81842a715fdfbd5e1338314c
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.8 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bfffd8d46d7bd1c5316da47f9d92a58e0b02406cb25236d205deec8c4f520660
BLAKE2b-256 checksum
How to use checksums
b8b4c1342b3d1f7f73a64f70f4d52f02a865c53ff6caca73f28cb8bc2b09f258
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.4b1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.7 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
cb1210ba079c2979c53808524e94b3cb60d878d72d6dec09e2e632227e0a7dd6
BLAKE2b-256 checksum
How to use checksums
605133e8351c41abbec354e7ae4616bb8ad5bf9160472e01259dbe33ca6a6256
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp310-cp310-win_amd64.whl

Download URL genai_pyo3-0.7.0.4b1-cp310-cp310-win_amd64.whl
Size 4.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c27b2a1fc3ec1b4f14a8a3643b5de79a5e0b83e82d5bc531cff01b21ba017d77
BLAKE2b-256 checksum
How to use checksums
e89c7282dfbd421968b95845b7af95ac3476b85f0f26c5e3033b0e4049fb6b8d
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 5.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c067ca72613ca02cf1e927ac5daf38f22f5b46f31b75f2ba32d1c230eb132dba
BLAKE2b-256 checksum
How to use checksums
6815611a3a925f25e2027177b10a90e020fcc17e3f5c063f3be6d0c36bc08eff
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 4.9 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6b4583391f59e50f69488fdfd41eeafd9e6924324feb75a95d3ea7b6c2999074
BLAKE2b-256 checksum
How to use checksums
5891b0903b03a09579c76ad7d224714bdb039e40633c23ab2d0eb296dc67b5bf
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
102a5e6a2e62bd74b8bde469f47d70995a285e54100dc8e4ec448880408ed669
BLAKE2b-256 checksum
How to use checksums
0be0aad6cadd7a3757a367de24e11c6be6939e7355cae2f65e6bae04192b4aa8
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.8 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cde00f109c64ce377477148144088d36d2b9cb38cbfadb3791938a2440497d93
BLAKE2b-256 checksum
How to use checksums
23869a32b70776446cffe398b0256cae0200fa95c1a6abf26eb5ab14765333f5
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.4b1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.7 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
0ab4c33f2b91bcbd78ac62a3cb761c8365153c6e03cbe705169a14df2fc532d6
BLAKE2b-256 checksum
How to use checksums
5627a7f7f528f39796223fda0c3436ec3a7ff54bb3ece19cd4f68671d6305dbf
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp39-cp39-win_amd64.whl

Download URL genai_pyo3-0.7.0.4b1-cp39-cp39-win_amd64.whl
Size 4.0 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c6ba20a03d5e17921af86a6ca763b43721fc8429a6b3c5e99d554f8331a84ebe
BLAKE2b-256 checksum
How to use checksums
5ef08453429d16304527492128205446194b410cedecccc92d21ba4aae5014f1
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 5.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d6ddef6026eade96b998949e46c18ae212e31c8704fc67521d501a45ae3827ff
BLAKE2b-256 checksum
How to use checksums
6c6a576982828d66dea47cd7fa044f1f1d807026997119ff1439db95f7debc7d
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 4.9 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b4ec4dadaf07151524a3ad2478b902217598da9c5ea689ecd048a7c9c6ac0598
BLAKE2b-256 checksum
How to use checksums
cef61639eb050e5ed8317d55cba0a8b11e18e713a8412044dbe41e2a5db66b86
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL genai_pyo3-0.7.0.4b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a72bfd804537d4fe6bb2ae6a81d4678117128c062c94d5faeb86690b850e83c3
BLAKE2b-256 checksum
How to use checksums
e9afa734f6f8d03ac88fc05043037b2d4444765af83ed48f9bae04354c51e6cd
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL genai_pyo3-0.7.0.4b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.8 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
13877cea0d5fa3dba0c94233085347bfc8a903992049b339f64c2a16b9ace94c
BLAKE2b-256 checksum
How to use checksums
acaabced66ecfda59a0520b7c1490e6eaa87fa481e9307997c58e0a7a10ffbaf
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 18, 2026.

Transparency log

Release files / genai_pyo3-0.7.0.4b1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL genai_pyo3-0.7.0.4b1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 8.8 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
de2b73936eb508b6814478d817e2933305952462a032fca7f35a4913e383904c
BLAKE2b-256 checksum
How to use checksums
94314677bf876533024946b13b0a6480475a0e7e0004fc29c6da847754afd704
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 18, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.7.0.4b1 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