Skip to main content

Templating rendering and generation parsing for Cohere models

Project description

melody

Templating rendering and generation parsing for Cohere models.

Dev Setup

  1. Install Rust from rustup.rs.
  2. Install rust-analyzer for IDE support.
  3. make rust-test && make rust-lint to ensure everything is working.

Examples

The examples/ directory contains several example programs demonstrating how to use the Melody parsing library in Rust. You can run them using:

cargo run --example basic

Usage

Parsing

use cohere_melody::parsing::Filter;
use cohere_melody::*;

// Create a filter with options
let options = parsing::FilterOptions::new().cmd3();

let mut filter = parsing::new_filter(options);

// Simulate text
let citation_text = "Hello <co: 1>world</co: 1>!";

// Write text — returns an aggregated result
let result = filter.write_decoded(citation_text);

if let Some(text) = &result.content {
    println!("  Content: {text}");
}
for citation in &result.citations {
    println!(
        "    Citation: {} (indices {}-{})",
        citation.text, citation.start_index, citation.end_index
    );
}

// Flush remaining tokens
let final_result = filter.flush_partials();

Templating

use cohere_melody::parsing::Filter;
use cohere_melody::*;

// Assemble inputs into the template (e.g. conversation history)
let options = templating::RenderCmd4Options {
    messages: vec![
        templating::types::Message {
            role: templating::types::Role::System,
            content: vec![templating::types::Content {
                content_type: templating::types::ContentType::Text,
                text: Some("You are a helpful assistant.".to_string()),
                thinking: None,
                image: None,
                document: None,
            }],
            tool_calls: vec![],
            tool_call_id: None,
            citations: vec![],
        },
        templating::types::Message {
            role: templating::types::Role::User,
            content: vec![templating::types::Content {
                content_type: templating::types::ContentType::Text,
                text: Some("Hello Command!.".to_string()),
                thinking: None,
                image: None,
                document: None,
            }],
            tool_calls: vec![],
            tool_call_id: None,
            citations: vec![],
        },
    ],
    ..Default::default()
};

// Render prompt
let prompt = templating::render_cmd4(&options).unwrap();

Releasing

Bump the version in Cargo.toml and push to main. The CI will automatically create a GitHub release, build wheels for all platforms, and publish to PyPI.

Building Python Bindings

Prerequisites (from pyo3)

  1. Recommended install uv
  2. From root directory, run:
    make python-bindings
    
  3. Test the bindings:
    cd rust
    uv run python -c "import cohere_melody;"
    

Debugging

You may run into issues calling the Rust static library from other languages (e.g. Golang via CGO). One effective way to debug these issues is to:

  1. Build the library in debug mode. You can do this by adding these lines to the Cargo.toml file:
[profile.release]
debug = true

and then building the library normally: make rust-build-with-tokenizers.

  1. Create a binary to debug. In Golang, I create a binary from a test:
go test -count=1 ./gobindings/... -c
  1. Use gdb (brew install gdb on macOS).
gdb ./gobindings.test
break melody_render_cmd3
run
  1. When it hits the breakpoint, you can step through the Rust code to see where things might be going wrong.

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

cohere_melody-0.11.0.tar.gz (9.7 MB view details)

Uploaded Source

Built Distributions

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

cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cohere_melody-0.11.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

cohere_melody-0.11.0-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cohere_melody-0.11.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cohere_melody-0.11.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cohere_melody-0.11.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cohere_melody-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cohere_melody-0.11.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cohere_melody-0.11.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cohere_melody-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cohere_melody-0.11.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cohere_melody-0.11.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cohere_melody-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cohere_melody-0.11.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file cohere_melody-0.11.0.tar.gz.

File metadata

  • Download URL: cohere_melody-0.11.0.tar.gz
  • Upload date:
  • Size: 9.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cohere_melody-0.11.0.tar.gz
Algorithm Hash digest
SHA256 848704ea2a75df8047c17df561257dc82298ff6dcbb12f898a6cbd33e9c6593f
MD5 85e00ebb282158dc4d3327e6af8fd90e
BLAKE2b-256 a9d960232711270fc165ced4458fa7228a99de9452e26eb092bea066a56284a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0.tar.gz:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20cb40c479838d3b0ecd1ae9ce9af494f95da1c0b97c822858fd7c3fc24f22a6
MD5 28fa7ea4aab3a8c34f3e7c00778c738d
BLAKE2b-256 92b6ad31000136c2802f8e585a0c1da0700d0cf3096969ffa9d6370b627fbdff

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97752e9149233640b02a48ab30409058aac74a4a760a3aadcd6f40eaa09eea33
MD5 c71ba7eea61951e6503fe079b347a59c
BLAKE2b-256 d49469341472ff1429a10c4ebc81bf4a88f03c9fa062675f214230c82fc9d2f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15751ee2f33c0563078a2712ccea9aa2ef0088f3e2024bf8882bf7187234cb90
MD5 79754d7b536f3dea527eb8b60b91606a
BLAKE2b-256 19867eb651efb29cae5f96845e8ef4c1b14476525c03ec993145a6b0a519de6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4561849359a1273f1140cf3732f7a62bf082f6cb9a6bb9d8c80e14f778f450a
MD5 f09836039f8cd66cbc165e9f77ae5621
BLAKE2b-256 e5486f173be846f8b830fe5d36ef48bb1e7074830c7e245e4175b365bb250d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 341cd8e2d0b09e461b5ba2ef0a547ecef38c33c064a94257974095a5a9477917
MD5 b4ac5b719418b7326ca38eaa4e5351c6
BLAKE2b-256 35a810ce1cfeed6265ad182b42ce9363102f91c97508f8d3e56979bd4a68dce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10a53d24d401bdc7e763b339f85f0424fea127a9012c500f1b7351c2518eb581
MD5 ea9be60382255bf6842917887cfcfafb
BLAKE2b-256 562d862c1e16235629f4a1f432f0452aae8f01ae6ee9339213fe9db6deb52485

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68111197794655486eef4a6a4c5a8714369c93ac00ccf49576f3b782723979e2
MD5 072506946ca40a097cbc04c17123ee5b
BLAKE2b-256 eac3549dc045a1cd9fd49de5fdba4de1fdf4f7fc7219909b215c456496c8e4ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e36a06e13c36753c9af12637b74e41b63a1fef86ea5dd7e741a3f204a880f75
MD5 5c7b566261c8bb02a48544adcc790378
BLAKE2b-256 8e6c8b869da778988ff7fc8b2efbc011877093d7cf57a47098a1d6cb4320cb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2159eaef5a7d5189d58de5680515bd50d0ef905b06fce85a5613e44869bd95e
MD5 ec1bab6c92dde6160d4ab04cfecf1d27
BLAKE2b-256 f58bfd39e3a0ac9bbf27c41d87a5ae088513f731f64e157a153ef2472a9c8ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed369c4bb3fb904da862c5962918576665293de8ac3e88a56bf16e38c580fd07
MD5 b712c84f3a1c1fc4d402683650096ed0
BLAKE2b-256 f86da79b22012861e01a6ad3a3d70230c51a09e15a9a5ca48b6328523cbc0f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f80356ecd206b6452e14a33c981cc94eee21e178c44d3b6839576f0fdfd695f
MD5 20186b6fea8b6177cf5faa00bd8f168d
BLAKE2b-256 fa54dff1cf0628f4db7532ffea036d2980900d3b50baf2fd3e098072bb430b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c274eb9256c18206fc2ea6a6eff9bbcf6612399829a776e790e85148afb8652
MD5 f97b5fda860deb61ef43abbebebfb095
BLAKE2b-256 71b160571716f331feb520759648f6714e5ece6c0620db13bf7b8992bfc25d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bff67c622e98bafd747ec6a393b64e36211b84d38222ccff3aa29076f66ad56
MD5 f280b06f93e1a06e6e35b89116abaa5c
BLAKE2b-256 079377c762fad10b6b1e7820c22814fad4c604edc295ed547701890a6457ffb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff8dc5b5798cf15bf1e13de0d7016d9424d55506bf50283fa2877dcd16c38567
MD5 5e505ca6e303e92a114460f62c3c3df0
BLAKE2b-256 87ba10847c51d7c7a8a1002e79af3def21289d0e5191a1b791055a1f1a86c2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 228092f79b43c9488d5eafd7b27821224775a02c19c9fe3c9b637b9b9a0fcd81
MD5 a491e5f5bb50f0471288437b08b3b42d
BLAKE2b-256 2a468d7b152ff85ca2bf368f21459ebd09fb7780d65071909fe0e79704e98d1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 543ade8245776a82e813af54e4a4b341f604a80a5d831283932c65b0fffa2b2b
MD5 46c2c2c750e038e37836554c60fcbbc9
BLAKE2b-256 74452d89befcf6d52853def39f7a7515424e60b8e7de6760a93a445d1d3bdc23

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 596bdb3d57c852861d48284e01159e66d8849c4aaa1849d4137de34b7f8da346
MD5 7eb9f960d8e9206618a5212907cd1eef
BLAKE2b-256 10b15e71a5aa39191902b8c71ae4d0ade3e764fbd6446f29eed1e70908c150c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bbde2f61e7928facecbad8356d047e2b5ee7da8ef062c03e60ab887f77976b7
MD5 b37ca54c9686b8e81b2ade98d9fe172e
BLAKE2b-256 55147b8b7ed335929587a72e3941a510155aef8ec6874e9de7b2b8321e9bff42

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2e00db441d60b842f29812fa888f1f79ae5772b2a99797c5af27a1129fa9f75
MD5 bd7306dc83539289d7639b9f49f71ca2
BLAKE2b-256 0097a37f0f1230c64a572812acdc1591e181a12682a8495174b0c725e10eaa97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad5f428a263df453792cbaca9e490be28d18d8ad45fcb369ebd83ad81b27c248
MD5 50ee808480a2f53ae91900fbd19dd242
BLAKE2b-256 fac4321f3634489103e915b7b6196813752f3ba2078dab7e81188bfbcb82a076

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9be4466b40b6f583d690a589e8aeb7d9ddb253d6d183823a4635b19957df5b9a
MD5 eb64e3006d1198401f522b678d435a0a
BLAKE2b-256 c0cbfc1064560d39900d64d79d0b9554c9e1dbe817467030cd96453e825bdf39

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-win_amd64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: cohere_melody-0.11.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fc6d84273c7f6973c2f907f664f7df3bbcdd270a1f164a52215393d41642b84c
MD5 cbf6e399f2b03bdf450468895a467640
BLAKE2b-256 b92fb0248d14d0643d1b9eca8de5a32a95bb7475e6a1f67a367faab3e068513d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-win32.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e1c83b28c898d74832370e2916d5ba13f004f8960bf2859692478ab0438b36d
MD5 796a271136df1029fe88a83aba4767a8
BLAKE2b-256 26d7afee95ca1cab9f71cb6ca02f3aa1ce5270650d02b476d5cb6a863a1ab37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82fda432800ef2d7dff9459816b84ad7c30ea661d8a3d6168c13cb4861f6785b
MD5 c352fb676609dbcbc11143fc67e31853
BLAKE2b-256 60485f352d08360a58057659ae22b3ac35d4e2e5a13a0da9a4f9bea1de752ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38437de82100354fc7b171ce06b575d30c5ed507c8f37e32018d945861a4b8a4
MD5 a51e41e2ff9b0b31dcae388965c96a58
BLAKE2b-256 02d929491802ff1809427054eda8299eb80c5c62de4667f20491aadc14497133

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e593815951e3ff4bdbf758d0e25059789ecb0a25463fcb757af86298f100de9
MD5 f6376d05e5271a80f5269cf171825471
BLAKE2b-256 f1bfa1f0ca422e822df17188afd76383b2519bc7a4793e3b68a1e07b5fe57ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cb52c66b8e39218a329a001cb814c79b4c3842bc44bc57c85a311ed1042bc8b
MD5 2932c443101b4c0cd6dd3e178d2e0dd3
BLAKE2b-256 4083750acb3bc1e183c5f15b32d4619f2fc21761259ab8203ca8fd20d950c45d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd1d7077ccdc49b71d1fcc603e1a92dc9b1f2ae512f2be1b53d62c4d57ddf5cc
MD5 8d0db15bd985f0271ae706189c36eddc
BLAKE2b-256 f5c37160146559ba6412413651c4dd71184f3e0d1043ba413fc292d895b15c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63708e80a6f4c16f560bc00d0e44f686b290d611095d5ba278fb7d6e7a261731
MD5 7ff79c9906a93978d6411c6b6aaffb61
BLAKE2b-256 ac7eef4198340bfa41102c23a1efe7712b61f98aac6c9ee43af671254dfd5648

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d21ae9441de7e7d6761d10371e6f36c7bd1baf50fbd71cd15abe0d66af182bac
MD5 006def83719d4c322d3b4fa22baa1d54
BLAKE2b-256 40b7ff098afce3bf76384fdd8054115a633c7cf03fe72002b4f62134bbba2294

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8607a2c51f495809f65efb7bdb1656fd812e7ce62fabe6b03e5840df4606d7c
MD5 e0d44f63666ce11eca0c89e43aecf788
BLAKE2b-256 50e0a662ff523df6ecda768c5d299b9bf169f23582c7912b1b332b089746692f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f603edf206dfe9e1b3eed8911beecfaf1194b0c5bb7350662bd6756449b2c3c7
MD5 52a942dc7acf3db2efbd9762788d402d
BLAKE2b-256 5ec5eb567ac7e0a106a9dc398046525007892b86f50365bfadac0a3c4cacf92e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79a2c0517a5ea399b58d5305b9d24175310af9f63ff84a86f4a48289b5a3ec2d
MD5 d2d8fbed873dba7b4a9e679069a28805
BLAKE2b-256 88e1b667dca5240561a71e5a0e76f2cb56586d2cf14cc9aee3169a8318bd3938

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b53e629c1838e579516c5265911c9986eeb8d7282a61d43c8b3bd96be91a99a
MD5 1c2e31f62a5527d60904d66a6fe5888d
BLAKE2b-256 51d7d86564922cdfa11d4c606474ec56ba42101f18726eb6971b72901b58a595

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95c83b2f021b3ba64f2f93e871841a5e0e333b1febd4b113323d9da02f213774
MD5 1ea7aa20a0aa8cd47de1caf58e89a054
BLAKE2b-256 a17e074029d6cfa305bd146233e466f7d4b1aefada3f89cf95eb988c5f33d384

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-win_amd64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11fe710e82a38b739046143b24791bc220e6607f83996cc44ecaa1bcb920fe8a
MD5 cf028468f9ce7531c308682b33a03c2d
BLAKE2b-256 ddd73c24b5a532159fbe35a23a02c7f5238829932c6e4b752453d04cc34ad357

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90c39471c0b432d74b55e3de748baea8ceba54428265b333b694d6ad01c19654
MD5 5be8f4bc8af76acb119eb1ee93b043a4
BLAKE2b-256 3edf7d3458871b835caa3669f0beeeee0dfb18c97546c41f73cf7552509fe520

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33675c0c3de4a2eac64f02f53d7bcbef778cf546beb0452159759c917ed82a31
MD5 fa815c75b91b976ad271c408a7c41a2f
BLAKE2b-256 be6cd1e88842a3c514ead633fdd4552d6375b5936806053db2d08c5bd20863af

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1d98fd76f22fc6b3de163d8af8062081154fee58ef15fb5cef744635b122b14
MD5 c877f71ade2e4bb89a789f28c1eaa2b0
BLAKE2b-256 1a5856bbff36c3355b9b56a06eee833c0d1a1409f9ce0bd13d16c94305986f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6db6476cf19f434e1a776b07f90f1782c4549a79435f3a22e74e794ebe4317b9
MD5 8de0d4141f7ec31b3d7cebf60722b442
BLAKE2b-256 9d45498316867d79961d7174880c0bbc511b6df95ac759c9a769e8f83f059d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9bdcdb097c1b11b5dfbcdf3acf384229946a2f6578686652b1ec216fa34157e
MD5 a735c860e4c05fed3ebc2ce0b36ce4c4
BLAKE2b-256 8f8ac03195c5439b614f681e6e08df5089c75a18e90e960f5689012b5f491f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55a2f5b337602a70b6d05936fbafefa3914ebac760d121599f00eaa463429ece
MD5 f527f549ea2896cc1f6171be21f7a3f2
BLAKE2b-256 8828780917ce66b06d0b16a1911b59d0538e90791b6d2097c2ea01a5d32b7ec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 deed847e5f10a18a63f97be6b0619dde19cf5f639226d35666e972262ca6e0ec
MD5 65a58af313fd01c9d3203561855b0779
BLAKE2b-256 c376059e1b73ebbf0a031b5f2d59b3a355c1a5a5e77d5466ebc2e806be7d0e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f62d224b9b06fe55dd41461e6a10384d5c6f0a1aba5845c681711ad801f001c
MD5 ba67fece4072d88a585cd0f2287580a6
BLAKE2b-256 8fff01d767a17cdd85a05c38cf78e405950de36b1766f5d6d2349dcdf6fe2c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7b0901537da0f4399392a215bd8ac0f222c11c6658b4b888693063dc9ec2172
MD5 589589be44cff4224f37ff374ad177ab
BLAKE2b-256 2f754d6e7dfc080c33967ced945aaabdb9c8f79beb93d472d67fa688c57eab46

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18eaf34023f07e3f53f24b7000c93423e11dfeb5d45556c351962548b97d31ef
MD5 8c515eae40f320d9f654a9d41ecc1593
BLAKE2b-256 98412c82de3d19ff03cc4c6c090e0fb7f4af68ba5aa3dae72a2729da38493415

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffa49d4f98c7754492b746c9de05db629d71988fcdaa94326178b90add6e1d09
MD5 248a958505ef3df66da26e2fa38491c7
BLAKE2b-256 1faab481e6bedc08a2e5d020be8225a1603b49804176f95c96346892d122eca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d0055015967447de5c33d70be3c25e3d17c632b4a4109f6284b693c0f33e323
MD5 46311c8c080b21e14d01be48827b9c84
BLAKE2b-256 7c638c56f2f4a6ef4a0dfb417daef8bfdfd9499142600e5616d22dd89708406d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-win_amd64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 659e51491a790e11f170d2ed4cb5c89e2520b9d380a0a3f77564c30b23b1ca72
MD5 24f6841848873864b57c124615663589
BLAKE2b-256 2c689879b93aa9849e2b246eb1f7fb96d21db97fa5ce1eb0619c620bf38d5b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ceef1d5a433568d0805d14b80aaa287089cb094cb64d906c34ee196f776adf7
MD5 89c0d38a9a35ab88761cdb056b1814b1
BLAKE2b-256 1dcea6ec69f46298a3d214e39319ba05fd4420b86098b9030b31b3ba9e83ae93

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d4a1124f44c340dd66922d3b5e6f89b437ef58d57c3e64f1c2e68a1756b431a
MD5 0529d8cf94de419ab803e74bc170658d
BLAKE2b-256 acf8d3d2bd9b7175aed7092e694dd10790267a00f0564731ac4b41c9f70188ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 292bd0e36edd91e243029210dd22c4e502fefb6f9e49c25d864daf9936892a44
MD5 7889dd4d99aa1a75a111d96b2d5c64a4
BLAKE2b-256 d0b60b3cec7ea2862ac0d09e02367959e53da6b3321b9e25f890f9f4a9ac9ddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80ce96c5d7c9a3547bcd84480e14a2e7ebebdb8cfbeb9c1016c2a6a3986828cd
MD5 e9e39236c8bf04fdc9778fe3f0c6d77b
BLAKE2b-256 94b5ff182444c37b443047f787e851695aba699b877c680a469ad9e2332ac49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4df8859673fb2a125eaeb8e1506221a196d83ba16346d4786fb1588767327ae
MD5 17d661fe94d4f58a0cbf5e4bf58c04cb
BLAKE2b-256 4879e7fac1814d5c6e51ceb84e678d3047016b7bd3a5ff3b54e37fd0940d282c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e867ad4f61a69ea488322edfa8a4f2a3555e02ed47b332b70d65a054bff8768
MD5 4a174aee0721c10fc41f83c71dc605db
BLAKE2b-256 b02eea66c88545ddd2c9b33794928cb67232fdca7ea0613880522d606b9c763a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8626467f95872a92715dafc1c13b92b077dc64b60ded8e64579c8a13eba9716
MD5 01cd7c948e52603812f82125fee912e6
BLAKE2b-256 a812cfae069316699c5c0e837ab0751749f1bed90b353977b45bdf8d46f10012

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8596c154029fcb5d1c511957d55bfe1f1b66c25bd54d2d2e605a2562b0392c69
MD5 9bff73fc84d2811e7301b4a1a7dd5ba0
BLAKE2b-256 b7b100f0bbe1a6bb759f1d437e85dd213ba22d81fd7d16ced4db368e6dcb4319

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc3cbad612f8746bfb1eba3183e4eb5577630b7d215622627f88bbbb0e3123d9
MD5 b0e1b358de8064ad17ceef716e0e4546
BLAKE2b-256 9de5a5000d1eb81d4c2d6d54eec03d1db58e8f5d4d049024d135e22643395d97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 912fcfde4d323ff91a19626ac867090b6dcf6b28a2d69ceaa247029d38640b74
MD5 03030aef1a5bfcfc5021456a27d00b9d
BLAKE2b-256 8593b4a8ff99ba1dfb1612de448debb63a85c0cd7eab0ee5105bbe883b94e05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ee1ed8b357b0adcb91b10bd6c5b1a723a4746d9be903ef4615629ea534bb925
MD5 986e55e8ad0d8073617b591016b68664
BLAKE2b-256 f9c98de6b0ac263b92045b988008bdfa07955ec491b284fc47611a9687fef1ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 803ca4098c79ff421a1cb04c6739f8a4f5978a1bf1f1e8e1ff484699b8ffe94c
MD5 47432c558e7edb564adaec758d4d5f2f
BLAKE2b-256 002a0561307aa6b1713bb913a15d2cc763e4176ecb400cadc727703356f3bc58

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-win_amd64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 753e4686338c6c7272e2eaa6068e38333a241a9e706d96ddc8e579011a072496
MD5 0980597099e56ababdb46b123e2140d1
BLAKE2b-256 082b33f6cef91c895a49635a2673a22af3277b51a808c0fbe71578919e7f82de

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b681990cb6615997d5ca3fca10c7e0ffac9b2eabd138d9d59d9ed407e369e770
MD5 9eeebcae5fa04e0687658133effe130e
BLAKE2b-256 7291b47a2937d510c24415fcc1fe8aa77c19471a2ea005a652522a1d631b7f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb2a66c984c97f607dd5100bcbf1f1496e8c0c8fdcd703aebe32108a29731493
MD5 0a66471df0e0a4d424762e573a7acc46
BLAKE2b-256 d05ae58e79229ccc8a8a694d990939d3dbef4d68525a9cfead681a073d0b5e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47ddc9775fefa034f0db802087fb0234be0f42376d9b56e0ce29f310e4011170
MD5 318d343861934b0954180bb5e3bddfa8
BLAKE2b-256 d308475cad73dfe13c88827675c09bace6d836c5edf60f6512ab8870951c76fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a8d0833356ef8dd9eb2fecc7a106d27f63957e5f240a5150e677bd1c6782aff
MD5 eb47cd477b4caf81e707d942d17754a6
BLAKE2b-256 278b8099f74038db77c33257a1b967d675e6c71d77e13947988e111130a2af5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91ff9b3ea545445b8fe33d815c48355aa0f679b3b24dc694b9a26b2468d25674
MD5 88f43512568805606b49f2f99974990c
BLAKE2b-256 009d507e27ae44cea1e18c512755b826f084fd90b9fd0bf361f3359d24f93284

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 275f58f15d662a76fec41e47e91933ca2102b2e05e8636043e3263bff8602cb2
MD5 71d8e74b2afb5b2d9505040894791f5f
BLAKE2b-256 cd8b468178a0a149e23a4d96a4e1de968cb4d827d5f3325b9ac023d7810245db

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1842ae97d606a47a6db752fcd70b394916ed495b32dd0442bd664edbf013a548
MD5 002b0cf6bf53b0823b2416db68e4fe28
BLAKE2b-256 23104db02c45f500cbf2bb1ba0283e071609de3465e2ecff8f824eccb1530c31

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 888bacbab7b21bba19d2f2907c57e1d9f3ae0820f4029b689af38de1dbb9a349
MD5 86202452456176886792f58ab9fce37e
BLAKE2b-256 7720bfa87e157578b64e95a338e72a2e78e27172ddc2041f6ca3c138d32899b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06a0577c1b5f1d910166d1093348adbc05c4a3c622cba12d9f34a71cd4435818
MD5 a782a1a3579c5930f7673b61783addd6
BLAKE2b-256 408666ecc83a8dc14139a187f282b2d894d77a7d053723efcd0df908f959285f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb55139126bd94ff12036ec9db6d98f3de30cbe68f83c0de1283c30d22cda43e
MD5 dcd5b3cb3c66366c07c652a82ed31fdd
BLAKE2b-256 effaf088db3cdbf17850168c84f905c191d5ac7b92ee4867cb3b93857d9c888f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 286a6217c8cec448cb1ba82e12faf7daebc8a3936777eb32aa3e40bcfc4e93ff
MD5 df7b0a9a47049e86cf2dedd8eee9ef1e
BLAKE2b-256 19ecdd24a4bd1fb47ff07f4f5397564b44032af23e5e70c35428ca2bb2ba0c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c4ab26505ac599c5ab470d9b19d732b6a89ac001efffb0d32b623c88a68b81bb
MD5 9018f24dc74d9d5dce614e17ad82c128
BLAKE2b-256 7d0a6022b36db4314318060d9687a46796a778242ba665fec55a103649796132

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-win_amd64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66d3b6b9c1b552fa61a08792e564acebac5728403f90f316c896490239e58b8b
MD5 67dbfda2b2af909b593d00b62b8e2da1
BLAKE2b-256 663dd29b02391b1c28c84ffc6576ee8911e701f50e9125db63d0153e2b053690

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43deb2143cc30707691f5aca629ff5c8d36e6bb447a1341ac4f07e6173b3299a
MD5 7234f0a2ad51a0fca6f15798824ec11b
BLAKE2b-256 cda32cb555e3fc1e5569db84a8d805e80b21f5f58e8926c94c500be3d2f767f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6ce545773a095ddaeb771d67bca8d777c99167688ed2a576dff65bf4dfa1b18
MD5 d002d680616a3eb33ea2d3aa79d1681a
BLAKE2b-256 871b418f085b0bb1a1689bbeee62fe229ab2a8e27aa640419227831a6ee52955

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea7ab1635cb678b89f853c35865c7c3ec62148ee47753f76e2c60ed1041f5185
MD5 1b040dc5f9e8a28b49900a563e9afae9
BLAKE2b-256 987370a8276b7c2c9bf5dc1e26688fae110ad2baeb0bb23ffdccfe4024e3743e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80180003689dc299673aafa8dccf99d4e64ed58bc7a84b2f52f2888a55e94d66
MD5 2b125c66aff5f2580f42bd9f26fc3e23
BLAKE2b-256 b4d78b0e4846e7d2596458df6db25379f6e5bfc0e452cacff50fcee6ce711cd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e298033d2105c8d6e920b2067f4a93f937700c164cac577cdc908373b6bef91
MD5 6282fc14c40016d845a8f515601851ce
BLAKE2b-256 987a5191f8a131e02c8e8052bcc19c99d4b68f013140c95d733c4f78f9e0ae63

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64347253f5eb9e48f9704d65c845414992b0177ae85e0215800ed7d0831aed79
MD5 1b5b325e1327e9394758555478a53b5a
BLAKE2b-256 4143970574c7bb1142005a2a54f48ae7af8e4a00311e68375a04457aed0bf650

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f989571764c65435894f8a7058f50d6f2e29a8e72ef7aac8df7bae295f987db3
MD5 158a40f172ab62108b60ff975a18f57b
BLAKE2b-256 33bbd65824804b5c4d9b88fcab3b649648b3a3d6d6d58cfdcf30226a4360619e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c55bd90ddb45f90013bce8980ae8f5a7b8a352ac534e1ce4d2193e17c26e02c
MD5 d0ed4f9dd5b3b8907df3f145f7cbf5c0
BLAKE2b-256 975bc4e6cf5920f59d269175012fc1949931f2d964b21de61565013dc541c96d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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

File details

Details for the file cohere_melody-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1193c9f2885c65ac7dabd9c419abde8e1c59231014d1fb75f1473834ceebc751
MD5 425dde8bad8e9a4bd03b56e0c462ba4a
BLAKE2b-256 6dfeb0597ddb8bd84da170022a00d1cb17433e442267d2e194c03dd64137dd40

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-build-wheels.yml on cohere-ai/melody

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