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.0b14.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.0b14.dev0-cp314-cp314-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

genai_pyo3-0.7.0b14.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.0b14.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.0b14.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.0b14.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.0b14.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 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.0b14.dev0-cp313-cp313-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

genai_pyo3-0.7.0b14.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.0b14.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.0b14.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.0b14.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.0b14.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 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.0b14.dev0-cp312-cp312-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

genai_pyo3-0.7.0b14.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.0b14.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.0b14.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.0b14.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.0b14.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 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.0b14.dev0-cp311-cp311-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

genai_pyo3-0.7.0b14.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.0b14.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.0b14.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.0b14.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.0b14.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 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.0b14.dev0-cp310-cp310-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86-64

genai_pyo3-0.7.0b14.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.0b14.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.0b14.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.0b14.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.0b14.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 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.0b14.dev0-cp39-cp39-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b14.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.0b14.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.0b14.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.0b14.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.0b14.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 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.0b14.dev0.tar.gz.

File metadata

  • Download URL: genai_pyo3-0.7.0b14.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.12

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0.tar.gz
Algorithm Hash digest
SHA256 12937888de0db041f4081c1756693bc9d23bd380a55eb94b7a0a8099bdb3b68c
MD5 a731f3a539b89ebd9d57eace5d8ddbe1
BLAKE2b-256 68b4318a04229099ee6d1bdb372541a3c747d284791c9c6f40bf75234617125e

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9e1d58dbad88184124e92f773938775bc8037e68862ea1b102c314c7a02ef7a0
MD5 0cd5c8dd9b9f62e310ea14e0e3e53e7c
BLAKE2b-256 a0cf3cde276bf4ad51030c90e40b70546893825ec15c26e8288305225bb9c441

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d0a39cc9e1ccae6858e0402fee547b2e0fbc8bcd5584752e160351d90a3f93dc
MD5 bc1c8ab7c7c6122b6d9e62e26f391c2d
BLAKE2b-256 5c41e4fd329647e92312c3c04d9bcf9b7e614c4db0eb8c57f075550bfdb9d5d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4846901ca89191994b80434e908bd212e251fe0804d47cff5067eb128b9a6de8
MD5 2479b43475c8988dbca658a54c5b5987
BLAKE2b-256 89963a309ffac208d9e79db53363f209fe2a9af3c27ba26ff73657638d219301

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8badbdc7ba13e760350645d4d15585b4583c3ac8f88a7eb291fc9b03d0306ff5
MD5 9412d9c6af3aa2ed21e93bd780487800
BLAKE2b-256 d6ca5b806f34aa7c225b14cc7fa689688218968752058023d94396a6d7db642c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 750accceb73cd64b7b2605b0b4fd3c37d20da0bf5383d2ceaac0b90e7141adc5
MD5 86b0239cff6b856ce88881abb42cd662
BLAKE2b-256 fa905737874a0a6fa7654d40c247e8e544c6e50e39aa68848726ba0b7191a3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed331312ed60ee764cf88ed30bc97a245b880344eac8d607e6c312c207d03a9f
MD5 9f6da6e14a0ca750cbf4abdc9e800884
BLAKE2b-256 11e513391f2077b133a8518d8510ef60c7dee0e80751aff06b3c465f3adc1d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.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.0b14.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c4df210370401cb0f88e71e6f06477cf5d1f0260a968966de0b81818d3aeabc5
MD5 3f2c2e49e64f15e4ec60b7d4004ea7c3
BLAKE2b-256 ca34de5330c16876e737ccb80d6b42847bcfc80bddf7747d4a5e08a826de074e

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d7431ab27807c03987d99a15a3efc34cf6c9108de1252fb2abf64a71e8d7d431
MD5 f3d36d5d2448083af3f0335daf8d4141
BLAKE2b-256 0d305045b01ced6e3f2fd3f5639598c21da1b69a74701bb06d0dcab267d37a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34f04987c5e323703a4c7415acabfbe2dceeb333c4a61d92e722c78d37131873
MD5 40aa196a04216774658da5d4338d3cb1
BLAKE2b-256 b96726b87ee2d7cbf21d845fcbe163db41b3c25247fe3711d86d5adf72b7796b

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c98a7387bef53075fee75c1d7a580f70e12aa021b18b248f6cb78cd8c8d15483
MD5 5555fe19065c5e6a46c1e6f9b1442e35
BLAKE2b-256 ca9aa758607674ed9704b93468a257aa8c0a17d468c16f5996cf2c4ffc811bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4153d3bc8f511993fc5214ea2b8b9bc71780482feb276cd489cb3605c55c70e
MD5 66c74c2a07db5412774914e5d0982fe2
BLAKE2b-256 7765ada2211caaa37dc6c3c39ab3901db0f0fd7371b130c6cc38a3a03d9fb9bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 120b3010e2f2e21ea6e14f02cf0fd9785e73587c4225822957cc697066b44066
MD5 3289fdf44d927ea7984bae7c9b4d03b2
BLAKE2b-256 a61d683eec2a685814579dbab110fec7c2d3cc3631abfcbae797a3ee2b02092f

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92d6727cacee0bd96a15e67a5c3ccf6a29a5b30ee9daf80b5fcd3d7be7f3014c
MD5 1637cac2a7ef12c16798db610aab957d
BLAKE2b-256 1442a9f829cf630ffb64bc873b147ea63bc6d0a6f076aca2c5087cee969ae4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.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.0b14.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 090d6095078669d5f30b968072f7df3c4769aa9e3b4c4a1b01c4f5055af2b8a1
MD5 883415bf6006ea804e79fcad5ed9f936
BLAKE2b-256 9184d6658dba7845ba7397d659d9c98f48fc7e41dee32678742f9979f1fe2ca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7c6209722b365e0d970fcd64bc85ff950850b96b0baa4e8eafbbe877ae4ade09
MD5 580fde4c1d45040f6f3dda6ddee75f23
BLAKE2b-256 7b9f6e73e25d4907abe8726170c8c908e5a0f8cdbb9935a2f71fcc1956c370b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 da0b822d09270f668f536309de14e96c0f26374eb80ebc8d3d2d915933786496
MD5 db4b9f2a4cf62767949bb81347426bbf
BLAKE2b-256 d40c93de9e7ad91faf2a5185853099cbf8afdba881766695bbc9e005f93c6afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be199ce32df490fdd235991f5803c7197b79e0fba5a7751cb93edab7d9bddd7f
MD5 18aa2098aaedc3bdb39a002349a06a7f
BLAKE2b-256 99d40ee027564640e28f723dcc9c7c5aa93ae689424c08d3dbac917acb30d47f

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55e78a1499c7a23fb305e48829b0fa453769b17ee3c54b0be3d8055ebaad72d2
MD5 2411d9521b09e592cbd36bb292eb35ae
BLAKE2b-256 94a6c1c43bb192c8a9adbd71d40cc81ec104da880975d6ae0d40518a58507f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc782752eb40aa766a03d359e839523b8c2532460432b6c824e2ce39b40dc8af
MD5 3461642a0de33be54cb07fcd55d2e3ea
BLAKE2b-256 17728e0e960e208500c600658d6eedbbfd9d7e6487cf506bb11bfb07a6e97214

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5449239de3b950d96f844b5f5d050452e22df7bc6e1fede877c7c98fb77edb1
MD5 3506f5335ec4380be07566641cf5ed82
BLAKE2b-256 2fff0b8dde6c10b1e5f8fe504fe32cd79e568f3b871f0c7b83e39bf6a5a5d928

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.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.0b14.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9e580d0a0776b309b8c6343c4bbd56ef1e153d5a59a508ab82d91e7113479681
MD5 bb9202929986ea2769ce525e473ae11e
BLAKE2b-256 3d76a66a42b28fa08d284a32fe95fa36dee4e51800e75a08b78ca333abfa2008

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4a42747ec04da1b21c4073a1bb5f5dadc49455800a214c52eb5552db2852f6cb
MD5 fd6a8f87045407263fd2c23000d63214
BLAKE2b-256 6aed39d572901615ec0b3b0583c5e4e380c56d00205c0e8220a8e11366ec40d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d0f5a98beef1f3caff649d1dce42506b0238ec478a0a11f6a5e6ae292dbd416b
MD5 1f68ffd21b1ad73549a833625d5bda18
BLAKE2b-256 709413ef243ddd30be1c826898d5627660b8889f21f6f91c5086f92297a62147

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df3c74faf00189452c08368a3fe6befb8e9ebb369c33e5d6cea1827eeaff8940
MD5 9ea5aecc5f0607cfa9d4cb044a9afac8
BLAKE2b-256 cb3b8a95423065d50424b70f5c8b7025d76a8d0591d294b08cdeebb5e767e70b

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f90a10c1c2d4d70e5fa47e560d2cb28636dc75ec17152c7a3f12dfd7cdd723d
MD5 2af51b5e7dd3a98024056e8579410677
BLAKE2b-256 61989cdefee1875b17ffe49985e14a6be46e626ca2fc6b591ee3dc6d10c95409

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46e3158b28bfeaa297f061ce2e821997f357543351726d08e2f16953c2ea6f49
MD5 a7b3e4a1820d4eaa56828f17ded714bd
BLAKE2b-256 44b82192f1328d051763a64254657346809dbeb2e84c4d672cea2ca2563a7513

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1988f90d5468ea9b5307ec8d890944868f25077a5243629562201db51d589812
MD5 d5d3b51cad457946905a1157a1f7d472
BLAKE2b-256 278306e646099b8aecfd03d269c9a921ae20a55551654f020b010fc1bff18ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.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.0b14.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fb13396001f747b0c6586ba7edbe53523a7619412d0e79c01afb57990f1d0129
MD5 5f47088387586f6126ef461a8f5fe808
BLAKE2b-256 4f374971b2de027e73e2c48069009ec5c93c58dc1107acffce0248335e646f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0dda1161ef6b3c611921b69eec7521d84bafa634c6a17c99606d265fba75b56a
MD5 51d62e8a7b977c3b593160d84aecd261
BLAKE2b-256 e5e4a97de32de12c8708198f4ae8eb3d881e8d0ecda9520f176508900d0bf159

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fab4176a790bdf1d4d356c457f3e9534a33ffcef752f6473754532596660be2
MD5 402a0e73de74d1deb10cbcc5f60f132e
BLAKE2b-256 421c22705c872babc5933e019b342cbc8475cd207e7676e6c5d24d288821a36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e6fdd5ee699254c013f5fd97dcb1cc5dd4ac340450ade0ed29859511d29aca7
MD5 3a2e6591b92019b7b24e25d63e6cbbb3
BLAKE2b-256 5dbfb8ff5d8c0fb1685cd6bda05e8b2364346fc5dc24aef64f77b0eadf593fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3489862a9b5fbb3a3d91836e75bd429e28bc73e71b69b1c61b460c542e17e792
MD5 61ac986beec3bb0292581e46e9e27a85
BLAKE2b-256 42de7ab4bfbfbcfd97e2b864fe56de4e67a8358cdf81431dcd24127ac5a3ce9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76ea2092fb3628d5dbd3224b0ef15bdb61f3b5980e10a8b5ce6db55a71bd24ab
MD5 909ebe06c2ef3b504a023f609571c6c7
BLAKE2b-256 f0dfe3ac8ff5100d2e4dbfabc64d9db44a6f3a2c40c755aebb598057133bfce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.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.0b14.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b39f306d8d14b2b758f34fe85123e271d530ac0fa7ba42589552e27d763885d7
MD5 4397568edbeaefa5c14a4be060e0f982
BLAKE2b-256 934ee1eb59aa37cea80942de91c4f396aefc4bca6740424498dc76fd367c1823

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b23704cb7a461534d05c3a5441dd114d5e8b6b7aee9901ab4e3d699f2245d050
MD5 c2b1fc4239b7077a0e776a0354785890
BLAKE2b-256 88921be46b98d85e73ba46cefcca70c79562ed3f3c0e06fc443ec4bae24e2108

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adb59695b3c3b9bcad0730d949ef042c531d7aaaa85c83e7e6f497dac200786f
MD5 47b7e72bc1011d2726ac331fb36a9866
BLAKE2b-256 eacdc702874cf0ca109c95a654348b0f5fef56a1aeace981039aa0b941360fa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5116c84feaf6973d8058ccdc4c097cf4d7f63ce5d4d38f737cfa2afbe53797b1
MD5 4e3fdbe05e2c8e33384f70d1fc305bb1
BLAKE2b-256 76ee782bb40ec32d231b28c724ae78d140d0a86a215c1d028c3211f1745ae087

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 badaf7bae79335cfa7c44963788c59b596a199001ec9318fc3de5c18709334b8
MD5 625649891e72d178b3db01936fc67b72
BLAKE2b-256 4f5b2b17633b478c29668d59d4ca9aa6f5272ce0341f7b96fd9daa2675232e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 613867955af968b4dea4edba05d6528706161c82b33105d5b0c54bc17e2a4757
MD5 e0f24790754c08335647947021b4cdd3
BLAKE2b-256 e77bb4084e8c6f8a5b436f98b4393d7f43e65d391fac36f7dde0e1717cd8b199

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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.0b14.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.0b14.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 22e98417042bc8a6bb69ef2c6f6046a51ff8aa8a45929eba2f9ff733d9605c97
MD5 7830893d89ffd9aff00289f8b2974456
BLAKE2b-256 ecd85fd098c0082ed0e50d56d25b431084a8956005ea0626956623f3dfc6e25c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.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