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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-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.dev1-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.dev1-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.dev1.tar.gz.

File metadata

  • Download URL: genai_pyo3-0.7.0b15.dev1.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.dev1.tar.gz
Algorithm Hash digest
SHA256 4ab47dceb3cd1839ff27c69449d846b994ccba4e9e1f05b854ecea43216ba014
MD5 e5b29e55bf805cb319230df160bbae95
BLAKE2b-256 d2b45a533d56d8f505e1dd86179e2f7783bc63eeb95941b8f16e2c5199b97632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 43a8e01a31c4f75ea3a708ea208eddea072170db20f583de526dc875431c8892
MD5 4dfd2695a68e3492ec45563218d8c601
BLAKE2b-256 9d0a210fd4bd0138a78738a9c8fd4d29657074e2cf27a82b75bc449dd3faa2dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79185f21113785b71986a03d98e12c1ff3ce186a41c4f7296add48f11eed0678
MD5 75f04f4fd5359626ebf9b4744d9ec743
BLAKE2b-256 3fdee019102bcb1396655129ce26de1b6b98b2e78abb939541e910376e14a540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aef256252c6cbc6235d1b80e7b6ba4c8414ac7648ae1a2629b100155fe446a5c
MD5 4c1b931d7aaf7e737e0e17adcdaa5eee
BLAKE2b-256 6b96233c36d990c007404372f595d7b0c9527db1f65f20ee5b5d3c6c1e910b2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e670bd04e299c0e9031dce37d67092a8e3316c4e8e9a8f9ddf714ac6bbfaeff
MD5 e0f2f89d2ab31e4ae7ccd8338d48c23b
BLAKE2b-256 56ecd00198d97c9356ccca0e1b9d3fef6ff233352e43b0cae3b7c27b6d2fedfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7dc0d63269b7d422b46a6c04c67b24d2b8a596359a6be7231d62255e76025f84
MD5 415a4181aa62ad647ab93f84f3faa988
BLAKE2b-256 ddaaf8f4b71d70eb7d7ee4e2d202607fcf5967bfda13fd718425b9bc6b864d4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f066a39a3e523abfd355942b443cf5ab50dfb730eb77221d8307f3da1f897e25
MD5 b9bdf7bf5d42ac879fbc3d37d3c1d5b2
BLAKE2b-256 2489e370e010cd84c5d5937c34ae4a71135eb717af54eb71a77bd07a4e3850c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b8a48d77eabd61a2e0ec04266151588109a729c90328cc5b4aea11efde3b7681
MD5 2663f21784bf04862bcdd9d380be9732
BLAKE2b-256 e6f95dac6afef61f3261bc261085a60caa25d3602a76c0875d3d5f9d21245634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 dddf4f54927faee1ecfdcfd383140cfb79c714e77ed4bbb6153c6469dfa0aa27
MD5 915989dfd11083280141eec32bf86330
BLAKE2b-256 e90faa7112d744e72f09620a99acc7a40634d948b3106d699c074387bb8ce980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 429c4028cda87e425e134c98b66ea1059ae36c7a7ab747377cbcaee77db50d58
MD5 495e234108a2c104badaaf32205a09a3
BLAKE2b-256 dcbadea76edb30ee9527b69a382995354268fe61a4c9494aaf0870d8214c61d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0923d5d006b7d8abba6d69049ecf5c8f64427354e09d05d11283ad8e69e31353
MD5 f24750a2f7dfc220570278a7406b1741
BLAKE2b-256 b60fde46c888bc8d421771ace54c4af567daac7d18c1ddb6074284f16ffdd0e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3301fcbd5526d05107d69f8e8f31c7324deb21e9b821fb96c330e58508a27d4
MD5 9837f9231cd5fad006fcb70f6f584e79
BLAKE2b-256 7830f77a085cf15b2bdb187d950da2037011a18feba9e4c2332274cbe792aa52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 920424bccb50c08c8ad9f9b0904b3293bee3f7d1ee14452091d018431c3b37c9
MD5 c9276bd1ac7f88f06695c35d7cb195a7
BLAKE2b-256 0bdef3e0931aed1537fe163d6c3449b0ca28aeb2aa6b55166fab53980d6420b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c286044edb82f187d5241a98b164c4812c52fbf90b90998067a3f20054fe8844
MD5 e26cfca256503e207603637e93468720
BLAKE2b-256 1ecebb0634522729deea2a2771950414d7bd8d8d7c26339f03a36fb635bf1a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4ff64490ba9b303437ab84564ca94d137135ca7e58e9dfa775e921ab20abb033
MD5 babb45edee35b9056052211d875a9641
BLAKE2b-256 4e4cdf21ca283949be09d12cac0949d7199cf7058786c5978d6dc130e724fc85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f04d90752bde93712ca9c0ad62724302aa01ebe842d4d73f48114860581e9d89
MD5 6899a7e4376f7c11c8ce397cd2495e7d
BLAKE2b-256 92dbdca85488f953d9a0a22c3a23887fe5226be369dc226010516883aae1b97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b4ed8c343675c087746797fc1f2d9fce9c77f7b8c1892d68d0eac8989cadc4b
MD5 80119f41d22eca8f86cbb1306b8af26e
BLAKE2b-256 84c7a5be55e45e60eaac4ce37e0b68075437a082da23c3eba89ff4d6161e4b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fee379db2fe9d221ae95794bd1cdc72d42fb2f7ba9e09c3f7d52888499b2ec86
MD5 2b3a3eace093cae2494cf1ce5432ee5d
BLAKE2b-256 f1aac0103ee482b40d13405080405ce7a9122b1f3f05fdf6ffef07e868c1eb79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f961eb650cf992c9aee689257c8d4f956084fe25707976d20b2639f80068063
MD5 6f7cdeb97162fe28634b2cc4662e78ec
BLAKE2b-256 b382cdef716010127b206d05efd3f6aea3ef829e2e7c51204fcb6bb493d1b066

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 807017e47dee168060a5a6a8a1cbee47433918172b6c377cd011119b05696bbb
MD5 c0a48123202732fde10da6f67b72b618
BLAKE2b-256 1d04a1556470527df05fa1a1a04e047ed04d6948c21f981057a2af6060a9f2bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e98e1bfc2e280c69bc7815bc5980ca46a31aa88398e2451e7118b78d38681d41
MD5 b9516af1a37b10e45726483b47bbfee2
BLAKE2b-256 5ad3fba962f0073b1b6513731f532bc376e3aae28c37a8504b44bfbb498d1355

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9de338842725863f46271b8bbeb9b952bd105525421e7b00ccebc06889d87d6c
MD5 8d3df390a260b84fcb3d75bd768724d3
BLAKE2b-256 a8d96a4c1dd97114c05190a0883968989fc80e2bd9a4e8efee35dc6e186b8668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 349fca16bed7e673149a18727341c9d746d8d836c68c4884a6f01c1cf6a41c0c
MD5 4f7f51c2c90d41f72efc165db9ed3aa9
BLAKE2b-256 5977c1336535948a6b108b3c47b78de37724a2ee2cb7ac3d535e4488d0f2de77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05a90170faf2f96fc592db7b240cc843cd9429fbfbee34d0c671ac1cb1ef4593
MD5 03fb937f1e61595315be4e4e2fcff736
BLAKE2b-256 189c652350e3bfdcef27e57c3461588eacac8eca96e22c633ad63d6ce40b2326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67d255b350b03a4da29d00526fc53f29c39411fa492dc5585f65118f88626f0b
MD5 4491afe462a090d76e5054c449c4d755
BLAKE2b-256 64f45250f53e6fb22ab881aa7926576ad56a0fcb6225ffcb4f7b3facb25578ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9f8a96a675613b6190ca9d3cff5d3b3fa77323e394673664e75c3f3e152b863
MD5 2fc53d4cc47c87cd59d5ba4d30f9348d
BLAKE2b-256 ef4a06db58741dbc9275aba2003bd8a4a67d2b3d715ddf95d6f11cf22cb5e668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5279656ef58ac22e6bec656d779ebbe34d23987a8c6267b96964d980e24029d
MD5 6184a196ba5f991c1271f3bbd3c7c82b
BLAKE2b-256 6348d637ee9a202d5c5b2439fae8d88cceb1615769ef77c91336ef54eca3b1c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 216136efc8d042e0e47f90f868ad196b151dde84186a64f359e7d2b3a2f011a7
MD5 b9b4249e6d1c5c5e4c31989eda722949
BLAKE2b-256 c98db3aad753b421b5f6e92e764a3610de8fd89ac7436e91dd77abd50cad8516

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 342b9010b28540495648da22d39e1d4771ac89d5f01f77ad96127280d63ee62d
MD5 4f1fe4fec6c7031c380cbca195fb3123
BLAKE2b-256 b7b378bf402ff0f7e85f52a0e630218cc88e83010f73f0ecb69ba2d7f019a23b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 45507b4d869684f49f67dc3c8adb86166fbe759dfebcf8dd081b75129083891e
MD5 a1b46ffef8d37a3061ebb2f99d178b90
BLAKE2b-256 fab0c969328b52af37390a179101e180e8990a8989d7ea6f87b03168b18f291e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35452a087970d1f3ae1d3daa15aff43b6de2d9b459a386024168a2a25e1ad899
MD5 803f2dbbcb81df54d12ea5a211136452
BLAKE2b-256 12081337aa3abc387c56ca62dd0e8ac0bb6da576369473eb28982e8b95447713

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2ed1115f65228229f314cb64af5efc0d4e9804d98a15911808263671fa38fc1
MD5 ca25636f346df19745f313f23e5554cb
BLAKE2b-256 13bdb1802b0be60920193623f2822d1f057dae3dd06f781e9f1b4e878af69f83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 853a9dcf5d7eceeb1ce6a91b2e84a124a00e377f27a32e8fbc8b8b5847865825
MD5 2999882227002e0a41506edeec629b51
BLAKE2b-256 549828bf2b11231cf3765a2a44a3c3503839a159348b72c4250bc57ccde9f0e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15af5f4b4b1a792c585a13845596e9dda95524242315b10f21c11fd3efe8a784
MD5 d87becef61c6f82156ed94262e9e354b
BLAKE2b-256 32c39d587b67215cbbd6f31e202463e90366f44218855376c0cdb8b0d6f80431

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ebd01b7be0554309419b72d39dd56ef047825fe9189b00d025ca2d97ba1ae542
MD5 f7360e87c81cd21e56cdddc46b7d1d05
BLAKE2b-256 79f64f39f382673ad9240ac2f264ba764609dcc9715c6b909879373d45d794bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b0dd1fb85262dbe4a6224f5c2aaed41af87aa701d636e6a1d387fd2bf2bc9844
MD5 2344bf605e5a79e210a9fa296d85045f
BLAKE2b-256 f638b93b298984783750d472e7cf08a84f2cf025533a06b75418df3f257222e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86ec16f1019ed31b7eb580858139abb95d156abd823d73849c9140d8786482c1
MD5 399bacb0eb2e96cef3ea939fd3c832da
BLAKE2b-256 3edad55eed447cbf6992de26048bbe9479ed410a2110198e1af8643f2dc82972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 630569880eac56b7780e3faf2eda78bfc9a1acd315e314a6c4eb539be13b7c6a
MD5 e53656b0dfc64da3e8d878f38c10419f
BLAKE2b-256 977e356647b82ab3dc2333a7008496b9888a02401d7234db1005073a2c827c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a88157f659fe28a760d567e90cba1a9a18533b6f9d6f8db07cd472cfb2db2a1
MD5 10b32e34820492729ac53da9ceb583ff
BLAKE2b-256 98208245a39b59aa3f8aa786d9fe4d2b478d58b11d2d6e1b4bf7b7f39a939646

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 568dc5d73269419842bb68c2f7328ba343d4f44b087372d425af853b9f4fc36b
MD5 939b5b67863c43c1a038aed44b5511ed
BLAKE2b-256 2379683e97744cbdacbf32864ed4512da92ab00685860f917d865db2340011cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.dev1-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.dev1-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.dev1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c238bffc3549ea5e1cb479d33c5cd4cd6b0fd76e26ff2ed8e858d5c9b3d48239
MD5 180afe4965ec8b5695ee4bd520f12c2a
BLAKE2b-256 8afe00932efdd8cd93a3169710642d1c7f265442cc5f665a0f3d56d4fdadeb26

See more details on using hashes here.

Provenance

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