Skip to main content

Python bindings for rust-genai

Project description

genai-pyo3

Typed Python bindings for the Rust genai crate, built with pyo3 and maturin.

This repo uses the upstream GitHub repository for genai directly:

genai = { git = "https://github.com/jeremychone/rust-genai" }

What It Exposes

The Python extension currently exposes:

  • Client
  • ChatMessage
  • ChatRequest
  • ChatOptions
  • ChatResponse
  • ChatStreamEvent
  • StreamEnd
  • ToolCall
  • Usage

The main async entry points are:

  • await client.achat(model, request, options=None) for a full response
  • await client.astream_chat(model, request, options=None) for chunked streaming

Install

Editable install with uv:

uv pip install -e .

This builds the pyo3 extension and makes genai_pyo3 importable from the active environment.

Quick Start

Minimal async call:

import asyncio
from genai_pyo3 import ChatMessage, ChatOptions, ChatRequest, Client


async def main() -> None:
    client = Client()
    request = ChatRequest(
        messages=[ChatMessage("user", "Say hello in one short sentence")]
    )
    options = ChatOptions(temperature=0.2)

    response = await client.achat("gpt-4o-mini", request, options)
    print(response.text)


asyncio.run(main())

Minimal async streaming call:

import asyncio
from genai_pyo3 import ChatMessage, ChatOptions, ChatRequest, Client


async def main() -> None:
    client = Client()
    request = ChatRequest(
        messages=[ChatMessage("user", "Write three short bullet points about Rust")]
    )
    options = ChatOptions(capture_content=True, capture_usage=True)

    stream = await client.astream_chat("gpt-4o-mini", request, options)
    async for event in stream:
        print(event.kind, event.content)


asyncio.run(main())

Examples

  • examples/async_chat_basic.py: basic achat example
  • examples/async_stream_chat.py: basic astream_chat example
  • examples/client_overrides.py: explicit provider/API-key override example
  • examples/gemini_env.py: Gemini achat example using env vars
  • examples/gemini_stream_env.py: Gemini streaming example using env vars

Run The Gemini Examples

The Gemini examples use:

  • GEMINI_API_KEY
  • GEMINI_MODEL (optional, defaults to gemini-2.0-flash)
  • GEMINI_BASE_URL (optional, for custom or local Gemini-compatible endpoints)

Non-streaming:

GEMINI_API_KEY=your-key python examples/gemini_env.py

Streaming:

GEMINI_API_KEY=your-key python examples/gemini_stream_env.py

With a custom endpoint:

GEMINI_API_KEY=your-key \
GEMINI_BASE_URL=http://your-host/v1beta \
python examples/gemini_env.py
GEMINI_API_KEY=your-key \
GEMINI_BASE_URL=http://your-host/v1beta \
python examples/gemini_stream_env.py

If GEMINI_BASE_URL is unset, the examples use the default Gemini endpoint resolved by the underlying genai client.

Layout

  • Cargo.toml: Rust extension crate
  • pyproject.toml: Python package metadata and maturin config
  • python/genai_pyo3: Python package entrypoint
  • src/lib.rs: pyo3 binding implementation
  • examples/: small Python usage examples

Local Development

Create a virtualenv and install in editable mode:

cd genai-pyo3
python -m venv .venv
source .venv/bin/activate
uv pip install -e .

If you want stricter reproducibility, pin that dependency to a branch, tag, or revision.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

genai_pyo3-0.7.0b14.dev2.tar.gz (49.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b14.dev2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b14.dev2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b14.dev2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b14.dev2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b14.dev2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b14.dev2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b14.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b14.dev2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b14.dev2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b14.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b14.dev2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b14.dev2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

genai_pyo3-0.7.0b14.dev2-cp310-cp310-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86-64

genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b14.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b14.dev2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b14.dev2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

genai_pyo3-0.7.0b14.dev2-cp39-cp39-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

genai_pyo3-0.7.0b14.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

genai_pyo3-0.7.0b14.dev2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

genai_pyo3-0.7.0b14.dev2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.3 MB view details)

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2.tar.gz.

File metadata

  • Download URL: genai_pyo3-0.7.0b14.dev2.tar.gz
  • Upload date:
  • Size: 49.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2.tar.gz
Algorithm Hash digest
SHA256 84238f9902eeee2fee5f3ecc09d222ef727ed43fffbf464a94742c3ad2822dc9
MD5 916498b10e16aacd6eb2da538f7dfe17
BLAKE2b-256 8e815b010ca5ddd04106da6706bf3ea2b338f872559ddfbe0084bf94fdd41c72

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2.tar.gz:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 02c43756aee93122370f8c213518dc21dda3d9df3c2d6671b302d788e25c691b
MD5 4dc07aefb634ebb6a6dd396f60fb374a
BLAKE2b-256 7a6b5686d4b29698f45e1fd977cf1c95775f388450eb06733310ed7833c3748f

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8daa64e70cc89548aae21405d51b479026bc5c0ffe62a49a75fee77751b3084b
MD5 f80ec6b37d6e1d71685a0a68e68cf48b
BLAKE2b-256 eee5cd25d307c694a48d78afbaa34e860a59a03666aff3b20331472feb01e1b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp314-cp314-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94a505291c3de4aa62fb389fcd9548cff1fe043731001b714ff0112a2955672c
MD5 ec5955d19232ba571a74651a73ed6ab6
BLAKE2b-256 8a1c9921f64f470988949a443ab7dba3b7e2c47c50007e5abc56056d9f7250c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5114462173fb1c3fa97ddf6b0ca52ac113dc47027cc88aed6592ac04edc5bba3
MD5 5b52f807cb32f155f9a2258806c4ebda
BLAKE2b-256 f0bf1c0514282c9695a634bd42d534f24e384573e54e30b699ca7e89cec606cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c2e893baa1afb3b1d83ee1a01558436bf463f73e615dfda518cd3611a392dc2
MD5 a3ba9fd408d0c21f4e1006f36760436d
BLAKE2b-256 5d413aba357c428b4184697597ee61be17c49bebb1536630da79ddb5676702dd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dbabba43b7df74d6e18496d0dd948a17e7498a691950f3af6523402965a959a
MD5 32e96bd93a2ac09353fc41459784d9dc
BLAKE2b-256 a4837cb9f1c3ae679cefd14352c78122f38eed71658265d67d108446efdb613f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 12374f48241ddec7d8bd2c29f8f9300c021379599b419ceb5b7e368c095cfcdb
MD5 08a2386e842a228cb87d1be9e271c601
BLAKE2b-256 4cd87b12afd5fdc4e7debfcbe1001f9c61fcdca96aea3d8549f8b450ef0d521f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5ed10ae2657d1917d20e513fc3699a550227989207aecc43965855c68eef28f5
MD5 bc9bc8c86b0bb68c22015cc8acf99507
BLAKE2b-256 b563a007eb0dee480b7fc9136f75471f7646e4eb02c295c24bc8ab1e9312e613

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88309010a847c1db3cece716a3ac9d75b8cc7685270052b154b2ecefa946a9e9
MD5 2cd1949f9b8a09161e0144599108732f
BLAKE2b-256 8e482be09782aaa3eb5071aab986c82fc9fd0fe229e92088c36faeb134b52124

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e132f3dc5bceb612969722f55010b51b4c07db9efdef33d2f8d523e35297b20
MD5 5151687f6a01aa462c40a8add5dfaac2
BLAKE2b-256 275dca4a2d6ad88ecc26730a0dbfdb5fc784b3878e90d31734a25369d4edb727

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec61259f423bed5b06811a05a79c4f7617be4d785a636bcd2bebfb3dcbd1b4c3
MD5 34a9181936515b3f523f065b477bd915
BLAKE2b-256 adbb39d530c54a3b3526e7e4964dd2dc1d24e18aa7ec81c7e1afb7431faf91c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae5b9779938bf401d23c25d8808589938cf9e78cb88824b9e242caa001d3027f
MD5 624620893bb28ff4ffd04ac4ed910d3b
BLAKE2b-256 c09e46ef8b25df9e7fc362097eae370bc3b80f93e18c803b9521785acb2b7098

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00d88ee57641eb8fae0e17018fb130252c985008ee082b465fcc82b51715eaa2
MD5 8433ac0fa956c382b4c73a06ec5d5a25
BLAKE2b-256 dbd76368cdd69fb433061e0572114410bcd34e101df64f6a0793a9fd7888f243

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 bede9a9e804e24c947792a4ffa86091b8357e5ccde6da14661ce2aeff3d2348b
MD5 b643217777b579991fd57da76d1b2872
BLAKE2b-256 7a363b21f1a5b1d5c991112f9f614edc605b87238d699d4b49578501031bc446

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 80dcf9db8b8804345c4954731e3051fd7324b60fb4cd67f54c4cd6307efe9b87
MD5 0b728a6e916b9279304d27cf94513b36
BLAKE2b-256 4e5028f7ccb4998578bb338017c14a123369def5783d097dc5c47b162dcab1e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7ddd256b463e8bf7c7d88c6f96d2804d43154aa59bfa62fcc9f01c1fead5e14
MD5 090b31c9a4c9cab38b2c53799a07ba05
BLAKE2b-256 ea87858eb5e170002a7ea0098d36b328f53b4626edc59789d36174abf88270e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4d10c2f2268a7344f87d8faac55760d9eafbcb0d4ef6e2b3395896ae7f19b23
MD5 b730cf767f6cf6cbf43ec47208bd5598
BLAKE2b-256 fe1e7322a00c1872c07eefabd58b7633e7a43e0c398f2c1369966bde3c2a5dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c63ba25fe77346a6865c95880e0233fbfb8efc2c2ae17e5149b5b9b3db43bf3
MD5 82ad85a4ce1523be29013fddd7cf7bbe
BLAKE2b-256 16ea986696e002847587ee9e431d5e4926452d09e7cae55832f23b6d7613fcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52276ae02e95b8b7f0219e56413c6625a7e6dacb2bfa905b6b568d789f04e4af
MD5 5ef3bed1c038e4cea3483d61d9715c18
BLAKE2b-256 b1ebab1c93418306b39bf941e3ff0f56d2d53640e0c8d1e36751b81f8ca3e1a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c05d48edde21c8d9a4ad78a89227bdc170cee158329dd99195b46152736ef14a
MD5 08db5f9eab7ee861cee1793e919d6163
BLAKE2b-256 0afe6d233df49b45abc67da3ea68bc0a69e6a051075054421bf7c241f21aa17a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f87db5be84c3b63b6909b3d8504096425f67a3fcfa0dbb50f5eac5f93501b30a
MD5 d6806c2434b77c9f5c02ceef8297f5ba
BLAKE2b-256 49631ad1f6bfb94f9ad31cc913ea6e82b7e0145447c7b4e7129b404c3232dd7b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 06b478aee128fdc55a66ea1917dcdb4500a377fdafd1ebeccc0a3c4153976008
MD5 d3125093705377a38efc963d03c18800
BLAKE2b-256 dbfdcf9ef4c7cec0b587675f2c764faec78b458605733d7b8c464996500c7d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_arm64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 416d64b6d6ea269a98a7efcbe71459b21e06044acdecc1bdccf7ed57f8e08e61
MD5 e7d6f267bb8b35484f0c06e88b92c916
BLAKE2b-256 dda0f3a4b2aa9d7f12d12a861bca373626ddf9a8a449e893b05036fe131860dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff9ea414c1ba91125329120d85493690f4f914149e23abb89f3058ba20b0df8b
MD5 16da410f9f6c90ca0c8d8927b984c3f1
BLAKE2b-256 ed60e2b7dee806fadbb647fe27a6359f9453ca7dc965aaef22c90346b93b3a7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dbdaef8a8b7cd4aa57ae826f09ebc4cd426f98ad105fbeb2cd0243e1c28e686
MD5 9890000097ff4ff1371e299f0a8f2a67
BLAKE2b-256 7af5beb3df9cec6a44dae6293e7c21f17f44509cb00169b5e664f6d1d23e5d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9eef67e50653fd827edecb8f71c2b10926f8325ad424606b7b2364cd18ab9cf8
MD5 6e46e0b14be8c0d65b37533afa1aeef9
BLAKE2b-256 466956e05dbe65cd502ca213627a8debbc4f5d4a68f6695600405a516fbe99c9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 756a986c7a49c0b5013f4f89f8af32238edd208f35adb14732b9f53fe4b6e486
MD5 038cfb20dc35926fda63b15d742633f5
BLAKE2b-256 ad48841bf4f10a5a957baeba47cffa45e9bf1d170b9e45755c5e66af442851cc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8fd6d1cb123368f59c9b62bc0ef133415bf2dfe9122b2ea380fb115fe8a4b2f3
MD5 2106e4db44806bd02060875bf044c8e2
BLAKE2b-256 caff843c20f38f3aabaac2a288a2d6569331851a9587fe9ba67f2b8e9ed2450f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6b5fa1ca86f92a52238eabb8852f8a539a326f7469620d2827d44dddd928e08
MD5 6b643e77093d949d63d55db77a9860d6
BLAKE2b-256 a93e6686dcc4d2097f558ee623c0390118f661618e3bb01e58e7af7d05a237fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a9ea1bd736a6c708565eaed199b7de50a4cd8942f5bc7a31b54f61357e4e7f2
MD5 2a23be8efd157bb29c8776b66def0c98
BLAKE2b-256 1899849d5eab27e27872608340b875263119297dc32dfbd5144e52b8f9301f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f18fd7167bd8d682942dfe7a87aaf5b3d9fb82c13ecdd678149138a0e933d921
MD5 47df76f96c6db89c99b2a627bdc4998f
BLAKE2b-256 f1bae212a443dae28c021be41e3f8132b170d159e129ead7ebb8f37297d2a04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 148e287d41084a8498abaf5955cfb7abef0b3e600c2aa984cb74ba90ff6b3b55
MD5 7cbd2e8eb69683284bb8ad01cf99441a
BLAKE2b-256 4bc7c29f48a7477a1771d94063007a79ae4a1c2cf81843db38fabb976ae488a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e423993fe5fe484aa36d20e8ef6678941aabfddecabe8746a46145eca5995cf
MD5 09f7fde0d6e532f7da751b46aeff91bf
BLAKE2b-256 654e1bec06dc3ae6a14aaddc3004fd693a5dcb99603230dfb41adbcccfc6d89c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a115da24c534b4c8627f7ac01268f7dcdca30ed9839c9fbdc01834ad2226536a
MD5 ad420933d87e533659fecfde981a486e
BLAKE2b-256 c6056d1dea71a19d821c68e9bf46fe7ee71d8aefad514c2a98f0e9a9e3a9c8b8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27ceb00bf14557fc3cdfd492c0ca02e1bc383b0f0ea028bff4768ac235283de2
MD5 9742f9da359e75da7fcae925f4e0f1d0
BLAKE2b-256 6bbe11d3ee6a0073946e1812aaa986dd31ce8ecee02f088687e23d86bec3fc50

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp39-cp39-win_amd64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf86c73aa4961fa8a412d8a87df69728139ecf243e38415e9d49a5585f15f17b
MD5 6a1ed1aa93a924888eb9fb9a9336b2a7
BLAKE2b-256 e207fec47c96e105f2729fe620ca92bb72681b62432675d15491232da19e57a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a632eea535854fd59bdcc4fb2c106639ddf55ce18c870545d4451f127057f9e
MD5 ceb5b79089011181802bb084e2f4145f
BLAKE2b-256 e117f8e2bd4157a61e97d9f0ca0fb1557e2dabaa5ded48dba8e6000f5642beae

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff521bf84ff8cd85d4d343286ebca49db303a375ac1a38c8366a3babbb9116ef
MD5 02bbf9e0b49c153fedfd06acfe795d5d
BLAKE2b-256 2834d783dd49845104101eb371695f95a5e73f12a10e5452b33b215e99a0036a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19f13713de5db0d62ff3bdb1b6a1d367e16689db95ae450d12b85f2463c30a41
MD5 82d3d028bd73d42daae008f5cda9daff
BLAKE2b-256 00ea48a754ffda7bc2e7b8b2dbe61a18ef71c0f81e641c79fb77dd24b7f1814a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

Details for the file genai_pyo3-0.7.0b14.dev2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7e59e9af8a8e2bfcfbd1f360d7e4a8d8134366485b4fcc359291c23dd8379b0c
MD5 9a7d3a3cded7b13f9ded1588e36e8c83
BLAKE2b-256 8f08db4db4dd81fb3ad7d405825bea948d4a8cfba599f20333518c386f540bf2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

Supported by

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