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.1.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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cohere_melody-0.11.1-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.1-cp314-cp314-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.11.1-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.1-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

cohere_melody-0.11.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cohere_melody-0.11.1-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.1-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

cohere_melody-0.11.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cohere_melody-0.11.1-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.1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

cohere_melody-0.11.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cohere_melody-0.11.1-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.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

cohere_melody-0.11.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.11.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: cohere_melody-0.11.1.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.1.tar.gz
Algorithm Hash digest
SHA256 5c34c36442a1a92866161e269804d07a60b542255c39661736be61535144d2c2
MD5 3fbc6d4342bd87a9f5dc1057a84fdb1d
BLAKE2b-256 79444db355515fcdfc907e3d2606bb90d20bc1f2c55be187003a9709f0017acf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c41093d1286d5b026502f7606550958fc56f143fe8b17218b38d381ab068a18
MD5 613131ae4fa693dcca89100a75bb0ee2
BLAKE2b-256 7bb0908086eab11143405ab03aba0547acb91f92f23ae66406fc5ef770f73742

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1c17649e93e602eb9760f8263c1766814b27987227e5b05c142b073e8f23e9e
MD5 0b703beed8f273d150dadd1414f322ba
BLAKE2b-256 6300ada7ac4ce14f0c511721473bf53d61901fa653819d5fc559d090d970c59e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 444dd90855b87b8e2dcec43c06317563e39e95d04ec64ca9f7a0f7517f19d94f
MD5 26f64e1e0edcf50208472737a495ae31
BLAKE2b-256 1ec148061daf12928a6a79eb4c87c236f53379d3eb4ca8e15cda2c6f2f15f3f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6149dad37d0658e019accfbdb8f643b98152998a238ea92cdeb11e2e3698c577
MD5 033535bc918d008daf6f5d46aae3c9b4
BLAKE2b-256 c3413c6ed9831534101ba678f048bca1c15c6da85d4465376e86ba90085f5f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b70cbbef827c58946aa8b0656daac20c200b5992e73e8bbfb8ca1a281d4f57c4
MD5 c8260784e04e303aba8119b449aa89d6
BLAKE2b-256 4b041140409af1c370d7995d974cf769a430e17ce38acf1c6ac3c2f56534b843

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 314339ed805672c9a5ca8bcbf68cbc630bff109d157e9da812f09b283e29424c
MD5 425dbfd6254d8db4831b80bd0414a613
BLAKE2b-256 ce6dc6366eec786cb765a07dcc182bf090661cfcd912d4b4c42d779e967ab83d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 582075563e24a28cc4d5b212a61849ed87c62a09023d5590aec23201c6c66657
MD5 76d41558bbb589fe6054edafaf701756
BLAKE2b-256 09bdb0ab9d19f16e093c94aeb11d0513657109d1b50473f223e3db78819dee62

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecdf9b979fd73ab611c400673f686253b76d77106d99d27f4e19beebc9e15f66
MD5 8a74a1e92a70738e6f05682d6e8be4d4
BLAKE2b-256 b264d6d556bf93ee69c280e97db3b7b8638a5e660a4eb0a04e635042489e3a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9403e8de6bae487de3e4323f6ada48548899fea4e04b529d215593cfb38fc91
MD5 751322a50b9f9e91a609815978c16723
BLAKE2b-256 a30e74b680a71d9f0bc326e255bb92f1980bd5af32aa135c92f35a3e8ba23035

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0fc97ef5390747e0e93c0b1d141c38b2b6f33c3efa0220dfee597147c8c5265
MD5 c87e428fe8322136e34048cbc7251a76
BLAKE2b-256 ced224581142b1a89069e53b5a8d90bc69dd05f63b6c3a630bf6741e223e39f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4041a95b298b4876982983c37e5eb33fbde8959a4d0b68dc0389f89ffc136bd2
MD5 23349757f4b3d10321e383cac66f7709
BLAKE2b-256 26cf71b3926ae7ea5a395bd07166b3a02783d35cd9aa239228e50c6cdb9ad2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79bf4751cdc076aa43479708058b688f5ae9ff80dfed6c3ba78f1522f8116c7a
MD5 5c87c7b68982717fc68839e7b35884dc
BLAKE2b-256 cd24a3fd33194f46ddf19ad5e102a584c4cf234576bc3f6309d71b9d9adaaa0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84d5471dfcfde0a805faa76f364522e4630c27cf1820a6a2ebfba2d42d4c432a
MD5 c1fbce7dc22afe46c7883167d21c4197
BLAKE2b-256 f7cd7e35df8aa193f0d814f23f7a493e0b83de30481834d863d47315db96aa16

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7907eb240635e4f4a1324478131729b9dd6e4a01e2f4637d78595fe1bbf2e63
MD5 85d78b2fc258b2f687120cb5e5ef9bd4
BLAKE2b-256 1452518d62d1cfe2f30c1fd05ab95da39f902eefb83de5ffb5918f4f31247299

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88d2e3c3866dde4d7b4218cf225173a1e0dab2505ed32bed37feee35956bc59f
MD5 0fabda0e066204ab795056fa4b0b76be
BLAKE2b-256 2142b2b318e7320f45a03db3fe05ad276eb67dfc33852a44db0d22003718d8bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 866a0e170570db0a6713d6e883e2e2d582527f4521c3cfdc779952cbe7265157
MD5 8455bf1efd087eea39280ec87fa4ae9a
BLAKE2b-256 74761f2e8c0c53cd80a9d57fc9ee6baf96b5857855aafec51e645e3817180407

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d888976f6b233368e157110dffcb7e849c5c431d6d4bd36a6b6c5712ff731c5b
MD5 9d962baa48f4f35a4765eebe40de65f4
BLAKE2b-256 3d677fa8ec3a616bfc74832e20f84230708cecfd3653c53277d964cd8fcf29e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed99c69819fc4f3874d338f56be97e3900ca2e740cddca107ba0902979ccf9ef
MD5 b13cb00849d062061d448f6d8758652a
BLAKE2b-256 3cd07dbf36dabd19da4feb51932ef966ae2f8a90901a060306dc301090dfaaf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50281bd05d9eaf22f5359b0b5d7895c70a026a95452c0be726c77ffd2cdbdac6
MD5 79bfcc8c4c129f102e86bac208a0c330
BLAKE2b-256 962b31ab3b50e08d32f6ecd4a7b38f275a57d72d98d44cc37b73a32250de25f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe71fd8155c95d650986f4c2514a314866b24d0799869312d11ccaffd6fcb0ff
MD5 f23c8c4de459bb66d0a7f752a80ee01a
BLAKE2b-256 c16547e02b1509ab38981ac9dff5409eedb0f84db513893d490de8a59d668bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a5f1877662ba0090a036bc2bb90998cbffd3cff549f2740c0dcc1812dc5406e
MD5 afb620cc656cadf15d985516437d17a3
BLAKE2b-256 638dcd53544a71892222956cd24aabd705e9ace4fd14a20eca5be533a114159e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: cohere_melody-0.11.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 75700ebded8a85111e4681a36110cac6a0fce65e68cb929212c0bb4522e9e3d1
MD5 01d22c06f689330c7c6e775311f8a3a0
BLAKE2b-256 fb7b465f6db8a2da4dfa6037a1e8f0f127707d56cc198b64d44a2c982cdb554c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a84377eea3464256cb66c62a057e1f19ff6e24deb66584fc3f3ffe5b0d58c72
MD5 3ce7b6102ecd5e1c5ef28f9c9ba6f441
BLAKE2b-256 bd8fc01e0a5891a6e0beb367019b6a7c875cf8f021a6db49c2abf53fc4cab0ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 586d2f6ba92a4a2a567fb15698a69e970e41d8055bece61c35a841a8c52a68e4
MD5 631450f8db14413f420dff88598500e6
BLAKE2b-256 1465703fae0d099b2ccab6784212de152afae303e345985a5ba049c35b3ca39a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d23fb087a721da482b34cea9f064f76cc6863e098399a323fcb5f03e383ce533
MD5 1cab517f3ef41ecc4d5c785b68c66a3a
BLAKE2b-256 eff47305e5dcd82e1342abcce3d2bf9f015cd01837622d6f693852f4f3776c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e60443cad687442e82b24c5d660e8467e41633689d4ed1d993090668340daae
MD5 a65a4c0ba0d76e5cbf0e0add234f9bc0
BLAKE2b-256 ad166ed858fe91621a642c7cd8a9c770e0f3ef00ff3c37c4bc24180b2c4ec8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00dddcaac5dee6db761ed53c60185a56dd2f20505f02974032bb3bff054e8239
MD5 20313ca349cdf49dc4152aee9fcac3b6
BLAKE2b-256 37f5db59e91a56797ec9755217d5e9b0700a57999c739385da7419c52ad14d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2abd8eb33373b4ab016ca388b07fda48898ad49f63ebc12d4af35f481283569a
MD5 e2e158dbc9b1e6e133a38cba5481ba32
BLAKE2b-256 e536cc10441adabce5d883a1d5694a772c792d7c2aab2aeba501a44990ff51b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76cbc11329cc2f99ca89e139e5a8c64033e505258b283f2676486242f59c65c3
MD5 0cf01efac8679c7d984eacad3faa6dbd
BLAKE2b-256 856058b599911d5e39fc1dd4e971a30aed5b6a0966ef0c538d97c3a0e0fe2915

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 918cce4c1fdae845a99413fbc0c8d60512545fc6701d5db6d440ae58c2bbe964
MD5 c4c17348fea2266cb4e1e1eafbb8f043
BLAKE2b-256 9850935d217dc3e12a03f22e0105d29cbf3690fb8c3f580b069210083a24b848

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff9087fde6b8693b97027005e2b489d7a097ffdbb4a4b3526ff620ef0adb9a01
MD5 eda3f82b5021affeb3dd4986dc2a327b
BLAKE2b-256 85305cf37fcbaa81b3be5c371c23fb37e8061cd4fdeebda540093824cfb69391

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8f14cff0e4e7930e7c541b87ad5c8a84d4902041c6f9dc429792ee1fbf2ec9a
MD5 26206bdd9008476ef29542c073224e1c
BLAKE2b-256 5f1bde8f6fd664cdf8dcf92f0935ea3a9596d9f0468d578f9f04a8a6c290885b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdf12579f6e8793d8142fb65c858e48963ba7a082646d4e1697c34a57a34e506
MD5 a62c260b617a8e13b97430dea6e3d108
BLAKE2b-256 9cd0982facd4d1f740b2124de0f2e020ff5c42626c0f92c4552c915868274771

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8df361a1bd5bb9f66815afd2855cf2ef8db254fa8809cc83019e39f494b25a1
MD5 17c720f4043a472467582db3ba632bbb
BLAKE2b-256 1ba3e99f4a52fc2278582e92adebeeee0a7399095efede41563282a9e90d9aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 70d525f262c5df5da1eda353d0f0cd395570c1f3ac182d03cec1c2bbaa46eeb8
MD5 9d1f93c370f863fe4def647dffd42491
BLAKE2b-256 2610f2d6b98391e59481cd20ec66669955f7e3f4540b5fea77bcb0bc54ae3b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2879f176b6b1186ffe9da02d4ab7565a50a30c02ee1a3c7d8b35e23a54809f36
MD5 97673c799e83f0973d78c0cab633787d
BLAKE2b-256 4f0360a7a9a8c20522bd2a074a679485c6161e3f74162c8b2a96441ea905bb13

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37804acf0f947fe4b926d2881e26b0cddbf0335fd48cd8c702168c462d48bbcf
MD5 c482080dd5aa1f66d4ed76d16c63aac3
BLAKE2b-256 03dff92957bb2f66881b3caed0d96caa8d7cbd4c1d3e5e5f84b512ce8fadac1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aec1f05e4dbdfcca1a6018403104e771de4ffc77847cc960b140ee9c5ae5eeb5
MD5 2d1a4c673ab355ce6fc4f366f121fa83
BLAKE2b-256 18e43c110b95ba2c3235c12b928e4d14671ba73859673bd6ae208a74c775b9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d38de140b06a14e64ebaed264c417fc2862b3a35cad2374206cefb8da18aa096
MD5 8fd0c4d40c23f8cb0e035b08e6425750
BLAKE2b-256 d82a8c73877db32c9f6765c11aea528ade43f8aae25f8c6fe10e39b8dd7cc064

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85c3d859f5b54df937108b6dce8329682fd7c250927248cd8fa1dbefb63b7835
MD5 4bca8f5b236a4c04cd07602927cef911
BLAKE2b-256 b812b55b0e37e699bf1d40c32a4ce608793b12641e700346ca947bbca27c91fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fd09d7f6b293450dd26091dabbade534214e29eaa9ca038accf0f4fc7ef7800
MD5 8b42fe1516f96de4fe6280926b4f6027
BLAKE2b-256 f958780b3d0149be5777ff8adb6fa2d962311cc75d6de20c7cf56b68c54b9eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02cbc395d80d00f4fb880428ddf47ca4805feca8af4689dd574cc4060f6d10ea
MD5 7d42796892796412076bdaceec2f8b0e
BLAKE2b-256 f581b3d26cbf65878c154bca7a4dbd1c1e2a5a749fb49a609119f886b7ec4ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 812751e93958248fb9ef823dda91f17459c24e81a814e71e77ff0d90681cacac
MD5 9f18b98dad7aba3053a3ccd6157f217a
BLAKE2b-256 47cb00e2fc8cee2dfc093dd6c93ced56b3e821b43fba3b05093c557da50be9bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87a73127531f9903e87dd9dbc99cb8edfb77b793c00a6348271db757053f589b
MD5 ede73e49eaaf90f8a3f138fffe6ce3a4
BLAKE2b-256 b34a820acab9a828bffb0a11a3c59273b2a59ce3352beaea31efa621cab567b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb01c52a4a9373e927a5f2066d8de9ffbef234d49f672cc4d518a0bba8f060cf
MD5 dcc6704e2a710419b65a5b9460a89cc6
BLAKE2b-256 375a3a707bd23c8ff3f49e6e6ebf9b4349e45be2a932a9ab12eaac7619cfe356

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b227c3e33ea2494662357d298f1a1b0753f643ed5d78fa2cecf650f89e82b6aa
MD5 1cb1fb8c91c94aebbcf3c17d3b4c4dca
BLAKE2b-256 ae84a594366957945a8a8c0db8c4b97f0fd2466eb4d144481f08cfecb3750d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a55b8f00b7f6cffe2cee6158f6adfad0ca7ee12e4e751b5290d3270466e0bd5
MD5 49a48433500f73e7f13240e91cdc8405
BLAKE2b-256 933e01e4381d342dd4cbe36b8d3cfa7dc55267cfe605eef3af1d0c4f54f78ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f5944b13478eeb4ab8940f911de3cf54beb2e69df69c584bd1520c1c5a4ada25
MD5 727925e41753a81915d635ae2b7e341f
BLAKE2b-256 9278654249d7fbb472fdd02c8304d275def92714467354742c606511427e9283

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 134064ef3f179e394c090827ce23a80f4147dfbeb4a7c699dc063cf3f2b59f6d
MD5 b91bd61e5a7987b271a619a961e01ca0
BLAKE2b-256 e58b4e77f91a158a6b725f34bc3ad483b3d6e96881a86b6c48dca868c42809e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b8b82ff6b7f978dd74be6dbb9fa1c9da72fb4d9bc7cb7c3aac6eae98a97dcae
MD5 fe2c4271adf42b40c58951f5d6d3c245
BLAKE2b-256 6b39d8db080f028fa295886798ab88389ba316aa357039873f8ca24788ee1f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 902b704f2d699c671a005695844f12ae1781ed2669bd942bb8deb2a7e415cade
MD5 69318dfd55949e1d445d0d3c9124b0ad
BLAKE2b-256 55ed8f7196b28cb1b043c2bf67984cc61cecf7b32c63902af036c81ea835d75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34d3f8dc8c5d6d6ae80dd33119a356a54fb3dc91587a5c451729b238dedcbde7
MD5 1f586c8dd5ba46be41732728ed85abdb
BLAKE2b-256 bec6f0a30d966dabb03f1df4fc7744635fe06b30f2caa188641f1496cb90df0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b107935e004f4f26fd5ca1c3d0539e9cac33e67498ee0f0c808c4700c41875eb
MD5 3fb608ea9f4807e238c5f17f19e5bd88
BLAKE2b-256 34f6f3c0ec83091fa18c01ce4c2574932cdda1cd9d0e51e696fc3f2c15a2ef0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8792d2f04ea42cf05157d9f7f6eb6cd47f04f1516e2f5bdc85a4cb3272dc98a
MD5 51a7328bee7a45fd762a54b5bad694b2
BLAKE2b-256 ac69726d1b95234c117d7d70b24f769152e9e11e71ebcd467cd88c5281cd51bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 327055695f4f8a934972f09c730a71211b8783a7794ee7161694a635b6ba7ed4
MD5 45c6eb6998d034f10f1df3410a050be2
BLAKE2b-256 1cb75489f97c0629bb19e11066ab751d88a4a25ab8f3b996a63cb5492467721a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a439e3314740c898d4aab0313865f670f84ab546d59335fcd6297967c47a147b
MD5 177ff7d6efd7d997585aadb16fc3cad7
BLAKE2b-256 11a60e86b40bddd0fb0297d342fd54e3a4a4e387dc1d9509a92215d0a516e851

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4eb6305d46091dd79a32a19f292fe93d8c406f8319a6671be8f439fcbfcf9fb5
MD5 3a193fc2c190a650e8560cef60d52f76
BLAKE2b-256 4337a90005a4376c8d7ca9e268de07f547545551878a9bccd9163ba3d53c80cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd626555bb8198020412ab10ef497c2a567e970e1850bf8eae148d73ba7b74ef
MD5 58a8f0fef89321ec188cd5bc01933ab5
BLAKE2b-256 c6b564188b7e88a0ecc6ab6f802be5eed28c1416da0a9657210bb2c465202954

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16c5991ef6ada5a2f9cfd01861a645a62752b7c403079a86583502d3001e08d8
MD5 c13b0ce08153005d9203093f63efa838
BLAKE2b-256 db46883f21b881b5e8f1c9fde7f8a50b75ec684d1eb4c744a8fef9ad94d01eac

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d7668b07839e18b6ffbd3c502fee5507166923fc36d0b5f4b7be0325ec3d333
MD5 84f902bba67bb92609ae8df522df6037
BLAKE2b-256 675f08c4230d7d82869711301e60ba06c350b68960597af549aae530471d0ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f8a1713297dec1cb30e7695c45efeeb78ef383330646cbd9a9eae1dad63d07f
MD5 c6aa4801426757e25845362fe9a9ea85
BLAKE2b-256 61940dc2bba7adbcecfc8ce90905d1354cb7dbcc28eeafa9d14c81073641d9da

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b8f726456d8c26b5befeb495ec1f6edf09c34d8091d9d4ab17009f756c68f37
MD5 16d276849124bdd311dd77e8906c5cdc
BLAKE2b-256 b88290c93f599a7bc838d2518219d443bd1208ad5fd14cbd3f979bc86b3dab50

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2f1175e238925be6d38d5d82b5b748e9cab36f729ab8b4197bfdf4b15906609
MD5 723871bdca63936da3f52f1fc6823a11
BLAKE2b-256 6fc9d571eaf312103238f4de2cd238d9116d78f0d09bbecf3922ce394bd62eb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d41562f5b3f925a79227119669a7e81893375f5c001e043aaa02ca25b41361a9
MD5 d1af860c173580e01cb15884dc1156d6
BLAKE2b-256 3c5ab473f810276351f457260949f337c82ce5ff5814968cc2711ea4e8c995e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5de536f66f68d271587a6d34aa8b8700699a69ba34c8a5ba3906eed646922f38
MD5 a28c2bc1c23fe1987329e0a1d8b7c5fd
BLAKE2b-256 8b0edff6acb74186518650fffacf3a4ca5dc5491ab0ef68cdf7591427831d736

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6d2b6fb45630bf66285f33346f91bab2d8a64848776f2ca2593cefa73a4c91d
MD5 c87f01f6979e506c2ac084b44f443984
BLAKE2b-256 6d09611f179147c8db26f30374e1e9a0979d160483369ac7c8f6b3b43e379e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ae1c49f1aa64b9df5d904890a417b79fd82cf235273d1d4de1b5a7672843e3d
MD5 a06dfc134e5e243fc9d6aa90d89ae10e
BLAKE2b-256 228c1d6ce89cf9c129858f89244c88b06a8f74c2bed0404123aed5b5e98e1e9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39dc79c4ad7ba7d84cfe04709b00850f07bc3d59e9b60b1581bea473f569f9e4
MD5 aeacd3d2e9b6b772cea13765e147957b
BLAKE2b-256 bfc25bba97824c55280bf7cc67064ebb357e29cb598c8b971260e0454503f0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d49051164065d4d04f8c166eb486ae03f5afeb4fc768ff5bbf5664075a3c4657
MD5 c7f63db8a4ac11caaffa5484499e8826
BLAKE2b-256 c30567a774f2cdb2770de79fd3733d9cc7d931f0cb2b823b364ef9546d8bf281

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28a97c95cdd44aa123f76e09fd7e994dffab990cc82a056cad3c2386b7da3261
MD5 f160834f0a8524a31c6cf8545acdaf48
BLAKE2b-256 4ff252e9bc55c099644949bb9ee8ba72bcbc8a7dbb02406d2893ca714353a80c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 802d4b32acc5177a0ffc0dd0f9314638d3cab056450eb53ef4e90f7f4cb1e081
MD5 108e4d418dd09dad6c1ac53e25b300e6
BLAKE2b-256 8b5891d8a69a3876c4062cbbd9524a54e389c738a74ae9100eeffa87f37883a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0805bbdd26a0ae245605d444949a296467283369b34b9c1368d994297cfb6dd
MD5 8d060854c8a642e7911e20354f6e00e6
BLAKE2b-256 e53c4c29f6c698071c1c073fa71ffa0f7c95ddd77afb2a4b16211794bfe65fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ce55332c07c9983480866f9f6a0ebb7cc7c3bb59250d5438a0140155b253fca
MD5 505cbcfa2cab190cf90adb156fe26443
BLAKE2b-256 6cbf7fd5fcacea3ac4e597b79d45846c9ec9cc43bce660594672afc18d95dcd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ffb84177ee5f1f52d9359f73307f9ec0aaf0788b61fbd797c06ee4a7f83c2e0c
MD5 c517a86da60746b608b74b8c3bbe949b
BLAKE2b-256 46918607baa800a51eda08e014c3708f334b45577f3e5503b58a4ed20261ee0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe37b3e46af0c2e6960d6f235f180f41e091dcd91cef70c2f2a8285e9994811d
MD5 80f69bef3272b952d1b4cf2b98faa7dc
BLAKE2b-256 9c6f1a89c6fe0ad7340be4629f55ca56a584cbd4e569637b8755369a33b5d403

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c1aed771a05b4cef10ab4cca97b35c7385c4f7598af4454b4aba856ccbccb9a
MD5 7fdadcf618f2fe8c32fbc139295df595
BLAKE2b-256 a608011558ff9bc2eedd88ab542f091fb04d0c6cfa8798672517bae9f1500760

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c875b6ddacbe56957a61b02f79920a6eb7114508b9f34620a09f4da4eabd876
MD5 8b246c8f5de422ad6818456dd8639b8b
BLAKE2b-256 f64f25916ae0875a8beafe680f7b53b15ecb80fc816e31697ed7a4015d819f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0614cc971f458c1e7e4e9ad2095f9d1283a40db66fb9b40982402ef8a88eecf
MD5 b34fb661554f6604e5e43d7c82dc0a40
BLAKE2b-256 2ac35713e1a1ce71f74c286c1073d26100074c8e9171926efba972409d7a3626

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b4c37fb8f175a84b1fb84bed8cefa302a96b904414b25e70a534466be82fac3
MD5 ee07e147bc841ef4584671f536a90518
BLAKE2b-256 1bd6242713e1dd4d9ba6c9da2fe644ea8c2ccacb0479325ae03550c0b747e6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8e471b6d1b46928eaeeaf790227b9d97069891800342c3b7d717361f013a9fb
MD5 2eef64115a4c540a0efc75a4a7c75477
BLAKE2b-256 ad90c99187de93b46534eeacb34cdbfbf98f2b6e057ca5ead990239ecd2e925b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d52c709dab1bbbdd14b6829b7ae978ed007b8f88ae6518bf4b1a2106b006b4e
MD5 c6dd330adb51811c176778db697843c9
BLAKE2b-256 62d078d43e1c6a30a47b3a4400b2ec87fe961938587559188250e0ea4d0ab88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c029bbe0678c831003b5ce1da95ded31d1e9b00baceb6b553d999c34dd66f127
MD5 0e987568a3125dd7cce6fa1e6f0a6e70
BLAKE2b-256 8d8cf4bb76a488cde81dbd9212def6a57a9474f05f5fd38354a8c342a93444f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 637d798a39b8b5dc29405f0c39ed2696da23e9b9e0f473972fc46a4ce570cf80
MD5 5b3616a5cb2c58f4a22be42a27d85706
BLAKE2b-256 d8607359cdcd853fd7082e9d783407c90009354c78e52bdad0cd85cb660937dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b53725af12d8303419406801fbb5f7cbbc5f7966d85e6547772dc502c9e98783
MD5 cc829932319578b7394392d2c47bfadb
BLAKE2b-256 ef61847db006722c61eb0514ea622c421f8ebd57bbb735dca9b27287124f8ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.1-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