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.0b10.dev2.tar.gz (51.1 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.0b10.dev2-cp314-cp314-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows ARM64

genai_pyo3-0.7.0b10.dev2-cp314-cp314-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.14Windows x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-cp314-cp314-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp313-cp313-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows ARM64

genai_pyo3-0.7.0b10.dev2-cp313-cp313-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.13Windows x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-cp313-cp313-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp312-cp312-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows ARM64

genai_pyo3-0.7.0b10.dev2-cp312-cp312-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.12Windows x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp311-cp311-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows ARM64

genai_pyo3-0.7.0b10.dev2-cp311-cp311-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11Windows x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp310-cp310-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-cp310-cp310-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp39-cp39-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-cp39-cp39-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2.tar.gz.

File metadata

  • Download URL: genai_pyo3-0.7.0b10.dev2.tar.gz
  • Upload date:
  • Size: 51.1 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.0b10.dev2.tar.gz
Algorithm Hash digest
SHA256 7e41fd818a9b0401c2763af5a7b90f1b30172bb3af6fd4f4e7bfce239e285b9f
MD5 d0cd546e149ebbdccd7f5fc2d5af4e55
BLAKE2b-256 6d2473c12897fb19c16904fea0e5339c5285cfea0162b3f7a7ef540295722c12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4800a100685ea792277bd6bbd520f0765d152ff6d83a13c3e3ff1b0238ca7242
MD5 bec1bed84efef0da1ccd8f6752feb499
BLAKE2b-256 b8695192b4269c7bc2d58df3521310c41d103da4e877a412186c54fb9a5a5caa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9b36f22fd55ee694950cc368e5bb594307be9f81f9cca24095e254311eaa2092
MD5 ae2f1cf06215824561270e84dcdf9494
BLAKE2b-256 c55bc63502e5997830a31bf85b2dc909e5b4ea89ae4b079481a30286d639ad68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8117c4e7d7a2f5a244a9fb28484dbf63032f6835052f2a81e45cb94363148a86
MD5 17d6ae138727307e0ee4241cafda21e9
BLAKE2b-256 257f3cbab9aed663002a37e82bae137c6e69bc91997fa04d3c66fd4890c7aabd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ef5773c42badfb91bd8179d21e655c8a561b2bc28fa4cc52cbf09e89a0c52de
MD5 4bdc51707fabf5dd8dce1a86aeab6423
BLAKE2b-256 f913b4adfa6719d7ebc6241e5e6adbf12b66400fe10b58e8c6cdf190fc3608c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c21dd23ad62390afa4fe073a8f168d85148acfef2ae7f9b864178756402b20dd
MD5 2dcc9b75b20110c1273bd26f4ccfbbdf
BLAKE2b-256 21b06e3241698e4f3f4ddc778e150e79d6c3e30509841100a8a676e7773386ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25361ca5c108ad2f4205f8cd65414a3ce616cc7de03b5259dc164c9df4d095bb
MD5 aeaddf250de4b201de9412fc8a3be14c
BLAKE2b-256 b1d581f106401d4a359b288a79450b3798ed07392b97c10596fdf2e8edb96702

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 61138e252449a18f94070af74230d7e120b2b87c13dfaeee7c0cde1011f181f8
MD5 b8d43ea135538488f41c8ded7edf440b
BLAKE2b-256 2da62b1e5f83c52ed5d8710bf5d62df02b6a484178bef250f18200a4f05113ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 213e73cec8890714da7a6f3931cdfae055920dd0f446b2255a1c03a43fd7b58a
MD5 0d9b69fc6a56a1389de2f4424834e61f
BLAKE2b-256 e9dbfe3ef301a2daa2402f6ac968b8a8c13516758b1e826354b1c7122d6557c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7aecc7c1e2c0f083addd5f3657efb19a084f53295cb3574133544e1d9e5c3297
MD5 e84df04cc1c5235299c97b2019f01d42
BLAKE2b-256 b8782b29f81342f7c036309940e6d280b284ce0979baafb217751fd82347e501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cf74e51bd49a4a322703890afbc1486dac130a1c160642487b31c35437cab17
MD5 7ae4dd81a1eac23b58a8548fc8080375
BLAKE2b-256 7fca65924faa2d5499719dfb048bd48275bb92cdd6b7e4caf5f58e443bf58e1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9719b278786b0def894708d03d64c41241366b4f9b611603a8f5946394049b4d
MD5 4ca1e4e34ff219f3beaf97b051a881a2
BLAKE2b-256 9343efc268ce277a9dcb1008e95790f9399f0468e4b051941028377287b2481c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c919f68394a64c73792444328091902569a00b2d259488e4a3bf3421258a7527
MD5 0aa6d59bebcf0b33fc0fd3cb97c6182f
BLAKE2b-256 5a638e8483f45574a52798d21f595740a0cbfc5852fa5b79f75b5ff257d27bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 709c116592493ede07a71b9d5f9f52a7780b5382e56e8f5a9ad4450c66bddf00
MD5 68d995bcb4b3601065fc6830abc9affc
BLAKE2b-256 ae66d7ad9caa80f6783d10135bba46a56a775581adc4ad4b74412eb1a258dd9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 619957f60680f68a82714d583ebcd463ad4ad66ed16409b333ae045e45324a27
MD5 9e236f153c32c59e6efd4ce4255d8195
BLAKE2b-256 af2ab3945e8b4e9cba32c6ae70c6533edd9baab15f09131d76c02d1308d5013f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fc9bbe3ab734e0315718e05292cdd349224a92e677708a1676c8822e590f1054
MD5 e6701472189e2d5949c9a930948c00c0
BLAKE2b-256 10abf84e736c4f08572702719fa3540b053c5f3493cc311c3f1fae32d97bbaf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fcd006de7c658440e6ace354b3bb6fa235575aec2911133ac38fe641f2d0acd
MD5 a9e65a894d3926c5895ebf5168e2d531
BLAKE2b-256 7707b00e7b3819d04748f0a7994372c477c4186ab74d10b80db9add2c7a84397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68fa82c52c76e66f8204edf6367297c986bbfdc182078fd36ce446ea7ee491d7
MD5 04f05fe4389531fb60cc7441ed68b866
BLAKE2b-256 6bd228ba751783f9cbf1507713959b196d49300fb0866489774499b3aa838680

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57fab3171dda71d41792777331eb427741536d23921883d6f272625741104988
MD5 5e0c487ccdefcc0362ec9bd908099943
BLAKE2b-256 62b6f8705ced34497d9a1d031283677e85e139e8229f915018080d39652bc67b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8ced671fda304f4c9a81511ed5f79966d594f1ea58e1858f8b847a698677e64
MD5 730dccec32cccafba67ec9e919a19c6c
BLAKE2b-256 dd3239228a402625815eca15cab6b3475200a8bffbfb34ffb9ffee1dbe55338b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8072bdfdcc710ca9f05c0304a2afd2dc49f2d27eee48ae32822b8a8522dc20d9
MD5 4f826c8c4354c01aafb891275e4eabbe
BLAKE2b-256 0f67691a68344c8fab4e82e09a692b1f22032c8104b9649cc471e63a08a01fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c1c8317b65c1f9e24a302fa85997bf13cdd0954982360c156fbb600f8b20698e
MD5 10acdb1e6f89d45f65ef0f4d743e2f5d
BLAKE2b-256 b69462306fe4906d6094771774da97292fb5093a5ecb0c0fdf08ad605e606e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c541e9d73176bbd676327e5e94bb8c32fb4332bd5dc9fcc12c71a5f4bf33d520
MD5 fa200e10fad6638f8cfe65cbff1a0cca
BLAKE2b-256 001853831af8b0fdfcdd9b53e78d567605282143971fe8065a7f9c2a6e43dabb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9d3dae387b3271ee88257e7dac126c5d5bb8ebe8d33a6f54706769ccc3a412ce
MD5 04570478b752934b970e8bd66bc00604
BLAKE2b-256 202df22e0adabd73e35cd5d58a43a568df54721a3152a49dea37724ddbadbf5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0b830e4184223eff52f8f03477d22526aea36d51f9178bb4ac7f2ae09706989
MD5 2d9715a5e146129b4ee1f47df7695561
BLAKE2b-256 8a68c83059bf533a56df67200e6edac22e7c11ad5889a4f790345adaf466f257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3df6049a6b6ccb947b589ed4d9ddbcb2cbc1e102b578db0456fb7985a052373e
MD5 5529fab04a064ac73bf2c949ffd224c6
BLAKE2b-256 12bb73d813549c9aee23d9fc0e70d37566570944f6ed4cb401879d637f196a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4856c72520609bb894b04e4054f2c7d3e4f00413570e56e1e972301f2d5f20fc
MD5 32e328b1736037fe7b9e980d4b2f7e9f
BLAKE2b-256 71220982656ee1eef63b49cdb5d0885c8ba7386fdcf7f5673c4c6e33bb55bc6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a00ddef2bb4e28a28046a03cd416641d7a789e169953f7e2cd6f43291b478617
MD5 9075d04467770fc91a92e809a1a1b68b
BLAKE2b-256 8b7d766d7bf04f3746a349fd83d3df4e958f581904d92cf8355589bccba233b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9f2afdee189af6a17d352aa8d830e54faed3c922f87b8630dd39a8f7e7126411
MD5 09e94a7cde8053b358f00cfec6c26f12
BLAKE2b-256 64603c6bca29e29be4252471fa8187972efa133ecb9254171570031a368cb666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40cc416629bc7c2ca90c058931ab1f5ab7196836b742ffdfab7a0caef6edeaa8
MD5 6bbc5564116021d2a2fa8c25f928c9b8
BLAKE2b-256 f8696d13198ef5d9ec5449fa0a829003d8e7d063fb64813c112a31d92fca4fe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86f4f6a6f290e4672bd281f11a469a5bc82abd0b148c87207811556cb735cbc7
MD5 61c72308c34c14e71bef3e5abbc377de
BLAKE2b-256 26e4dd2e68a356cc3bfbba15cc37a4d80ba15282b094269b8e2d76832fe12667

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f947f4ff7626d18af0d2c59cb7b34b0aec5079b76d8adaeaaecf44e813e5f69
MD5 d1d45ceb3120c2d21ab629ad1bbd8a7a
BLAKE2b-256 0c319a57588175bc4c94e78374a4dd8191721fb68bc8f9ab54f5a6e976873210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaca05397114ead1b04f652a95dea7dbb3c7dd0978313688d48d552d51706f96
MD5 20c394162f638fdf068af05926c981a0
BLAKE2b-256 113dceb30dfa82aca055bf2ebf9a956af2f063d6762a7b056b35c40964fbdbdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c150e107f89323be931fba9de890746a090b4318e2b0b3da81984f0190d85f2a
MD5 417e16307109ea5d456a078fd8463ffb
BLAKE2b-256 b3fe2abbcab926a475cfa4f77c02628af75e9bf21cd81d3ed3ca6d9fd18f7dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b789b547dc129818dc962cd29ec1eb80798b0d8b712205e8212ace5e4177fc6f
MD5 220b37c5c231d48a76d9a2da61f7d8e2
BLAKE2b-256 bd8eeb8f6476048f9d8eeeb08214ab5c8d3fd7abb4fc804a1df47b0d8340509b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8ad513ac9c28f50aa6ad3d229234f0bfcafb390c0426d4ba2fca5de9847eba6
MD5 4586db54aa3a9d6579de2a4b5453bf08
BLAKE2b-256 5fd28c757c46d65fb8fb392baab4d27cf78b6c770984aef15a1f752d7a8a1e26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4bdb61a09b43e3ec759c536f15fc3582b5a18c1d246ad96330678d9fd47c516
MD5 9dc8a2825d819d8933d8401ec1077b22
BLAKE2b-256 cb13fa7799d86821e01974fdbdf02b1f506764e24e5da8df9bc9e07035521d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ca8f2a7b25a96818210760106cf4aacade78a1eb97856d9275805adb2700de4
MD5 32ae92dba0d86f8f040af528ef07f775
BLAKE2b-256 65fbc18ef70022205f80ed66329099f9995b87e4e7322b250669a9a8f9e8268a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0309dd69ad32cd628966f406093f953d4fd270f69ef1a02feb3048debb41fb18
MD5 43719fc7e14588655a8125b2bd984ab6
BLAKE2b-256 eef10731a813bd263e0a7f3c24892de3f80e2e18b8f75072a6bffdf19625d0df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a6c8e53fef480c92417ec2c4af54f2dfc3a04682ffce9c6956d01ffc3bbf8a5
MD5 b3c170d6a860ea1e5054db81d87b9629
BLAKE2b-256 3be9073289978a23b0a421078c18757151a0f39cf501d4a296af9465ffeed2b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.dev2-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.0b10.dev2-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.0b10.dev2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7b2045442c7442350872c5bde252b864456895fd4dcb49e344d6598d4c225598
MD5 1fe67d17464a3c5b6df5d16239a84848
BLAKE2b-256 4dc61fa9bce25532f8c0fc8318ef69ad204ed0ca6a2ff00a71529bcb971a5a8c

See more details on using hashes here.

Provenance

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