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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.9Windows x86-64

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

File metadata

  • Download URL: genai_pyo3-0.7.0b10.dev1.tar.gz
  • Upload date:
  • Size: 48.8 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.dev1.tar.gz
Algorithm Hash digest
SHA256 f47663748f5f1c41f3b12a6470c592ce6641f2185db77685779124019851b101
MD5 bbca76d6fa514cfcefc6bf2806bcbdd7
BLAKE2b-256 600f5c245a515df6a7d14b0ec2728289da7a29bd7b6c72a857121f327c344948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c1f7a75f82e25582dc6842ecd42d65e414e7a28b9eac461ca838caecb1c10278
MD5 8584d73582c29e8fddfca6c452971b91
BLAKE2b-256 08d825abed708d3fd63fca7235d4078ae069488f5aa8003b3b10edcb273fd9a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f25b91d1dfb88cf7956b300550aa77c761cc4668d70ccaa16e5282a9431c659
MD5 56cc5399e84e00d0eee5efc0421dfdb3
BLAKE2b-256 5af57432351bfa5f0bce3562d6fe45b3e0d9ff280953d647db31208aa02095cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 560f1f973bfbefa17614bda07bbc5a20fcb0a0039b58143c2c2b9cdb9a007af8
MD5 e9101488fa97584b6e657daa9eebe1e7
BLAKE2b-256 ec84861262ba235a2250171e606393ac3d83e84ab66639f8b125848d6c829cb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3532628bb22c08c43f4d9022ebea19b8f484608818d08e3bea7b47adb31e621
MD5 034caaf8c4aae3ea48473be312520454
BLAKE2b-256 d398e2531e6cac62f492fe77a443c79bef6a5db4fa4f78bea29a42dc90bbd24a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2df573009dabc3d4b3959a173c9541cd3d76b62fa76224a272d3c1ddfcc273ec
MD5 5a34a5a5815163c3d031805f1505fa01
BLAKE2b-256 c40d5ddb2a54698a7dc7f0e123a6fc4d9d1f9007f71a3ece2ab6e9dfca37881c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cf7e9e67749f28d027b60a187e0c8a5520af3ef17c6b280b6cbfef3b027fef2
MD5 6f339d7af090991384e15a234675ca8c
BLAKE2b-256 03dc326f8c2ef9ba9c0fe00d4bb7f5cce37d3dd851ceaa9f1044038352bed738

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.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.0b10.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.0b10.dev1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 09aa464a9c46c7cf0e31f89ac404f4dcc061a526aed898697f8b0845e77aedb2
MD5 c2c489b478f9b833793716d7cff2b3f8
BLAKE2b-256 9e6062801b28d0f116430342a815658f3f6aeb4507f14086d490f014366e8972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1134b5700ab873fa48d67c192d5b47876dd1dbbd71ed46e9b57ae628b7ad6a99
MD5 f62aa25bff566329b3bca48141b8a9a8
BLAKE2b-256 3dbb76b1969e43bf8108efcda13e9385b9503ffcc12f739eee57815801bfa5ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 924fbc091f50d38633b609811a8271de2bb2a4a691ab03fe9272d6850c82cd80
MD5 6a9888f82351a7cbde91dd09c7f150fe
BLAKE2b-256 a769af1de2e4735b691d965ee3047b98621db66987b5f4a3bdf2b0bac1047f6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9251b8ceced0f68cfd23735ec22a286f30510927a39a0a4761945a6b90379bdf
MD5 bc5c793be0df55425844e535da6ad955
BLAKE2b-256 59a3def143e4b5ddca956f6028ce0f700a7ab50166bcf773e306a0ce9b516907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19425c3eb79acf2d3974ccd29bb5aa898e56b6ea45f79a1dec2848a1e951daca
MD5 8cc42defac5540f217db4d276f4b635d
BLAKE2b-256 a6e0db316563f671f8f90bad88325e65414aef1514384682fb14f1677c7ee281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2376e06c77548a1b247413c23033ad0f3818548f56a4be20e6906a93649041d8
MD5 23dc51c018417b96063ece5ea54c2c2f
BLAKE2b-256 e06fcec176ffbfabbf68b7c414021ffa6661f1a9970edf1fa5fe1eb685ac86f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0f6e6ea74de0f03364ce027fe0431bf8e5dab01f0eebc64ef41d68b3b57ba64
MD5 936f27cfb883bbbe4bd9325c09c9e0c8
BLAKE2b-256 84c6b1ad9ef8b17732a0d425b38f528d5363aab7c7d2448f1895718cbbeda314

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.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.0b10.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.0b10.dev1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3dee007fa0d1cf0dae381ba9fb384dd5beda6b18d449c4bb95b6757723dc0503
MD5 0192c55c1cd95f8b3db87af8e909b166
BLAKE2b-256 bf2f56f06046bac8d95991c18ca87459f2da4b1eb9b5cf400da3d0c868a7a120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9c5db543470980e6be16c47c36ca8a8e66fcf1beded4d43ea7dab85ce408e8e6
MD5 501ca3d6c7ff3358ae9c2e5e9ded232f
BLAKE2b-256 4f48934a0321882cece303796669a3effaafbe2964b22c6e7b84227c09a80cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 941c6ea4a472e0f3aeef3de5e6ff025802a98531217bfecb8f888a81c4b2deb5
MD5 8033fed8bd1ff50a090d33ccf5e57765
BLAKE2b-256 7b636fa8b27b150c636ffd856c6f71e516ad6ec380d41789b183237c72c18643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32733a0d195de51abc26c98fe203f6e4459cb793ed5cd457791cf54ee8ea2788
MD5 eb779cd0493ddb414441048d78dcdd90
BLAKE2b-256 2d26e993f71848792c6815b06ce7cce63c5277ff20e2ba732fe80563e9b000ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55c773dd4882c462105633a323c46b593e1d243e5bad5982c600f6db6fbacf9d
MD5 afbadff000c0cfe79d425cfca1a235a7
BLAKE2b-256 49cbb052b669df515ac230ed2917e7c441a07d7024d2ce3060d869f8a6d59a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edab18906a7763ae6b0f557afd6c2eb5159b2a81a711e6f6c2328cc09aca5d75
MD5 a2882650aed9edaf31fee474ddeee606
BLAKE2b-256 4c817db88eab5eb6b60c7565a886d9807a01a08ed2a597d31eb5e60cc6392e24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fda33c44e75d090f77f67ceacef7fd8dc257cc902acc2d5bd948948db8abf5f
MD5 ce10a9124593f20fc3eebaecbd7feec5
BLAKE2b-256 2caec52f298bc3027ad14cc2eff65c547e93936dcf9882588a970d5d29c85dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.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.0b10.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.0b10.dev1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 372639c6db2ad42630b4eb7a47473b7cf953c5916d5337c23c2c178344910f47
MD5 1f3810dd1c67d07fcc4d47637515a756
BLAKE2b-256 de03c85186d50c3ef137c9a4a616b69e02aea97ba3c55f991a3995e0bd314e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4bf207850d33f442f21f5ffce2a2a8f5976cb8e2a20fae0a8339ea2cae7291c4
MD5 1656db9367debfb0b22fbea5296fbf18
BLAKE2b-256 3ee63519ace53aee7582e0f3c83eac0ef2f893f21609f7a0326953bec8a0bd41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 19d472147cefa95a4060f6bb4cde9f013ac2db1eb479a1d3fbbfc46f5b5b5c2b
MD5 06fb6e78c442b84e30aab3d92e489d6c
BLAKE2b-256 35275a8fa9020a8f99e0758699fd3d11defeda09aabe1e91424939377c15b733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b09fca2eb6ea6b6dc2f1d733e3145820ea7d67a9f35dd176fa5c2e42a8935e0
MD5 39b8d68a3327172b846a0a1f029ec2a5
BLAKE2b-256 77215e005410a04c38030e2ae216e249cc15979e3837df7e7510e7ecc27b8928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c18dfa0bea305fc31a0596587148cc4cd3612c41419fad20c07700358929895d
MD5 ff53e731b97156360d9edc435ffffafe
BLAKE2b-256 5c58bba1e7590b577cade070bbe485419bd291c00342319bc91822fd1ca0db2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e8aa8b645b6117baa9824cafc334b62e6f566bd9ec6ac20f2402d60e197d0c4
MD5 a5e0789db40196622607fed2f0b243f3
BLAKE2b-256 7bc2ad4b0a664e808f5a5547b601b92788193c0af603655ce7b2d8556e144038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9bdbfb5a4f841a3456b7297c003242bd107eff48a3f1d5c4e7cf33eb9f8121d
MD5 f4157c53ba86bde712a63bd9cf520b3b
BLAKE2b-256 c46107ca7bdffe1a6b510ce79aed8ddca73f478f887c337f9fa904cf6753a134

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.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.0b10.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.0b10.dev1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d854202356d2d0c462e942edfc0db777ea1cbe3ee54522338dd3c221f28aaa09
MD5 1f4d9f47be293c943f9ae3733a0916ef
BLAKE2b-256 afb389999ebb4222f63b81f091080ee98ed29382b2d427e213541fbccc0faf0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 780aca6e5b43002a96a599502cdad0a81f0d4dc88b0d4032b18517f9c198a3d2
MD5 451e62c780f82db5951cce0a17ece8b4
BLAKE2b-256 d86a61137a35df0efabcf7a68f1a702cd146b3a6acb4657fcd0c180639d5305a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d2e7c272a7a47dd0a540f262370bdb59c6d31fb88dd97c461c9b7d319dca85b
MD5 3a99dfeb1bb478f61b91deaafcfc6f30
BLAKE2b-256 50db73753b35545f065fe8e1606499a88e571a54273ac53ed3e3e16abf66989a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5a06b4d1d316f7dc167a424d626b189f217b665a1e0941db912edd385ac3ea5
MD5 a64ab5e3b7bd6c5545a4f35e2691195d
BLAKE2b-256 ce3f6faf2519ff547dfcc08d8f2314939b99e1123ca3e607fb5da8d161716ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a903bf171b0759396a87b83838e27bcba0f5147fc14ea29c76f1a7dfe1b8e9c
MD5 9a24a77fe5c56309f39f6004ce64a7d0
BLAKE2b-256 9dd4318f4db6ca55992dd8a8c2b8e48531ca4b35dab227f1e89ed015713a3baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0d693f94163f61fe53562c2bf5c737d7ba92a624ca0adbd0d5119cc037d97af
MD5 6045f8086f377f2ca7959206f7771080
BLAKE2b-256 fe3411b03f818b83a759b2cf55097e18b7873eae7ebd000be89a3e0bd21d4e77

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.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.0b10.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.0b10.dev1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7a05dd5767693dce633173387c1ff1a6ed1866aaabe5187bc6b221e811ae020c
MD5 b3670a2eb89ec245caec26d5510a33bd
BLAKE2b-256 e7194872b68a010ff5b36b65a1c7a40fcc3e42717e4c6263d76775818f191fbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 555b3b205094ceebd6674e96f429d64f0b7ee6eefee02aeec67538d778957f98
MD5 339713c45bb7d113fe2f6bd21e80bf04
BLAKE2b-256 57dc31b1c42d8876ab840f8de48704a4513c0f7a08a9fc0d9cd068cc946316a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f7a5c4fa19dd3d0a37900a1cb1178e6bccfa5f06e488c3cf9c27232e43e848b
MD5 e07d599b688ab5c97b670e3ddfedc0f7
BLAKE2b-256 bdd18c850708a95558392108f6f79217c9f4a328112cbae06491a34151fae82e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb5156304ffbb39ac780a6444c783622954fdffbe63aed7954bdafbd930522d4
MD5 5a7bcd49a3f8a32dd923a5556a533efc
BLAKE2b-256 f4d3f0f4398180a72e7271c1ea66305f3f5a2a5d9bb9db1742f6361a7f2e00b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22e7f0bf384eb98f6835866a180da76f163aee825f4a6e8620bade1824279e72
MD5 0b8f5f3f7ea85f5adfee828ab90600ce
BLAKE2b-256 02fcf1509b1c37d425db4c8d678727250e2a5fdad4bcd9d82833b7c82fcc8a81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a566d1190aaefd4de9d5be5337db072685268d2c4fce98ca7375d771ae72a86f
MD5 00ffb999415fabbd57b8993cd2eb76f4
BLAKE2b-256 f7860de85e9addd14851c56d495b866778844097b8e6ccea032d2c03d4887247

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b10.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.0b10.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.0b10.dev1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0531b887cdb0c4773ac2d63d181305f917a63a1701e3e9ca0bb197bd9d000b6f
MD5 4bc60541f7a252f96b5afc7b3bdf279d
BLAKE2b-256 26e0239dfaae59641a9ef00fc15dcbccf1260a2f49796764e0b36c82bb2e1998

See more details on using hashes here.

Provenance

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