Skip to main content

Python bindings for rust-genai

Project description

genai-pyo3

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

This repo uses the upstream GitHub repository for genai directly:

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

What It Exposes

The Python extension currently exposes:

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

The main async entry points are:

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

Install

Editable install with uv:

uv pip install -e .

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

Quick Start

Minimal async call:

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


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

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


asyncio.run(main())

Minimal async streaming call:

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


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

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


asyncio.run(main())

Examples

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

Run The Gemini Examples

The Gemini examples use:

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

Non-streaming:

GEMINI_API_KEY=your-key python examples/gemini_env.py

Streaming:

GEMINI_API_KEY=your-key python examples/gemini_stream_env.py

With a custom endpoint:

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

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

Layout

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

Local Development

Create a virtualenv and install in editable mode:

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

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

Project details


Download files

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

Source Distribution

genai_pyo3-0.7.0b15.dev2.tar.gz (49.7 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

genai_pyo3-0.7.0b15.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.0b15.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.0b15.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.0b15.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.0b15.dev2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

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

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

genai_pyo3-0.7.0b15.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.0b15.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.0b15.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.0b15.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.0b15.dev2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

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

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

genai_pyo3-0.7.0b15.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.0b15.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.0b15.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.0b15.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.0b15.dev2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

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

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

genai_pyo3-0.7.0b15.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.0b15.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.0b15.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.0b15.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.0b15.dev2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

genai_pyo3-0.7.0b15.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.0b15.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.0b15.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.0b15.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.0b15.dev2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

genai_pyo3-0.7.0b15.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.0b15.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.0b15.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.0b15.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.0b15.dev2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (9.1 MB view details)

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

File details

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

File metadata

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

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2.tar.gz
Algorithm Hash digest
SHA256 9338762882cff552f03fcea1bceb3160dfb08557a9b6cd07628a54ee786d5dbd
MD5 dbcf131d89cf9058ebe99ff80906fd2d
BLAKE2b-256 6fe7142415047168f94ba8678ccab2ec58ac2703391199338c13ad0dadb2d0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d02a4b6cd701c607280296ccd6920540e8f3b2f3727347a2928f645b2238280e
MD5 9944897627dadba1c7fa6332ae7a2c0d
BLAKE2b-256 49498f2fcb6a853bb165c3a52ac5321f5b5e12a7917ac5c4100e25f9933787a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3976dd6c865b4b99e8f3b003d1ac8b710d79608731120b0a97a4600d1b4b33df
MD5 080215b8c59aefbebccae1f1612e8865
BLAKE2b-256 21226c1a4369dfc036c782fa4b199e330ee44449a272b742616f2d20de846705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e321c6c835c389f40658fe855d1959caa21deb558cef6bc37d7f9f5c4a1a5f67
MD5 3326e50df628dd762bcbc19708da5136
BLAKE2b-256 ac8e8a597a4f827eeb9d9928b129b7de19d36f54fba236d7b56f1140b8477abd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2694a3cb3376adefc6351a789d1e8e519a33214967f4ed378fb2df1602ad2a96
MD5 41801b83e9348abfbe287ddaa407078b
BLAKE2b-256 1b302f9409703e8863985d372f80d21d719d217439b3d460a1a5028f92f4290e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d036d12c11c4b06f724a373f30d9bb5dc0952e233e3834cb2cf814f4ce1f0a0
MD5 f9128da68479f2bc228635dc5caa9655
BLAKE2b-256 a483920e9050fbcc9c4107085678e5c72849c27ef5c9b8e3ce18a1b75b369b34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e6539ba9789a7ec9e24da791e48acf0eeee1f5637b91a6defe8d3b84d1c0637
MD5 9388e009a2c9233304877d917fb0ddde
BLAKE2b-256 10c61d7e96c0623209f02d9304ffda7b38118041896a9df774ed201100a87ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.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.0b15.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.0b15.dev2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d1736f1b2466c7c71c5deb22b089f3bf91523ec88b45a8545da1132fbd1af932
MD5 407689b4577f5f806eb999ceec46d388
BLAKE2b-256 02b3c19a445cc5140fb00b56540fd347364b87cf085eeb26fcf9fc5f9072e3cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d4df71841f30f42f460c8ad054cc7099314a52724451310bedbe5af2ad1193b4
MD5 39879b8afe4c40dd945e808dad314d32
BLAKE2b-256 edb7c88d8fa4cede8baafd797f13b21a1746563db1bfb2d668d8e9f30515dff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ac5628bfb2bbbdae96045e3fa4712c49dbe93491f6dae260354ca2115b297a6
MD5 91a310e85ae204a094e15b2a23e328ee
BLAKE2b-256 4eae96d0c8dc8b764e7a5cbdeac9d4ccf5b4b803bb933e8416880cec3fdec3bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f478bddb2b58c099189dc176e6e0655c3244b350691443626c5af359e969dfd9
MD5 e5d9e61847328cdee1406c2649ace2be
BLAKE2b-256 a1ac3364b9d4c27a8a8342acdd411dc49a498420b9a51acd11a7836eae26cf1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21815edf4872c1d6a979b1c4d976becc1ce23e9538b4050fe2fd95b2c2d2534c
MD5 961d1ff4c65e9775cbfe8c4867c17101
BLAKE2b-256 6d091d15f6c3cdb384be9e5073e5bab79775e23db61e8a19176f1e39b0bdf990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cb47178eac9c7d04509411ad5c5a37e5b74846d7400ec67aec78a82fb69fd2b
MD5 51b3e39684445305a0b5773b2ded4784
BLAKE2b-256 1c345d3b642cfcb8249f73b5adcfdaf6641f123321c891ff89df87bbe43ad4b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2352f96c12ba1b29b715a17d968b39962ded4f317766cecd4ee536e8eadd36b
MD5 bcb9175531050bac5623e24c7f002ceb
BLAKE2b-256 8b086965ac74a26d1e936423b031538f513b0b5546d44edb6f5bbb0df5f0e207

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.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.0b15.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.0b15.dev2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e9299824f91557450fdbbfb88beef70f583423128f08bf05f1ceeb29bac4dff7
MD5 4c984312ac0a4e37a676813ace9b1ad6
BLAKE2b-256 62c7e017a3571df333c35980074580cb4dde20bf54560b1f7c2f83d6499a60c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8911d0a3396a552acb1879554134b4b0c50ee9906b03ab9f00160b5196c98996
MD5 3e9b3af2902b30be0ee93646c81b0421
BLAKE2b-256 dc60dae4d23042e336ca987f0e625ca324cfd616de77652b4f41897c34431953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c6037f1312e6822d93887935f15ca991faa71b2181cb98b251ab6e7cb0b7ea85
MD5 7116ed8276c2401f7b1ddf8d00fd9e1a
BLAKE2b-256 458a39de3f04e24c52ab469778690b9840107a4c7a7787896c3e2de7823f12f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1adeba4179a408775f6e06b4d24398734eed5d5395b111a887496021c67b9399
MD5 0177dc5ab6ed18729465ac02f462c039
BLAKE2b-256 a36a6019f94ce7a75e27c32fae564f722a33f2769a7265d2edc76588e0aa3127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b32f62ab60f4f8cfe5bde1fc8bebd72b6d1be0ef574605f49d93a9b7d97030c6
MD5 55c720c94f5775195192e087272b25f9
BLAKE2b-256 131703bc1221213ac0055e0256be21793b32e0e5dd2ce8547f30283adecf3b24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df112232fed19aec366ba4f5d190c8a1326616c6c09e881aeae7295552631fa3
MD5 3145a1987840aeebdead220026cb58b7
BLAKE2b-256 c9fe06902c1f9bb33e0da1d90dc2e677d588933942a71d1b3d27ba40e85fa76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12a60030d4bc9a85d9c11e681e9ac3d5657b9d8c9bc8928dc74a7151d37c4213
MD5 8becb5c9a02cc6065f623514ecb7c3c2
BLAKE2b-256 dc3e62a985c898ab2170e31a6b46f07abeddc6c4501af066320d5fd4a9b8d7bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.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.0b15.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.0b15.dev2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e39951ff136d329b58e00e38eed3d376816ba9b0fbb69219344319961497074d
MD5 7c907b9c7de5e64ce8a2a709b7ba8c0d
BLAKE2b-256 986ae1cb0d52692f8f7eec42e5a91ccb5912411ffdd02c91deafcec16a4f09c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ea818362e2bb23f3f6815b60a29c11824c44a550069695f0fbdbf2d44874cfd3
MD5 c435ab6822c0b17a9f5a82bf40d65423
BLAKE2b-256 65d56538c766b4e9b5dcf5f88e2ed6263e2471a3a67ca886736d1cd1e28b2fd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e27255fbfdaa3d5532ecec7f24cbd2f2729ef7498ec83fa96378d0cd9e314bb8
MD5 bbdfb6117f61333319aa1b79a2e2f51c
BLAKE2b-256 50953cdad9148cec85e2e951edca8f660c54b2e9a017443bfd737c2da32e2968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc11335c63eb09ce17e6fc20436d1f1f0ab59bcfdf4a62c299d6ef7509a2f54d
MD5 1d59427f26db8d29f2983bb04415dcfc
BLAKE2b-256 a67950a0749adc4c4e22309dc7b6d37f256e0ad93350c612e14184e9b04182f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a900655a7b6559011461362e99f2c1db9788a7be19ec5f1d7b72f311a91b015
MD5 f79e680762b88e1b4fdf8df8a65f8bf8
BLAKE2b-256 efb5bc5cb3aea9979444d7643039a380baa651a52e837038f01fba2b1d53dd8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad302669d61d634bef3f141c02148bfd172a6d7d00a86d3337eeafe0ee29b26b
MD5 4780ca14830e5376bf448c5b388da10f
BLAKE2b-256 23953caa0f2dcfc07b3cd2ff22d59ee4f032aa87d8eb75f0eee26c0946d13b07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52275422e4b064e2b27d786b45f09b65ce78d0a74806bc9212354b145f7e53a3
MD5 ea78a385df5bb9915e3d5490da8ce358
BLAKE2b-256 eef528a093940a2963370c4daafaf45019fc238c29eb1c5f8184362d0bc11280

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.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.0b15.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.0b15.dev2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 85d3915d6e44fdb4f5d952eda6fd06f7107a588961989005d6ec73a214121265
MD5 e5cec4731f24795dfca9a1c9ad197277
BLAKE2b-256 04c739f1f8cbdd6d0eaa9e5aba82c5d59224ae9571e964ae4a7d2ebe0bbded48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5624eda8716a6934392b71d3d7231dc90415998c6c1a4cd8cd417462ef245789
MD5 f69390d768e4c925a22795a6875a643b
BLAKE2b-256 a17c543c8af714c5e6bb429da09c88bb48ee5045236f9a0ef3195e30d726a79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b961479a95aabc0cb07e0591ff85930a9df368add85b88057355f0a4fd26638
MD5 ace071ee8babf8f86c9cc071cbc43ced
BLAKE2b-256 666587549102d99e8987bda02b600e3fca78ceed4c5804d58519a5c42581320a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59ef36454a06c2ff83f96f39064fd789e86e035116aa5b4cac1ada9ef8308ef1
MD5 2ebd6bc0196c26be4e675316ae58e297
BLAKE2b-256 0f7ff4db0b8832980d46352089493dae60dac8478ef139e3f653b3e0af9f9607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8034c440801945d7b6ffee73cbb90a2025a7c3eee622e5c790d5a4c57bb0ddc0
MD5 30f0cb3ed012380ebb87acbd17af1584
BLAKE2b-256 7b218f6b95a2be4e24bc55056073c92c2943cf94b2a5671d63d1981f787c5aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0535d1e0aacea7d48d2e260ef7106e99f461feb16d37485a9b77713f1d5e5f8
MD5 f128531691baa711f4a292d7c0944f2d
BLAKE2b-256 ed060e9c5c498f8e94117948ac1026fb6f8072a315d2ca4f4c9fe64c0d4aafee

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.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.0b15.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.0b15.dev2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4ae8c0b0871b2ee20fcde359cd96570d43e0d80c5d7785c35e03bc0104c416c5
MD5 99359b3874c2b3d235d651f44102c4d4
BLAKE2b-256 0213322f43cbf6fddf2bd44bf417d1158f140c3ce340ba22c93acdebf5dee7a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f3b5e064bbef8b117ec625e96efff5fc78c4f8795a6080a2350365043caef315
MD5 58c5f0931c01fd65280070f0c2b8663c
BLAKE2b-256 abccf0a266c22a684305f889b17ed4291bb38cf2a2364b548a35a674e3ce127a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9054d6caa3a00ba19cbbd077bf3d24e13d708156525fa7f0637f24c448d8e07
MD5 b46c25a844e97f2833b0af87dc2e842f
BLAKE2b-256 5876ceb43432bd35d6782bf0cc0062a4b1f6355fb5474f6bb5f3d4d7315d6b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f234d82be59aeb51789d8db805bf8635b03565db87a35bfe6e0a207537a9dc51
MD5 e8da630a0b5f083666aa673ab9cbf0ba
BLAKE2b-256 9b8d994618367d212eecaf82f5b635d4c263cc9820ffd305eb3ff0f9b281c164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3041c541a5191c6e67772d3ff2811a0231135a54e803353afffc3c096ec6475f
MD5 15bea466fa94cbb8badc5cb354a09cb5
BLAKE2b-256 82781a1bbd7d6c232ed2c280fe398843b3569e978a3423446cdf087940801830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b15.dev2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44e61dd71261506ed639a5a6b7a3fd61b984b5f38f767dbe8de835a3f775feb2
MD5 04ef5157f06d7ba2061efc62d5f8fc88
BLAKE2b-256 26ccab26f2786e7bdcf96eaa711c994c839cc4718848d158111888824dee1824

See more details on using hashes here.

Provenance

The following attestation bundles were made for genai_pyo3-0.7.0b15.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.0b15.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.0b15.dev2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 33dea411d65626574fec28cd758094202be49d38cf3092164bdbf569571db297
MD5 09053a00957b1d274ca239eff650afd0
BLAKE2b-256 886f26097a04fc0d521c5afb3c1749f4a73e1456423b8716cff26c4b9d48fb6e

See more details on using hashes here.

Provenance

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