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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev0-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.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b10.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev0-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.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b10.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev0-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.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b10.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev0-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.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b10.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev0-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.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b10.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b10.dev0-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.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b10.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

File details

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

File metadata

  • Download URL: genai_pyo3-0.7.0b10.dev0.tar.gz
  • Upload date:
  • Size: 48.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.dev0.tar.gz
Algorithm Hash digest
SHA256 9dc12325ae99a0c247aab3395ad8f10abb3376167e29100bb739e4e4ea369705
MD5 155b80d83bc14248f5c6e526f4ac258d
BLAKE2b-256 5dc6193c81b4e21e96755280e98898fa81cbc5432d793fdbff86b58c121de6be

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a81ec80f983f736b135d93785a7d142b4c9ddd494b96cea1f1e93405c646ae6
MD5 97f1bfd9ff4ac1753e891e56e6d4a970
BLAKE2b-256 b20c9121756b97106eeaf9c4085f2b84a5de39bab5aadb328ba257c9da82830d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 46eb4d75ef550af3b67969d94ce648c96437e367e67c3963297fd1b3c7d654e7
MD5 48bfbd2ce31f9e7cf419b11e263ee067
BLAKE2b-256 4729dde5d975bcd24ad66e0544444929feee6d0c0abe7f285e237550bb69406b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02f8d2de0ad39655fbdd6ac014258399f68c446539efde32355c106a488f988b
MD5 e165a64c19a847e615313f6d5fa18852
BLAKE2b-256 1f89c7c47cc37b391e6bcd949d571cbc332347efc11597b69d9cf683ddcb725e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60d58d4d7ca6849446a6cc6665a28aa624a72140bf556b0faa2189815cad568f
MD5 427b689883757c8e987894c22eb1cecd
BLAKE2b-256 db59d55e1cf55f648e834ae5cde5df0cafd66b57f59a82742d05d15ce1ed1507

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 707e0c2f707136ef272aaf7c1d696fe36341e0f7405797126c02bd224938a3ee
MD5 f787722179c78dc2a1b0c8fecc7d5f9d
BLAKE2b-256 add757a5aa087b31ce327539ae6b7b49479a421b6645d7fd2b6b96e8ce63b351

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f767441f78125ce7f780833ab805063b2d31c69af215ab74b3bdcb1a2639b7bf
MD5 8c9b4e2dd8a8b28ac011d5a00e8ea2dc
BLAKE2b-256 c5e7c7cd53e4e80c099952614ad9e590db2ab71e2c024ebe1058e2046fc23375

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f59eb414d5086a1eea4974a2b959a59cfe06ce11087b9ebd3960105911ff3e19
MD5 6015a77c4cf9f1907d9228d830fa6d08
BLAKE2b-256 421d3dbdd174ccb4e7b5b12c62a7dc48204d6af892cd0c431600b71ae652d060

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1eb298c453eb823cf2b9744fb06663eccefb851aff9017b057d18bcf1506a38f
MD5 57330a40636c4250a04253fed4623601
BLAKE2b-256 3c9629bfac0459a5b496d00f446f0d0304e3450d7a80640b8f73847386470bb7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 183f7dedf4e0546b94e7e7415633a5a6d7a0823bf59e566d1c57fa2a9dfbb09b
MD5 07edd9cf2309858dde28ba1a3753259b
BLAKE2b-256 98b04cc59de6eb7d9263cea45d4e87d43a00653fc07ce754789d8cf20f0bf856

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c1e2dd31cf8794d082c213f26b3862c1e0ec8c8223448725d64f32c2082c939
MD5 0dc2c4fde1c24d079869b7f1bc425739
BLAKE2b-256 6c55c171bcd7e8d55f1b8db8334370013e2be30b23d4825427e831433975d6cc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1bb3f8e966f2005fcead98c5d7da3854b35c7b8d6694d82dd6696f21da54fe8
MD5 7b3add83b3dc5c382980a38931086313
BLAKE2b-256 652b17023267a4e86a32966ce46d3e840444f262d9b04e86a34be92c9c2eed3a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eab5050f7e52394d5122d8d94fced7bfac3475294b65a77afdf1ac04aeac7f4
MD5 5051c9892c49cfe30eaf54ea3eb996d1
BLAKE2b-256 536904ddf93a3cc22493b10ddb956c15f3f026a6fc49aa49467c1fa2f0ec1374

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2156842533d4be4294dce5a735a149299e1145f88b8bc10294e7cbf20f0d75e5
MD5 4fd98428b26250250307bb2c2861b0ae
BLAKE2b-256 08ddb2d32734493f796d6c72f243b1c4d3c65dc107b27679aeeeaaa030336e74

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cb51815d98b8b35caa212d73cdee5ebd995cca7bf9e1b7c73655edaa5c01c6bf
MD5 3f8185150ebc68686fcbaf181b7b61fc
BLAKE2b-256 09874d4a6abcf20f272e93c5029627ae81609e2105ba6e61c688de3dbaa11afe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c3899a2a13806ca2f9ec0709b1a2b44b215f1fac4b74507ba359bed41775a433
MD5 456bf383b26c6e0b84cf35292a205f25
BLAKE2b-256 5c68dd3afe4f84eef01fe9c42edd1751884aa047c1eaa3e104e28a3a4fa7aefb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83bbe1ac06215418f8a441b92b55d12c3c59b5b643615f2b17742ef718d40103
MD5 58d5d1d5939fd061e5375d3d25569edd
BLAKE2b-256 58f5e65a707afddba14058612845fe79fddfed1aa99d07b2ea0b3a452b3ffe89

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a875a52d922c8b8fcb3c5ed799385594920b1e3029a21b02611a0eb6a8c72752
MD5 650e4d10a0e3207f79e0e0e04c087913
BLAKE2b-256 c57dd487cac515289dcea731cbe4e90a675f6f9af1e8c53dce4a5427e3634fc0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 690707d712969d5f1a52b54f4e005e67737d929c6fa797b3ce39c28bf4a3dc47
MD5 729f46ac23d561851a6d07b63a33b8f3
BLAKE2b-256 f9d034b58ce44c67a11df0b87f14133754e703d5d662bbe3fcf59123eb919751

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dec09796754d9f44336963f1211f413d4712a4076d6d0252385dee7e82cf1cc4
MD5 04943c3c7181ea61f27e74842f203550
BLAKE2b-256 872054995dda488c514118d0c8999d9da83e051f51aaa96c20c349db72ac0808

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0ad2b62186e050da7edfb4f5a1b7da9e8c8ad17d53f313d4e29c156ea302751
MD5 5cddb78796d24e51ea14e3bb48ce69e8
BLAKE2b-256 919ca1540bfac33432319a96400bf1fe30850d1b7a2e31ced85141bca497f61d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fdbc7647c856c27becf3aa391bc4ef3267b8032f503982cb1d248fdad6b5f1a0
MD5 f9accbddfe14496bd641a6b5cf1d3d0d
BLAKE2b-256 8e12933242d65496fe8ff28789f03c027273e9fe22f929a9b84623a0a934bb2f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b455683fb067804286c246aa2b4491cdfd3d07a439507a4524e596722da5e581
MD5 6cb4597358c1002f2a7949176bb96ef4
BLAKE2b-256 e9adfa01379321e6a9f3ea5ace6453a16f9c8b69a611b729a068dcba442006ab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 681ba81ae70810f126fb24bb64474aa95a643b0387f6063e56b2add4a203c109
MD5 3bf54583ccf94d0b2f5abf0d0635bc46
BLAKE2b-256 00c4a138ae234b20850223feafa4cd5102180eb9a63b071c9c8b1b940e075f66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0aa8a134f7c1039b4ea5de3a145e39d3cd3df8e9625a07f5d033f4b7193f252
MD5 8fc9c4cc1a371a896aaa620b1ff562cf
BLAKE2b-256 950f9a66c65b3674633f5fc2cbf42a83d9122c73c1c7ee23a1ef07256840f903

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4463c54bf10b37c9382996bcd5d480e521267e5f17a5f6fad814625772bbd1bf
MD5 12b1510c2c016ef4c3020fce153b188e
BLAKE2b-256 43c976afdcf86a527e43d1e2076757fbd7ddb86378e21a7ad3cb03ba23f95e86

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4be0729b03f13745376f0a85cc9cdd6548d42246a8b7e31d55be4195c3bb96a8
MD5 b1c4f3762018bdae26291b9cbe2b43bd
BLAKE2b-256 d69cb451b85abd6d232c17fb0fed0c84ffe2feefe30a51e72f1ca11190b3f257

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 075e0fb7461eed880d6c1dad95cdd552c0ec2bf2139196c5f9718c6a9e0f49c1
MD5 22b5389b69c9d023cea7a87900eec471
BLAKE2b-256 a7d25de8b6035fea6922e65e0b3baee9ab1b02dc9e8e29f8bd452a9ca3147da5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 eb06e8e417da566f7dee1cd1be29d05aa8191211f4054afb9de61c638001b8b9
MD5 769548eba984cbbc89d355224e003229
BLAKE2b-256 2671563945f58f6eaf08debfaa617e15fc9f52fd94614cb6edad83eb21f48220

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2c61414bb00c76eca66d7bbcd54c64ffd36a4038a69a67f7a2cc1db2cf271f9
MD5 e8ccbd7a57441f50617fdb7d9a8583ce
BLAKE2b-256 04a296137bdd3813d60881d1240dba834d522e4cf21bfbc7535487fb8410acaa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fae14f4c7e188bdb5570e3169cea5c30c461b74886657dcfc0ea8e0248d77cc4
MD5 cf0e47abddc2471ce27aedd67aa4a881
BLAKE2b-256 89850388789ec212cacebcb52b0adbc0f0da4e45ab9acddaa3f94fc96102f108

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa86dd2402d168c6be7a374442b502a9489a4664c0e9297ff37090446fd02465
MD5 33b4508664985fd2870484e8ebc2a487
BLAKE2b-256 02d2e3a29f10285ea369f61dcc1545328faf565d81b864fe9779839c84f9a598

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c953815cb76ea824ec5d448e8f39324df5b88248dafa25bc3c524a60830f151b
MD5 19bc519d347403943f0ba27bf052696e
BLAKE2b-256 d9c8f44cfb7527175a2fb4cd9f2232e08f57220c5762524b79e159fe96ac039f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cca90d5b52ab81ff9dcd16600588ea7e82b8b07e2541a339d35421f501264ec7
MD5 114f01712019281da5cdf274ded67f2d
BLAKE2b-256 aaaa079d02ffbd117f54bedc65f0421e0171aff7f5d481c8ab372f4d9b00cd0e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8eebae068a7bdd2ad2a6b1b34b6ae85fc7533599201316058249f3527c58563a
MD5 331fd5374b6fed1fbd4a7fb20d307150
BLAKE2b-256 5705d0f3fb40597a0e304320bdd38e4d30c58b595d098fe62b79758770af829f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b466193ab92c4cb197891a9429e3a183f8cf9a0ca09bc9622cf59dc0460c12fc
MD5 861941b222f04db158fa0641c271455c
BLAKE2b-256 6f391c0401fe4e840d22011e3d4bacbd96329219887d8b4a2255fe96790cebb4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d141d9fa05f2201ef42db72f2d6766caef119777654f8a78403f3e9af636448
MD5 f906a97602cf43d89986b75b672b098d
BLAKE2b-256 697018c1c0c55135d2c380fd164301c323f41da6b94692dc367d1463e0326078

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbeab93a4325a667c649e5b544850d6fd615fc4d4b01986c3d0c18d120d4db3e
MD5 080b1ce6d3ed43d7ec4f4e5b35437f9b
BLAKE2b-256 9a57755778379ec1a93600311055e59058f3439a67e4e15aaa043e1e28b46f64

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47a1c7ace9f0a6e72980d7efe0cbcc285eeb079f4a5e7586b0fc66dfb0f5ed93
MD5 e1e721d0f82044d79e8e211de3382bd5
BLAKE2b-256 c327fec546f18fab311c683976435c2f7ec5fcac2fad17719c29e64315b77008

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb86d3772ecaaaff9faf3727cb0bad4a513f467d15af3efbecb129a34af6208c
MD5 55fb6685c4d92ee3c9d3e2d15d9bf3d4
BLAKE2b-256 43ddb58b2c6f7c3203f1cbe1c8055346e9058559a8db2b3fa77f73a1d80a59ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b10.dev0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3ca8e0eebd4ace5c7fef02364ac2a6beab3e31fc37086f59f4eea3671266b0b9
MD5 e5aaa52dc527bb372d729f16efc1775a
BLAKE2b-256 1cba09b9223d5097d290fd681eb003ffc184bca6c91ad9bd9ee7052365dc3857

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

Supported by

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