Skip to main content

Python bindings for rust-genai

Project description

genai-pyo3

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

This repo uses the upstream GitHub repository for genai directly:

genai = { git = "https://github.com/jeremychone/rust-genai" }

What It Exposes

The Python extension currently exposes:

  • Client
  • 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.astream_chat(model, request, options=None) for chunked streaming

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

Minimal async streaming call:

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


async def main() -> None:
    client = Client()
    request = ChatRequest(
        messages=[ChatMessage("user", "Write three short bullet points about Rust")]
    )
    options = ChatOptions(capture_content=True, capture_usage=True)

    stream = await client.astream_chat("gpt-4o-mini", request, options)
    async for event in stream:
        print(event.kind, event.content)


asyncio.run(main())

Examples

  • examples/async_chat_basic.py: basic achat example
  • examples/async_stream_chat.py: basic astream_chat example
  • examples/client_overrides.py: explicit provider/API-key override example
  • examples/gemini_env.py: Gemini achat example using env vars
  • examples/gemini_stream_env.py: Gemini streaming example using env vars

Run The Gemini Examples

The Gemini examples use:

  • GEMINI_API_KEY
  • GEMINI_MODEL (optional, defaults to gemini-2.0-flash)
  • GEMINI_BASE_URL (optional, for custom or local Gemini-compatible endpoints)

Non-streaming:

GEMINI_API_KEY=your-key python examples/gemini_env.py

Streaming:

GEMINI_API_KEY=your-key python examples/gemini_stream_env.py

With a custom endpoint:

GEMINI_API_KEY=your-key \
GEMINI_BASE_URL=http://your-host/v1beta \
python examples/gemini_env.py
GEMINI_API_KEY=your-key \
GEMINI_BASE_URL=http://your-host/v1beta \
python examples/gemini_stream_env.py

If GEMINI_BASE_URL is unset, the examples use the default Gemini endpoint resolved by the underlying genai client.

Layout

  • Cargo.toml: Rust extension crate
  • pyproject.toml: Python package metadata and maturin config
  • python/genai_pyo3: Python package entrypoint
  • src/lib.rs: pyo3 binding implementation
  • examples/: small Python usage examples

Local Development

Create a virtualenv and install in editable mode:

cd genai-pyo3
python -m venv .venv
source .venv/bin/activate
uv pip install -e .

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

genai_pyo3-0.7.0b15.dev0.tar.gz (49.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows ARM64

genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.14Windows x86-64

genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b15.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows ARM64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.13Windows x86-64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b15.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows ARM64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.12Windows x86-64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b15.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows ARM64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11Windows x86-64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b15.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

genai_pyo3-0.7.0b15.dev0-cp310-cp310-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86-64

genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b15.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

genai_pyo3-0.7.0b15.dev0-cp39-cp39-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b15.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file genai_pyo3-0.7.0b15.dev0.tar.gz.

File metadata

  • Download URL: genai_pyo3-0.7.0b15.dev0.tar.gz
  • Upload date:
  • Size: 49.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0.tar.gz
Algorithm Hash digest
SHA256 bb5c0e18a45db5b7bb7ece69ab0970b71cd584535803523146fbd76c7d8b1a2d
MD5 c86ca0dad19cf97d9efbffc57b8f993a
BLAKE2b-256 6d1000da0b5ef80dfa7f92010fe962ba39e22e3d980fb01a40a331583dd60788

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0.tar.gz:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 38b96675483108137e44853c6d80415dfc296e08578b8e5c66ebf0448a41c271
MD5 d2e392e565b497b55839ae05a31440fc
BLAKE2b-256 0692066d86220f265d0e851ac7b0e4cf42001b6a68ee50d71a11819dd5cf471a

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a5ee7b07efdc5bf0722f21bf263b0b3cd23508ce4c9ea7b8c63b48368ffd41c3
MD5 52966ca2def9ffb408679a13cf5566ca
BLAKE2b-256 99d990e70392dff13fb5e0e5066e00cd266700a216d5bc0e009ca84540bae8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d8c032c61f19222e18837acffa83fbdb94d5a1215d4f2e397661c964460128c
MD5 2833e29d20f804f92f2947b2e547ead6
BLAKE2b-256 a3344d69c662ee8c3ad0b830b4d073ba589235d475b08c8cd379cc271f1aa9f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 214f8f9228c3d405f7ffd15d57d27df5cc15d3f8629d1b42bfb875b9971528e2
MD5 6c0fe8d2963d47be0f080628e54664d2
BLAKE2b-256 cbdb0431034c2ef84ead4d0fccb8970c1173aa1f5735441242f25ef8283dd55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a56ee036ac045aa646d80d67699f41b381f7946e44d73f1cf4d4086c5a73270f
MD5 00bd6618e5dcf58af9149168f7b27075
BLAKE2b-256 fd2be14706aa347e86603b3c7d3a036c3eb0cd32b21a55e234e770d6c7f81428

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 567fc5969571b4f634c94ef4f9d6d749c34417bc7f65977a31319f587e4aab4b
MD5 8a872894851ee2cd5973c8a5da913b53
BLAKE2b-256 c1ed7e0cb245f18b7d457198788ea3f48dffa62b3efd6c33041dad3c965deb4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 58b12ddd271bfe4ade9c53d9fab43f03ccfa500816e6d26546249279d884d922
MD5 d2c73b9aa2a70d696feceec2d038e06b
BLAKE2b-256 d7053cc6fd68c6f17bd197146e492146bbe551752f536c6c4aa49413be435331

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b543f050b33ce97baf5d90c7745df6a9f8dfa6e63194286c7bb629ec59a48e6b
MD5 a902afd44c8a8a027f878460f7f6aa99
BLAKE2b-256 dafbab9cb146e08471e6e4012690df419faba4367db45ca3a5a9174b1d24e789

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c305ced8ed840199a2c281e6602bf56f18ce65bb5d7380eb49fcd9fa04d54835
MD5 310afdef647a41ee196866453cf60d05
BLAKE2b-256 8dc4e8dfbdddb8a6b3663adf8c5a399502082f527da88ac56dabf9764461f010

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5599cbce219c33fa7e0d1e28da4c355c787da69df0f4b0e5a8c2cf04f14b5475
MD5 fd84a89214098594ed072200c06c45a2
BLAKE2b-256 3370f548095ce0a5bb1c3658469b3e0f3f6e66ae83e291173c5da59b8e97d008

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74658e182e6bfc577f9ece11134d43bf20dbe81de97a251e21195e53e6784fdd
MD5 2e1ccbd1304e742d4cac1c17e5a4d3d9
BLAKE2b-256 b2937eff5b4d981b7fd2ecd5055583142c2a6e1063b64c50e49131717709c10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74dbcf194c06c745db81ec47302fc38208db99a86e063b7f4ed61135d55bb453
MD5 4c0d2299f1d37d8a58d5669807a4ad7b
BLAKE2b-256 2e6f5d48eae3c9cbbe68ab8a3b6261a529ccc5a72d6a646a19501dda764d9050

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e3bf721587f48d18d03c3bb56cafd0f47d98a6de638328f13490711baaa2f72
MD5 9b14d85e9e3aaee65640e973403a20e3
BLAKE2b-256 e54d2f6e1c3b21d5a20eb79ddaeff0a95ac7430023665f3d4af3e0a57ebc062d

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8ac539bad0b12eaa9b4d7e40ee7e08ddcec888533b05d4e0dd6f3eddb24bd64f
MD5 4f0b6ddbea4cfa070916f508404090fe
BLAKE2b-256 9d235f92ed9d62bb340863a241d4cca797fad0045ba4aa32d3b258824bc5bd12

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 81d459b45407f6d05210287176d3b78776ac78233823ba6bdecf3f7be3f5ad48
MD5 2a40921fe3bba116732ab75834ce3298
BLAKE2b-256 8c87462528607667d20cf08608abe305fd7756a4f9017119833189b27e3bcf84

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc4465853df6b79f08848c068366c7de06752cc4ac4b472c4629d037216e05d4
MD5 a3fbd03e2beef9f648f308de15051e19
BLAKE2b-256 f31fa2f5504a79a10ce22f475908cdf3ee67052dcc7e7001e023eceed4da6076

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f2b5cb15b69be47397a44216266a66fb67d4fc0ffe8151b129f3010628b48f
MD5 73cf1c587bcc3c524ba1f6356d454447
BLAKE2b-256 627462b0e9bb5809a82c0a73b9313a08a7af4dc1401c5990b184e41df2cf7bc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f737e2ed590c30f467aa4090d87225629f7a7f45dbc23d9c222099eb1c0c88c
MD5 22552a027d5b6665d161c12689a98777
BLAKE2b-256 39db0e5120bbf54e605960d1306cbda33e4ce6b8055104ffdf5cc3db02da1478

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9ff1a42e3806eed1791277768312d3bca6c2720762e5de6711a5317db269536
MD5 1f12611757fcb259f19db92391ee78b3
BLAKE2b-256 d910b466ad8fcb05048e07de5ecc16a3601f08eca6971807ccba15e1ab1b111b

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f66c72d1bd35e74f93fc9511e71c5fd8084a04e6b5af7ed9f9ed8c0b2e1a60b
MD5 622af855f34451b2ec557bf3b63e1933
BLAKE2b-256 8d1e73d0255e01d0fe9da42c706e8347cfedd912b53448211a82e31227d47d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f1c7ad4aeccea96d20d3c9fdd00c0977047368576b1113f090736b27c73ad6a1
MD5 f6d0227fdb17608dd13c877a28bb0fe9
BLAKE2b-256 ad5facc1ff85a1872a03f51ddd541f2082baad3dc416818c3309044465a8a764

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a569af085b74eef6f68a652522eb7b9c703647787a4d2038919fe6c3c5ddc215
MD5 16090b1acd23b46064e33a20b21091e6
BLAKE2b-256 f32142fca8446330bd566e33f7ea5e9d6e13ceaad52ce3dfd4f4fe5af1d46b30

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 095d3e4dbe706132b8ad9e6755e702375687fffef90d080d6a42d78285b32f6c
MD5 8ac13cf3984b3988eeacd527feddadcc
BLAKE2b-256 cb1bd67307c0071eaa6f97226a751d84e3ae3998f26a35e94b1472f9f051c768

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0696903f5aca64846ae56d0e3eda3ae03e204dd079a280aaf8a28b97792508f6
MD5 c76d05150695a50def0d3db92975a349
BLAKE2b-256 5638625a36f8d0ab825ebfea256f400da1c4ad16f92cd018da156ab2d8f1f3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dda085da425a3d759a685377c159b0dbe6a1979e54f1b30e91261f862d0d43c1
MD5 855c82f8636df6d7c00469c68d62268b
BLAKE2b-256 e738e98996a8f8e7fe2f68637ab3814f350780208fb858b38651ed7af92e81b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f529c38b6d62c559501f5054b8c71f59efe03467f5c3517fc19c92e22edafbf
MD5 722e1394006c64a092a2dc73aef3e62a
BLAKE2b-256 8c747164eb520358c4fcdf463d87f66cc4cb0ac95931546073c55327bea03208

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eac4b14d9f4a4791fea17102b6a7114396407e02decd0ebfe035348c6a94d587
MD5 792c1ae8de7d640e7580237b54384247
BLAKE2b-256 af5a5447451f2080ffb59d22799c8a95d709e66ded45b5e6f931c079ddc4c28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3e0c5ea4c292ed89bbfb172dafa4d1a650dc2b73eb075cbb4c2477bf4592c541
MD5 8784471d585935c091d1f60b7d67cfa2
BLAKE2b-256 9dde0b1187ff02934121cde7f6f2ac653ba5647653800cc65820979bc9c83e11

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba66a79dd561bc87553c87f250cd6908534f134a780f86e21bd28c1046ee8224
MD5 fd644245d9784dfd8f06d38d27db428e
BLAKE2b-256 cd63523f1b6a6c70542ce89effd0af66081de9ebdb01630a35e22f9dcf207d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8af5db84bea67c318d7c39e88cd91887a33424ca447fe2c3d7574fda3fa6f072
MD5 0533ab77e268d3e1f94c1ed855b56291
BLAKE2b-256 d1d5dddfcd39d1771f85bce0e72432ca4b40f89761d3af85d6ba05d933e77691

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9c658f533fed65f8ff2859843757e0b41246cb132eb1dc9f2573e0e7dee5fed
MD5 043b23002bea85458f00b5d830a74fa5
BLAKE2b-256 f72d86d2e33ea8b043db16edea17c7f8d6717c3d0e9b157ccf16d239d04508b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21896acdaf119dba1471d9fe44ea8703023bdac172e0621c4b471731894e4d5c
MD5 a282ec88c86c9763d09abcdf2110f2e7
BLAKE2b-256 a331c6bb9aab39b58243ed4822cc4e73573c52266bd4f7395ca6051edf65eab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6be5bfe40d1b9743687dbd0ec35ad4b1936c5e0f2aadd63df27ff1d386d3d567
MD5 c88390554b84106117f18276178f42ae
BLAKE2b-256 0bf8810e3d85467c66e52ce79962fa0d54de0394c94332922551bc6d266ce37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 90bacce9ebd81a2d8dfdca979866351f9013a5d5ca46c5de66aed1194d75cc87
MD5 1c887f52e809de4462c3ef8f11fe43ef
BLAKE2b-256 cca95a2a8d012997a62e212a179e35f9480110239fb30c7ad9fe406acb81d6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e5ec2c15e4abb0ebc526106963e0205e0569c44ead2e45fc3714cf02cbb177ed
MD5 873c0c2d4b27e4b1bd7c6f135ad59686
BLAKE2b-256 d8759c1fb97de802b97245026397a58a222a89f8789d013c396ccbc69ca5d95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f4e0f79095a9998bcba1a0d0ae491003e04c2aad450cdff53deead128b8b925
MD5 bb5380cf972af973310e9d0c60f98502
BLAKE2b-256 f7163ca91eb9a4c14dd5cb29d85ea9463d76ed412ae33f27ac391b1de1cc106e

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d2c787baf1137f41bbf56cb5683aca42d24db06f426205a3a48c858b9f5abe0
MD5 86dc88c82d39cb8c2fefc5fb28797175
BLAKE2b-256 1692dde4e1d9a14f748340e4481643b307fe588c8deb6ad476fdec6e4ff8690c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e13ec4f68d98beb601cb03df1d8e371cbe612fb27ee380f2a479b3665e4aba9a
MD5 536ae5b11469f001b783a11fc5857c05
BLAKE2b-256 e62a1c98d4be02caad54b1163f83dcf7d9de27fc5c56e619077ec5e2d027b1b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 738a9c2982d4459e6103a86213a2d35e9122e112602df8c153da3136b4bc24c8
MD5 e87ae5bf12c8c8939b664dd2087c5351
BLAKE2b-256 c11287c8c3b689dc194088c75befdab343ba8ccfc136e35650938529981b7f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genai_pyo3-0.7.0b15.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3030aad7b9c6915afa66f158a86590408080c5b2fa86cab9ea73dd86c4297558
MD5 1b632d58f451d028c4d40bd00488aa0a
BLAKE2b-256 b51a4d32d5297fb40a0df319e855e7f45dbbabac9ac8b3973544ab52bce34c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on ropoctl/genai-pyo3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page