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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-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.dev3-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.dev3-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.dev3.tar.gz.

File metadata

  • Download URL: genai_pyo3-0.7.0b14.dev3.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.dev3.tar.gz
Algorithm Hash digest
SHA256 3380c602f6234a686ed13e186b71b4176ae9b66715ba9d5dcad952469e38500e
MD5 fa0fcb20e52382185a7ee31ef9b0dbf9
BLAKE2b-256 438359bc36147ea328246db5501811c4d019820aae95104d666fe4db296e667c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 665982b6c75606b7c3d31e39d50428e7d23328d1c0242bce394212c0fc2b0fa4
MD5 86cc57ba8bb5393722b16e53cb423827
BLAKE2b-256 7aed61af17587798a61a8a71fabbce0ed2b8665146739797cc758729587f5e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36023d28ec4a449f0aba3ca83fc02474568af5839a5ed5f2ef87952ec88e200b
MD5 baa6b0200423163c4412d1645bf1617e
BLAKE2b-256 7131e7fd3a134c2352062f7f8f68355e74ceab0e14fa2dc7d9ef0f970547192a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91d9506fb0c1a372df85c614438c2ec62870253141c39947b7e57582ed516597
MD5 1795a856e688669ab5eb7a32a42e33e6
BLAKE2b-256 9d4e293414dec81e7e8dccfd558e0be4714fab1e388258984a609b60410f0a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b835fd62fd65dd956ef1fe832710d459a45729951440654ff337a69023248c50
MD5 110107ffcc847359c54925c76e5f73ab
BLAKE2b-256 2d331fc282a49a58d849de435d726fe9465142fc4b42cfd06f7fa5bdfae3b40c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92a6ac64de33c2f93955d94aaea6f79d326130d9357ca2f2a1d2fc7918535caf
MD5 b78956dc07e7f8607d7f20744c044d6a
BLAKE2b-256 b73707491409df71c8ae4b3253047a6d83dbdaeac6d94d1b28ef4e646d054bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db486a0803cac1f4ac780b3403677e5d15185d5e8700a7f69be7c7512fcc8bdd
MD5 407b86e63cdb70c5e1fcfcf5a8ef754f
BLAKE2b-256 b276a010e010151312f86c148b218a2f5e05119faba21a4dc0b2b19beacfd2e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b5f443e41db8e53f0b24bd3c2da14d933aca49f0bc836c7cf7833dbe0c189d9f
MD5 60b1a7a6f6cb745b2a337950931e86d7
BLAKE2b-256 ccd9acd237e2d8e5a88ba522ce8107274374cf1bf0cd1c993e186e96893b02a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2b820fcfd672ba0e58df732baccd27f7512d01eb3609aa36ea98224418793d95
MD5 61e3a656fc4facad33d95d82a40eb350
BLAKE2b-256 5fd9d755b8c5ffba646c37b08a2f258cb277e894a97f8b4ade5f6beecc944c6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba308ce318888e23123fc6cb25e324ddeb26021330639d3115d7981acae69cbf
MD5 d35c70812823c9361b72942de2c0708c
BLAKE2b-256 8a88ad357050a9235a07c996c91b87ee6367bb7dbb899dc1dfd3566892d2154e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba3ae6d4b91d427df24000f104b4614724513bef7695d1f0ffeb4a61c1bb2e92
MD5 19fee157b2adbe1843a04e9fe7457711
BLAKE2b-256 a1ef8618a47c4d7388a958f0556ea5ab68011e3c020130cf301587963fadce5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93fc0bd87906dad723007411ab90561e424ae4b3cceafd38b54dcc2d703cc78d
MD5 7c677b4ff6c29a4615c18bc98a3463ee
BLAKE2b-256 ab113b7c0147005a49cf48d8de1f46cbfc3b27aba135c106abe0801e0ed7b9b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e49e982f8e7729efd93e5f1a14cdfbc5f4dbd6b1ee576b7d03e9a2b84c8fb3b
MD5 c696b91c86bca3e30e69281016509a8c
BLAKE2b-256 5f62097b0663d1db352f05c0c31ccb6852456b34d14677cd4649de036325dad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40d0891e7bc9880581329dcf0cdd6ff5f7cf32ffac6c18acc10e1ab82e2e463e
MD5 89108c4c4be03c6814da825d082a5993
BLAKE2b-256 349fdb3aed27651b529417b6088aaca5a0e6e9ce4ea2afbd53fa1e55350492c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2804d7b216f12e960cf5e542ffa151d087fe9571f15d9464e900d67051e0b4fd
MD5 7365163a5450bfbfa697be493247489d
BLAKE2b-256 74a15b6000d94c7b985f40997c82edb26139f62612ad9b959dbfea4cde1d68b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f74bfe996c985e408d58299bbe0629e5c9b71544d7388d1d18aee0ee85922206
MD5 a50e45882319a4a04a0ae7401dbfbe04
BLAKE2b-256 99f32b0be1cad395013b25f9336d15b52ac4fa9e1474ba6c01c415f172885283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d110a28a30379892b60192575564a32eace37753fe7854b21dbf28eb6e6c281d
MD5 d23f2021120bfc5440a04caae0034d8a
BLAKE2b-256 4fe05747d6360441d9133c3d7f4c1a6e4cf88beb4ee778ccb4ad683c275b5785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32effa21d297f7d6776e876099d242cff8c4f82658041ca50c9b5fa38fbd504d
MD5 881e107017e41ac9925711ddfb920656
BLAKE2b-256 8968994a18543828ae77d3e5c63f1e82e7c44aada03639d2de9604e8b09ef747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ddea5b02a270821b2fe84c44d6f9a8650c93845889594a5cb92b4df5c5445d6
MD5 d1ecaddff5a2c0a1578dc521131286ea
BLAKE2b-256 c0d5b8c60f04b451ce686667ed9c99136abae477331fefa3759f4676c00971aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d49fd8c72a847c938ea8e09db1f83e287e1e49b591a33c1d516269de8beb102
MD5 038d0106038bb264aaaa10ae778516b4
BLAKE2b-256 de51e4eb3e69ae487cedd426be060ed3abc67690718a3c218ae3c6c7b86291f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a701de9f972ccfd04a499d8180f559d813d28881b8f59ac878c101ccb625b47c
MD5 a8319e2317c9ad9a18162ac552186a88
BLAKE2b-256 3632ca60b3587e5960f22ea4a9ad00ee2b7f4bccbd0db01227e0279e5d4e8bfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 05cafd5e7e253ff4c6205ebe3172ea05d18ea517fb2692011eda16966d267266
MD5 f5b92d2b1689e2ab4865d105ffb2b6f9
BLAKE2b-256 8731a65f336660b2ed4fcd2e34c3cedd9d1fba32499daac7eb6d789041144359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cca33391619007755774a991e2d9db8ce9ab231e9c21599a75532eac76a99fc1
MD5 7be1078965083dd3569410e9d015ff7a
BLAKE2b-256 b1256fd26120fd6bcf302e3c5e32d363fde03ba809b3a151e3bb8e97b45ba595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d31b4063c99e456c50951f87f15acc7c5a0a9f381b29768c5f6f8e8cfdccdc37
MD5 1d00463ee453d2b5a4abb3420120c1bb
BLAKE2b-256 fbf64c75af49f6dbb46923eaf34c63525a616c18d1968468c239aff975b054ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 beeb82e5a7d92b0057f957ba61dd4f45d93dc551482e9ce2a29cadecb9b74369
MD5 a84341ed96b34100148817c11c400833
BLAKE2b-256 992e75bd750e85466a5426d14cfd0b66be2392df75af918cb4ae37101cbd7618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba577f2725b229e58fa53c26e348bcf9d2382b7f73a0d1674bab3919bceedf71
MD5 cfdc0b66a2e2d44f8eccced335e77b6a
BLAKE2b-256 326979481dba16831bd754491fcaca5afd042d1105275e80bb548ac6a812af89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f74732193e7543bc7d34dbee6606f48c3d98a8554ecdb46c51b64be2ef5772a3
MD5 bfd460b7001ca435bd14d130527865d1
BLAKE2b-256 80ec60105ff1c515e698a803afbf4130b8e3e350bb232d2511e0e66c8920961b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7e4ad7e7242f93917b9125d72dc79a654b06cf3ea13830d08c0aa73c4fc4c20
MD5 d22ff74f745c72b323b7e920bd984ee3
BLAKE2b-256 36e1960e1e33c8af8bbaf3ef7744e3b8a17253f938d4646e18c1bd4905cd16df

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2f75467b7796a4591286c6425ab051dfe493021479d2fb63a1be63642c322422
MD5 6a029824edf4c5e24d9a3546bc52c820
BLAKE2b-256 c2a48d7ce496652c5894a4bcfe7e0f9d586e194fabdc60a6d58a08c837188996

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f804d924c95ee9b5ac33e62a13bf05509de3748014906907b917318754e308b6
MD5 c24b1bc5ce373931ff9f2bfe2e4eca97
BLAKE2b-256 8e033f8e452bcac30ad6dfc6edcd35fab9874acdf93d9babaed4e7258d866a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc3affb33bca9ecc958b2a68f49bf85ec4ae24208fb67ca4fe3d2c1eb437ab26
MD5 e7417b6387772ba6b6b57fa078a42d5e
BLAKE2b-256 525037250dcdecd910c2bbcddc913231df37641563e045238d6ff4c27af5c63f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a4e60f7a468d0bd9c33ae3adc0024780e490685966322104f17c7bacaaca709
MD5 e9dbd75f380d2885db9fbb77efef29bc
BLAKE2b-256 b5799e3b4e70346260218bc6b386661d1bf3a6e917fbfa0008469a31f908db96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aee32c4b609fd8665cc59e17a2ac62353b2ff407b9e4ff665d6e099240db3be
MD5 dac7ac730b0d074562a22ee84065527c
BLAKE2b-256 6fdcb1293b3236fadd7ea7e89750d57074c9e356f179afe072cbc0a065103057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ef14574cbf4a1eb47b4160e8581aff2b88c85a7272b5ba6ed11b544a7c7c86f
MD5 3afe572b0d0153e60b30f09c774bff6c
BLAKE2b-256 7456b549ebcd3fc20176a59170d7f95c72b58e80cab53b70afee7bc4d1a8d4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 83f7fada7ded43d80f7c941fee4b4d106962c0d364b4d11db6be4e979c380f04
MD5 8861fdb540ef8b817822b8aaa3587856
BLAKE2b-256 66ef5f894c5643b91ced13db0b11379896a0010b17a573d64dad8d4d2381b413

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 07744c5216ff2296f65b5cdf20c7a9a2a8c623c9af566836337749113db8159a
MD5 5cfd7c3d83c9b9954e90bfc39df1e63e
BLAKE2b-256 1d9fd6475779919b8dc26294ac4f3a7e52a3742b223605a59db441e3321fe9ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af0958e8f15c729085fc0692ba5d22b2b16a05ba74e3b373044bc71247b6536e
MD5 f7b39d3fd8992d55ffdf8f3f8dc41b0d
BLAKE2b-256 d52a28c5dd3e43873bbb8e4b50022dd0686f68c3b09745e37cca5dd5d5a14091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48e5e218b22e88916ad8d1d01448e0b8a3b8afe2d86dec7a985297e82577caf7
MD5 0fbbf0e55fdafd856108b05f1db382c2
BLAKE2b-256 c0bbf31fd6c24f941f5e4fcfee5209580c8796f3ab01203244a9938f0c28fb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c97ddce0c36e4bc868277e4bf080d530729e5d48ab8d6e74a9b004ecdcdb3b49
MD5 b5266f0b14b1876b7ec5c18e1eafe3f6
BLAKE2b-256 8fbbb0f895c2257682a500d5540b4f890a65d284caa6e01fed41294fb883d198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29ce9cf31c8fafb5b790d900183a7d939787d8c074aaa638f14b62fb4b234370
MD5 c348023bf4fb46ec0099556bbc0ee204
BLAKE2b-256 a13b92de5b1cf2068967173c57e75cefa86b023c99f989da535b800fadda9fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b14.dev3-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.dev3-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.dev3-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b6cd226a24ab5de24c31e60d4bdc1fc3b24316487a3940f7badc3bc1ec7146d4
MD5 00e37a0185012f910839bce0dbbe2a9a
BLAKE2b-256 c2a26732575ea3bc60f67c61fc2499501226b25123fc860d005ea7af0ddffe44

See more details on using hashes here.

Provenance

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