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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

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

File details

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

File metadata

  • Download URL: genai_pyo3-0.7.0b14.dev1.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.dev1.tar.gz
Algorithm Hash digest
SHA256 532bd1cfb6797eab1e16da001d0ccc0f973d1881fee159c4e3b75bab403f717f
MD5 1760d38107593dcf6b97d72532c02a2e
BLAKE2b-256 33702b2622dcd8d35d0875fda2c1739b73520d2a5c03134fb34cf0db1f768ac7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f89acd54bd6eb762d3b3ce63cf97ad0643f9371b891694382a4f23be90bf9a9a
MD5 b202f2c91e55f31b00b363c53c38adac
BLAKE2b-256 d05aba5fb52cdef2ce8b67b7b4877c48bb9b23e613bb543604e484b35642d7bf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 024ddb9bec6f4de9369904a5c980bfeb1c6b04d5d3f58c8253b543c3951d94b4
MD5 ec0c75a9e470c8c3d7fb3c58ea827d85
BLAKE2b-256 eb26200b6a050c19edeaecfceffc97c413ce9165e620ab9479a0bfdfe9bebf9f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 458c4c3bd46ed411d6234a3c033e4d9beef0064394f958c511d2e77c22fc321b
MD5 6fd5ec7fd9e3ee6e2c33a7771c1facbb
BLAKE2b-256 8723217ea0fa0b138a133b039824507bb212d01494eda967a5361b0d5fc57139

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34a092dcdab3c43d9ef811980943a42b602d252079f8d8f1b2b29f1c92943a92
MD5 a8fccda56a30637d17c7041b470c9196
BLAKE2b-256 b36fd68ccf5004ef2a757bd7213d9511d3b1485b2eea320fedde07d94f20103d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cc035bb6b4ce6592ed6ebe722ac2df43a0e23ba1d7efef606d5ca9a98d9a741
MD5 970e4ec3a2d9d817edc210061b943955
BLAKE2b-256 02d43075dc669b789f55c2a2c3341f0ce1d7df698f42e769ece0a8757db2e3d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ca93cf60ffac476311643c16e3b95a9ef91565072faa9e82ee56d4ae26845cb
MD5 7a83117ad628499ec172acde8737f6ec
BLAKE2b-256 5298d7ce5b46502caf37163a77e0ddcdc07f4b7e72bf9f6c8a501cbb250601df

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f0d03ff5f1c2baf304d47e779ed9a401e5d8bc412d87cf87787beb740ffb9d4e
MD5 2118dc7d8c8a8044b50b6ad2faaf30d4
BLAKE2b-256 e3b59d8bc71b4f368c4a73a93a12b91fa58ea4cebe1e4d8025f22d13f64bbd95

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ed8dafeb1c98cff6187e754e2546e4bb0f6969794ecf28bd776a852ab4a4e98d
MD5 2e60c850dfac675c4e5abd9fe8bf4bf7
BLAKE2b-256 1f96f3508eba2a928348710bf552c1702a93fd9bba12072a8c9a09a8aacd3da0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 548616767a53961330b53c16155b2dd08a0ffaf5e2983f0f3b503d3452a682c3
MD5 d9a530608d52a862cbd7dc0401103ec2
BLAKE2b-256 713283daefb25422e54d4f9fddd8c2d88c3c23b38fbe41762ea7feecb69f41f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 571d1d3172fceba194b8f614c38e805c14e5796487e727161bd91d9a982d64d0
MD5 c283b6a307dab16fe17a24bf5cc5bbac
BLAKE2b-256 8ed22bc726006c47b3c0a54cf94530476a943818dc2939c295036d5a980118f8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6c9db2c4bf17038e0f17125202da70d3ccc8aa5c13e608f9596413589acdb12
MD5 d777c7803a00e59ce63dc0ed2d4ec29e
BLAKE2b-256 9e48fb984cc616c54c4ae01051520d0397607e2c772372c5481b99c6d6e1063d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e9d1cf09d1b06d694f0552b107b1f07203866cbf1c95ac955eeb4461c66ae27
MD5 0099c00f615fb15124c3e0f48248b176
BLAKE2b-256 feeb49bdfa4ddc51c5e17f7fc2bd12b70bf9c06e51d9e23e3ad6037e31168eab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c69f81b09b81913b1781c7be03ebb3dd2f7a666893e7aab3aee4bb02bf693ce
MD5 739c7e39aa376e21473469cb0d719155
BLAKE2b-256 e9adc6132da31d275e06e59a4bb02696873441464965ea60f602cf16353e38bd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c93adb3c98950a1e41145379087110c03c0fd13e7414e821c6b62b559999fec6
MD5 80eabc143175728b2fe1b0e3c3ea81f2
BLAKE2b-256 cba1e151346ee68ec2a7cd7e8945f22d016fbfcf02da3232bcc36ce82bfdec2c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8237277252c8fb9fca4d4a4bb89026202267c6c1942266e00018b4c9631d3d2a
MD5 4040d223072ee807c353009504b3cb0b
BLAKE2b-256 f5ee6c54c1e79d67f8587289364148ac2cd79e72127c6866b0883d4d44eaf9dc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6014f6d7f377c22d5a18935b0da45462230440871dcc0a83647d020897cae32
MD5 aa9bad9a2f008f4e45d8834ac2ce2a06
BLAKE2b-256 2df1d9a11e6d454b993964dbd25c0ab8a3deed525ef38a2c53080d98d53f8616

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25a76639f20c56318407014598be0501bbdda9fa8b1c93c3dee3b20636e6514d
MD5 46997fa7c7276809cce17e72fe33b931
BLAKE2b-256 ff0d3fec6a4e8eeb055528eb16ce6927ffbea61324324c7d59e635be7265e186

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54595069a3c0d0c4265c3b24a2ea27afbd65b96d99c92ac99a821b628f5c7b2b
MD5 b14e74a9b447f07272660c81f84f574f
BLAKE2b-256 06d4ea4e097f24f55dc0b2a0a8869131f799af69b590e64131d7b06b4da99814

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcafa7091ba37fa647133df81f9b6f9ab66b1e355f11f115b6445f77779ef228
MD5 89e9b0d3034af6685c9b03e5407a089a
BLAKE2b-256 e1302316fcf7d390c6750bc50d77a0fb017fac684e3e078b7195ac62f994b8f5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45dceaffa59946a2256a164e46041072d22afd2593a42d4cb609cec0ffcaed72
MD5 effd051197972f043a27ff8ed1903ff1
BLAKE2b-256 04ac1e711b997d59730c597d767c26c458daf1ac0efb6d4b535a3d7ea41f8ee6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 97148163804fe3a2d7673f68137bc7626446922b7d6af5deff7354b492835c83
MD5 e21b2bbda040823ba1b02069ddbe421b
BLAKE2b-256 8d1046c4313577d0fb88e5b33a1a16e5966d39ebfa3f999fe3a22f9c25989c77

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a09f269887c48fb0a08b5fd7d5e11638bd01c34425513a0c62f7d958f772e8e8
MD5 27a4c3cfd120ee3f76ce348b55319fa0
BLAKE2b-256 5bee2eb0a3dd130a6fd5161240a3a49b29e605d2ed6cfc683bc125139bb568bf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8ab8457e70d36cb4153ceb3c8357fb3f03c57e3ee6711fdaabc5b564c94871f
MD5 abf169dddfd151fdf7da003e31727103
BLAKE2b-256 8b46745e3b443bc39a128f285f05170d6b061e216d62599eeed922098b34216e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85dba636065a96b976f478d7c31f02b6578265089393d2992b04b8fc27ebd156
MD5 e714ab6d6723aa2e99ab8a9ab8a58825
BLAKE2b-256 8504086738922751eb1777185e65bce991dc0a04f2887eed1b3f9f8c78942ca3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28f999c3d83b6ecd5148a22ec0e77b8adf8c3681cb23f7abdc270653434ed4af
MD5 32b1a62b70ceacdafd0f7c2ba099c5db
BLAKE2b-256 9396e65c119197e12af565e4327abcd9e490ed2bf4d0d96c1b29f993f86f0800

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b920a0df8e786c37fb97f294e5c3f1e7726792c8e7b37ac2587249077f4dd33
MD5 3aa0ad7bbde6f75aa136ba525c36de28
BLAKE2b-256 2abdec3755a0d36a4acc8b7eb9fe5f321cbe4f13cd645d97934209d336b14bfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85021abdc39d75f70ea2e30d473f88f9459957ea682afb6a40ba0fd967b3fa31
MD5 4a75d0d405f956de5bfa0118cf44522e
BLAKE2b-256 222b975e76a4e0db96828ca5b38da68638962cccaf76a9b149dd673535efd652

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ecbeb3ea0e35b8dc50eeadb1a84a4f7d4e0c9988451c9a48d63a16a09d2d3a57
MD5 97da6ca8e0d0d0de95612e7c5561b5b6
BLAKE2b-256 92c10e5e88b2f862196b4a19bb4c26b31e9916a49ab26c2622492e2dfe472ffe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 332dc33bfafb154c6952407b1eff86488a5cb60922f2ff36fc2508095ea63ae2
MD5 6391cc35c94c06e6fd7db2a821292524
BLAKE2b-256 8c92a25dc9e94406fce7b71b64613501ac9d589a515c3f220d6a5b3d4694a629

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9960aa3b8c2ea2e4ae9e364d52d630fdf144729781175dd58a543f0f7a28f81c
MD5 8e228acac91bcf3218e2461eb5842adb
BLAKE2b-256 e2c02106f0694bc69f18331105be0e2fdfaf00a920ef90ea61806c8e4d78395c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f012331b4d9ec71e34a7dda0c23b253848955ee210bc4c399c56b552cd4103bb
MD5 5e860c3980014b3d373345297e6efeca
BLAKE2b-256 a39a4bd785873b0a577178535f2f2b9258a576c6bffe61f8977c2dddd9d18295

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d509bfb36cf5603903c3b139358cc50580c679a7a8ec60ae22a7cf24474390
MD5 1e9f81c55714826739b1e450877b032d
BLAKE2b-256 5b232907a24a2b201263370911b714103cf81952f03f0ad604e80b4a12c4ffaf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd2170999d850b2e5072762b9d3a0e82331c7600bbccbe2e75c891d462429760
MD5 3b6a89eb67894b5a07670b2e11437de3
BLAKE2b-256 70f9804bc3b8935fb2dea1e19a56c18c4ed41698c4e796f756dc9671dc1dc424

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 482da16924d8c7ef43b30b7e39cf2d79ab4f4a8410c0ad010f6e96fd7948c8f8
MD5 f441da272220b330f5357a32342faa16
BLAKE2b-256 3596616572fb3c9305a0872ea723256e506025f4826e863ff1778e9d101ddeb1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5c9ff4044f6e2b24007d40814a8cb61a53b70c58060aafe07a83bcec88b9bf31
MD5 c195ce28bd206409e61ed2818ad5f802
BLAKE2b-256 187df495d29321bfbbf6523beb03af4f4777d9d7e60f598eaacf0668600dfb36

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5a848ea6dd7910039ae6547c08158b8e851c60b47b27282a3dbc190fdbb83e6
MD5 1d49bb1cccc784bd9fb2425d165808dc
BLAKE2b-256 fec6f20f477e5f3309b02c9725cbd4c4c86f19d39a84a97a44965d083c5fcf80

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08de6f9dd45a084f469107ef19bbaad74099d22436a83735f6b1b928d5aab4be
MD5 7d58b3fb100bcc4667e1967f22ad5737
BLAKE2b-256 203e70c341c1005bc48ced81bfd306815f304b992e86e1a398ea2a0793fe8ca1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de95a5eef8c512e5f598eb548018c813f51ba630dcca58ecda0e293436beb4bc
MD5 77d49c057284fae6f8ac5d3a8b7bc771
BLAKE2b-256 e5b76c80142b7a2a047aab0bb36d612180587fb45f774b8d5219f795507f70a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7c0fd380ec4c8723be861f77d01e63515ded2b5d337a9c06e2c11a87b0f276e
MD5 10df2b18cd34528faf2cd12ae399e599
BLAKE2b-256 6ad4a8686636f9fd3ffe1c7c470f674c7503b92ea92074a7392fc6de70e49ce9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

File details

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

File metadata

File hashes

Hashes for genai_pyo3-0.7.0b14.dev1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b14b717aaf997f7af68d08e0a4e3c45f2946ee9155a8bb2c4152acd94443e245
MD5 0c4949b135fd013a1dc90c4cc39a09b5
BLAKE2b-256 faed3bd379a727c38f1237a87fdeedf4b89b8140c5be2aebe47a6f6145f87029

See more details on using hashes here.

Provenance

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

Publisher: release.yml on ropoctl/genai-pyo3

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

Supported by

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