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.9.0.tar.gz (9.6 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.9.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.9.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.9.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.9.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.9.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.9.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.9.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

cohere_melody-0.9.0-cp314-cp314-win32.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.9.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.9.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.9.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.9.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.9.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.9.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.9.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.9.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.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cohere_melody-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.9.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.9.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.9.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.9.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.9.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.9.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.9.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.9.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.9.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.9.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.9.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.9.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.9.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.9.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.9.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.9.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.9.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.9.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.9.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.9.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.9.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cohere_melody-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.9.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.9.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.9.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.9.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.9.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.9.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.9.0.tar.gz.

File metadata

  • Download URL: cohere_melody-0.9.0.tar.gz
  • Upload date:
  • Size: 9.6 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.9.0.tar.gz
Algorithm Hash digest
SHA256 a74d09bdd03ee5b26a2bec0bd09fe5f3fd6a874b3510f28d6fa31ca22447a3fb
MD5 a1dbbc99756329b2ca74fcd59356a134
BLAKE2b-256 f0e4789eb541dde8fd62386df1232e516624fe4e38fd203b2d7953e00e49a0b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b749ce843385b05985bf4f7fa665b234b41fe0b0dba63203d27b8bd1ffdeeb6d
MD5 5dd39ffbd398405ab987b6900845305c
BLAKE2b-256 aca45abf8fa8b4420f7e08840d8821ee7d025e50e1a9315e33e93a2e1176ca7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43b8197b2e3a77ff5dd203b5bcd2584f1322b6fd2399063902ce23d5551242c6
MD5 0f70f545f585caebe9a8379b4c0f7407
BLAKE2b-256 f1d81851722c9ff1d0a486a416d524f6be106aad900ad9c7756a3733041ceb16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 565cb4cb3cdd7d1cc2f213f9ad3141db2b260fe0e6fb01f4818a45940ff6ef19
MD5 2696fee081099041392df21b9e69cf1d
BLAKE2b-256 81089d527f3e3d73472892e7c0c3f6d365d50bd56b33165ec5487e3a6016ddb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df57b3e16ff9232fe576602b68f4d9a9600db9ec7a5f0be36fef9b5c423cdfd4
MD5 05af0da737ee3b66c05f3dccb75bf91b
BLAKE2b-256 2fbefd45c6e81867b87ff9994982c57a63ee621865458af04236c1613b933d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97a88e6e69b9772c4c6dcc96a2876507161ddf32f0032f0a3d3aab93c0d9d4d4
MD5 ad455cbfadea0851b7773221cf6a788c
BLAKE2b-256 78f678d4b1594c61094d41daaccd66779387584d5d0721c2a6f7c14b53a20b2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37b749a41cafde16983b731f5f8c202edee527e2af57cbfd21f6753d5cb4ac81
MD5 e80a371f8367a240b68bb089f241e6e8
BLAKE2b-256 48d6089f3bf917d3d68cf71d19299059d43fc58f5b68ae38782c580a37f6eb9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f84a512d833ea3534e0df33a91cef082fcc61a29010b5d9c3c1bd611860d07e1
MD5 05c58f9f94d43927618246fad228db44
BLAKE2b-256 c7eae75a76dd6c8d89ccd70aa8e3923a75d4e072f1903afca2cdf55dbf05e7b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5b6933c103cb59f32a77fb730812f24da92f26d0482e189bbcf086ae8ef3a1e
MD5 2e594c6552f39e59d41276bb36b5467f
BLAKE2b-256 0cb26c2f26d730cb2a3ebc2cd27dd4f6dbb76faf1d07acc98f3c8b6a04a879f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 236003ffb5368b1fde35e45ed2fd6905a369de5547be3e96cea7d7d1e7619a83
MD5 b515dae34a11c2219acacf105f2fbd43
BLAKE2b-256 7ef3d54ea4da6bb0f79243c23d56d8638f8bb06be7453d28db9390429d659eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f26671e0df5fdb2f2b37084d02103c607624c1710128ecd19a37ef1f32aec783
MD5 f2fe513a960f3ac10d60a6686a45695b
BLAKE2b-256 b8ed6cc17f7949ac27f59435a3b42c7b5c18bdc7b5b17bef32aa2c376d400bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f212b92dea10d1027fe93f0bf8132d067d14c14512747d9fbf917d48cd0684c
MD5 d1c1f5b9c3563b75e59049b858d219bc
BLAKE2b-256 874cbb632054a64aa532a671b536f39268d06b09afb1c34e49681fc8e3e1339e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5dacc093483f6b8af967f32ca0260452c1645860356a57d01898f5fc9d752190
MD5 fd3c3917a5513f7b79844bf070ee8c51
BLAKE2b-256 c89b962b87e3ba2f8e95e527cc31c717078d67343cd96be27bfa3224a7a95e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20880731c2a54680a94e09ff7e7c70555ca256e0c11256bed41e59b88bedef8d
MD5 35f54eb68b8bf2606122cf53948dee45
BLAKE2b-256 2c7879699b1ed2ac76ff639b2c4773afa41dd9c418391e637ca0c709a95e5769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4adbf9e514b83dc8e91c3763735e12424e97401439f46f35b79e743296e0604
MD5 c31062598cac46303546ba530669fd31
BLAKE2b-256 f9397d91664cbafb3b89dc5acddddb0a421dd124a5e709205d04e20c75dd41c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a8877f191bf743d876c0de94772dcd3f76f584b0fdc4b87f17c3b96447f31f7
MD5 a57cd1216dfb3373f1d3d3188023ef8a
BLAKE2b-256 0bfb62b4f19de6fece473c8de87e577a9275b541b557333a292fc56da76ed6f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90d5833836d8261e84c524b68d9e257ba824931734585ac725138a29a412bf1b
MD5 a939288c0a20964c53994f2c407360fe
BLAKE2b-256 059df9606a07675b9202b6a13556c11ac92a85c491b534c1a6723e53c450f60a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 655fa8eb7c46ac035fed8fc4515e8d2437f5a24fa96a4fb1e75bd801181813b9
MD5 30bf80977f45e048835465c76f8b470b
BLAKE2b-256 0e9a857f182aae2b8df7354b1ee7e3f593eb4fcbb2f1a511dbc15421b36a7939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5750497d1f64d37f9df52f08a15726eb76b9f1af010575769878f4f659de96e6
MD5 9a7b5649da92b6c085a3d80997d1a3cb
BLAKE2b-256 5779bafa49c8efd6369d36ee1dde06f5eca015009ab62e9cb2968b4bc300875a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 88ecfbf1142febd83a8a8010d4f969f31ec5a14099ffabf6511f6431933eadeb
MD5 d35476ca701594835230b0d7a8dc4c7b
BLAKE2b-256 77784972e304c4bd97cd41b29d307f460c4a28761ce4f5a814d40f84549346f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.9.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.8 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.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9425daa1b91987e3c2b2ff4dff20d159012423af9f1923db0c1cd35dca5dcfc3
MD5 f81a7999221b6af4efd2929f3de86bba
BLAKE2b-256 29c1e2f6e91bf70bf4718d02bdbf74f75bf55bc0fe62e525f77166804786e817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe10c94c4be3170193928e9455b3d1239472f1871ef618a6d03659e05713c5df
MD5 27298aae44f63d305b298807e06dc6da
BLAKE2b-256 f18ce8dcae1330260d71df083fd9a202b1049956033cbb62ecc946cf68b98ac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82c4b9e9c23ac01443c5475edf60a25013b33fd35f97ff064404a7eb210bb990
MD5 03b93edf3c430d5ce6cbc8ba6f1d9eab
BLAKE2b-256 d9a1a6017c370778abfe441af2d8b166ad5d1864191f4c5331cb39a14b375a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c50143b5b5c08b728f318593bddfe2fff2199b7462800e634e1abcc6bd52069a
MD5 5a0830297657645728e05273cf7506db
BLAKE2b-256 bd427dc1c20cf3a302f371e375622686297709ac67a5b294ec587b55a44349df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 363313e087ac162320fe1e4247e2ded23d81b8bf4e09d826752644f3b89eabad
MD5 b9b664d9bd4b75e47bbc05914c9f8900
BLAKE2b-256 451f6561119b4f24b1cf39d995ed88335f62472f6d06b9d6778fa2eefee4a7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3ccd1fa8853ac52ff2817d21676e53b9c6a15a66ac61816bbb85cdfb3d23d78
MD5 2cc8dd4238622e7c9bc17cc59e99904d
BLAKE2b-256 503c2cb001bff1b181916e8c231ce69b9aa9f8459dc7c535e3710aa768bd0b3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fcd76acb65b04cdf11a552a8eed20ac12b6bae00b7c8de851288ed93b176943
MD5 02e81f79633bf9652cb93a4fe0efef02
BLAKE2b-256 3886dccabaca48e79bf145ca94398fff6113613cee6c84214444f2e86d84f76f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bc45063183a2e58db6168d0f33f32956d5ef17ea0a598882daa48586cc68f4a
MD5 505330c701b9fd85e67938b1985df908
BLAKE2b-256 351a68ea8a07d22bc5f8a8b5e8ccd1df5feb03c0d26d39799a19c4d254a5c2b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e5985fc90b01da3223f2c427387c437bf8713c8b9c4f768b39793135f66b156
MD5 831c196f0d8d6da1c8d7b72f751dcf38
BLAKE2b-256 5c99ba67e78ccfcc0d438f90a0643a88b1473698c00497e385f4dfb1742385c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 569cc32d07ecd733a0d16dc271bd1862cac58a90dc54e4231f3ecb0613b727d0
MD5 b906a896e2248ea835455de711e9924a
BLAKE2b-256 2ff78836d3d024e981991eb2984402861069e7d4a447bbe0b79d4b45ab871c0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3d24a8a56297d4245e9bf9da22451d6063ac738d655924dcb8eb1e8c3997130
MD5 ea543b92d7c11116b999d9626d8c5832
BLAKE2b-256 6e4feb228b5c92077d6e0d9bf5f780707ae02bd58555cc5c08a9613d32bfdbb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 607394dfd1c9f8da32bbbb5b0f45b4aae3f78215d1cd81e89384c44795771a07
MD5 c742222faa346504fb989bc44c2ca838
BLAKE2b-256 c584c609464850fe7237e1003a5ddd07dceaa02e647ea19b2f904fe42e77dc00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b155ba3a0121d82d636daeec0e735cbaed6d46a11292b76a544a4775493c01c
MD5 78d48be3e3026258f633f446a2301d85
BLAKE2b-256 62f988820b92234bc3a12e8bb8a5adf2c61583e4a35846af46b1f81f7b9ef768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46139110461ab5d65eaff40b1ca7e1a4d03ef0ea97065883e732b605cafb75e2
MD5 eacfe5cb20b9098baa02abc58f597f57
BLAKE2b-256 6b4633fa8c4c1dc2ddc29ec3c9416713e2a98fc65daf3aa15e1f7c373d47e7ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 603ec46be055df064333d4fc178d909a71cb25c5301c7892223926b603636451
MD5 7ee3a4fc269349e3275b89245397e3dd
BLAKE2b-256 f267ff2d5e58ddeb008839ed6ce23b33772987c372e0200ba9c914cceb40cbfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46d5dab515c92f076573eb181023b363548dfee5d168b96a98905b6f7234f765
MD5 525b13e8a84823aae54eca4ba7af759e
BLAKE2b-256 39c8b91f5b72b9a78ea509569917b50585a851b77f6379738f0490656ca03c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fe93910e95bc3688d9c641261fadcd92379c2233784fe3a5d615997af51ed20
MD5 fd21c39200ebdcc9756d7943f8961b9e
BLAKE2b-256 e817cde3a4bd13cd7ad3a050a2f03b7f36098a14aab7b7815493732715531282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2da93d791001f6157df2fce43e46c1880715dfe61ac68c3a6d35e362b437cde9
MD5 8ecdf03252d75f26576a2ef175d37e86
BLAKE2b-256 7804a9f6981d5e3a9ef9589cc3f54305b7fd760f91d45bd85dfe25a39961da00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3341c88d49e31c45f7a31d84b3feb3a7c9a8df924104d45ac158706eab263f0b
MD5 2033b6202c062b83d31ffb84e3c8c51e
BLAKE2b-256 71a3efa73558dd44363df44986fc1dc7c6fed74a452c85835e01b79fa953858d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd320099d2264b43159b34c6d9668b0f05a54075d7c80456c9798f4b2da98b96
MD5 2a2dece7479bd3844433d1133ab7a94f
BLAKE2b-256 d143a5cee1194b68b8e06c8443e74593d11b09c313c60a14058ec6141746b575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6f123f0e7fc091f2cdab3b84f4f8b665d628c0d2cd95937cb2940d91c9412d7
MD5 d57229d567147b2405a625fb3570937e
BLAKE2b-256 375fe46f0b35d02122743af6c61f352dc51095119c897525dcc89c344b7c7704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7787489b9c97db16e5b97cc6d2fb6e9092c395b7b74b7bdd7fcc8829b73c4513
MD5 bb80d6be04f66dc8244de230e09a9f9e
BLAKE2b-256 11b47c78c9d4829333d46236cf656577892f57763e698ce7d3e7e2a64acff3a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a2e3846e30ba70d80be7cc7ecea0e20d523040bea9e7bc5295f0e846a319189
MD5 e878d799eedfafc3060bb83dd1cf6e80
BLAKE2b-256 883756acb151cbe939790fa6b81144ffe281a30584b04a60e5c7f6beb849625b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48e15e2b876ee13f12897d59e4ca01b1424e131d663af3e546e609e97dafdded
MD5 0f06704ada4f76a9e317363b4432a9d1
BLAKE2b-256 fc071be3c86cc3f2898c4a2ebb5e8d5399154c2480006b647527694366746b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab477791e66ce26f06943722c3c4d30b06e4284c7074b8b018051f28f63eb666
MD5 d201ceb8af4a0ca2e4c5d71202de3089
BLAKE2b-256 87a369792e92173356d3a8a02f09f769583fb272c2b7b150e48243c815230d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66771dad5771f0609dae66579efb74c61f82111b1b6297cf67a2a2a92db3c4f9
MD5 ba50f8f581f3fb3a7fc777738528e939
BLAKE2b-256 9935878ec298baa3915cb4b433b1ca73ef0ff46660af3a38890b9928a1c72fed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 086591cebd8d75cdbbd1fd7c938748d70a296315b4601c1076bb63ed852cf075
MD5 d40de0ed4980220f3253c3229f18cb57
BLAKE2b-256 2956aa5c3cf716fbbe654cce7a4a8dffd35d60cdb76ea0dc56864666edf2f18d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07e542a766e3219da505ed8e67a5752671eb192df6ed9387a58c542fb5cd93ce
MD5 d00722d79d8c1a4918c52a49e2db6cbd
BLAKE2b-256 8b9f3da9ce8cf8b8d5013a711eef67f1e5de7d545fdfcffd258de585dba8222e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9850cad751788e7e02c3a6d6d71c82ee79dbb689d38699f09325d3142a9c6132
MD5 bab744237fba59e537953cab703a7749
BLAKE2b-256 c8f7031498ba46773ed250383481e21216e38129ead2d24712ca5ef09ac1c244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f1e13071e03983e4f5b3cfbd3c6cadf579298f9b840601ba5bc9f1ebb717a30
MD5 6df102a2e532f8137db97de48b3fce10
BLAKE2b-256 2f75da6a059a01c4de2984302aa4a33a00f139d94f77bcc2b08e37f9dd8297c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adde15ceed4cd92095b2f40a741d898832ca3d58ad44093ce60233b9fc1e013b
MD5 bb540f356ae09b8073332ce67eeae1ac
BLAKE2b-256 ff96ac3f15551f7865dead601dc055f41e433a985d5c220bc550299a594839a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bc31bc92ea72b72bb0615009bced760be5ecaeb0d604daacc8537229e6debfa
MD5 d6e18b2eeeee8005dc9dcc7666c8c200
BLAKE2b-256 fbfbfdcdf7a1440785e7e8a0f7a07e6a457e5cc39f9f229b0261047e346f7d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 814e8f958b9fc4ecba02798d947b1d210acff309c8491976f80211d305798da7
MD5 f17e6771e2e48aa7e41bafa9852534dd
BLAKE2b-256 56fb5673aab1a6cf09db483826e9ec191f41665cf929b2e07604ac03535250e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ebd0f6acc8a128dcc42a4d43552f7149f60e33de96a2a093ea9f26670ae5fdf3
MD5 a7349249c6aeddbe1c308793515734b1
BLAKE2b-256 cb6a83e55de86dcd50b4a11ad27ffe0ed16520c6636b28458e1135842bb158fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 144ebb12a7495fad10b86d5006a8eedfa737026ad5e6f7125238f13c76bf3ca9
MD5 54206b501715eaf30de3c3c64a249084
BLAKE2b-256 602cd9abd094ed9aab78866524025d61226775ff0b9cfd9cce09b844a460de1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56c0b3f1b0f2df2e1ef09a9ff516dba966a4ba0589568c0d613e71dbd6ba1109
MD5 99d9e0b9bb131d146687ee2aaca1640b
BLAKE2b-256 e5d648a6f2f92c6105004cc30b9c89c960f02e460787e94027ba5f96e3ce711a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11188ad8519076639cedb6f51d1aa543b553817897b3c9c62bcc3a9d462b834d
MD5 61060e9b85d8dc99aea6a02a6d5c3a96
BLAKE2b-256 0032df77f9f4d43850ddc7dd166d4d53a881cc077b1e04427c5b52a1f87dcce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a21e0f678329ba4fc3cb02e032ce3bbc86e8f1750ac9c286e5028f911f8e97e
MD5 0a78efdffd4d9127a9ba4b1f5359eaa4
BLAKE2b-256 143719d51768b4b3c2c4e50db394605ba80b94b697c78be5ee16d6396dfdd087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a6093bc0bbc233a9a3bb86a3a9718a2403edd010c2c3ecb1f3924b600f7cd2d
MD5 5209bc511802c0f5aba9ac0353bce87b
BLAKE2b-256 c99e1a1f734a5a9ee76aa8315ca9b1528cb71727e26cfbbbae8d76196896eb4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a588e4bfaaff280d4d0f42dcf17d08e80887c201c899054c7906eb72d905a334
MD5 6712f368a9806a8ddfd5608ef79f0b62
BLAKE2b-256 a922b7d270079ff9b768756743ad0fa8018347bf4f1adaffd7eaa1b7bcdce4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d609993d6786704cd5b30e7bf1b47ae2a9724cd2d8e0f19f7fa06d11a0b339cf
MD5 bc133ec8632aaa2cf505570a9670fc1c
BLAKE2b-256 af4c52c0a80808a273754968256149e8a42e216c7a039a42bb7189ef8d4586f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f7293a498bd600d5b3e59efa64df56d296bbe4b43e0fcc776201917e8b14e5b
MD5 0012c8e63580744729658591af1152c6
BLAKE2b-256 0fe0ba469ab39d6ef0656bab5c08f0fc6a0c4502af933211cd07554a12dcd613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 911e1c2164ff7385cfdcc9c4da176f72b24907fd1457d06f1b1ab7b882c488e1
MD5 7a3fcaed9a7181dcfd7fd078d13d57e7
BLAKE2b-256 b311f44a8b4e4b677fdc89b26adce09ebe3880b84406e88a7235d4e1093dcbba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92b5b91fb9c64e5dc6c8a18ba30b6b5bb4e1c2c7ecc63bd21f7cf886fa8b844a
MD5 445226fdb4e18e59d8e5706cb4c8aaf6
BLAKE2b-256 ff7a4b6d0d4ab9638a42184b2113542476847eaf0cda73629a892140010df679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1dc46fd6029152a0c46cfab5ddbebe68823cee36c9a10a9dfaab6ab66f0e9a1
MD5 0e54ee9a0f88bf1c00f85b0b81e088be
BLAKE2b-256 7448d41f77d7ef922f1f6f968dae7b14940635695b974d8e6d722a2202c15767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f360e916280b8684ff2904d5664e3f027955a8eee1c0609232396e96c7d007aa
MD5 31d7c22c69db78ce4765db4bace04075
BLAKE2b-256 35d6cda2f8b9b9e4e433a61c89179466c31fb6cf5520bc584b537085b94853e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 497c47c3d0cab73653ebda44fc0821e63e26efeb95cfefed2780818839f01569
MD5 fd90f1ee066095017d7232a92d47cb1f
BLAKE2b-256 428e98c8b096b2d4f1177cf452d3389339b15d0dfc558befddf5b98d706aa9bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ef4fde3b1274dd1ecfd5c8cd538cbbaf6016af676599065525f7e52188a56a3
MD5 ca9ee4c25c2fb8028f4f5bcaaacee87b
BLAKE2b-256 24b3e044d5b180af4f0ee0fb72391071c766d74df6328c4e045f9cb61b98b6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd326e6c3b0204dafcc1b6281436ed4bec02cc5d87dfea7373d040276068c0b0
MD5 9bb79dfa846e57070ba116c09477d124
BLAKE2b-256 eff50dca9bbbfe25db6d43b8070128c9b940928cec46d5d3d7a1ae1f59897fd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3915df91f7b32cfb7c564703336390d30625d7a59df4a7529fd08d9fde5198df
MD5 e6ecd331c8a444d7c8a7097103b8e259
BLAKE2b-256 c8d8cb35650625b823f172806536cd66839811f462d43efd833cd6c3c094fe97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c568c06501b37ea2aee6f6a28f57b84ee2686b6ed6d7e554a914bfea187e3410
MD5 5bc31b222569425aba5e2f6dff711f00
BLAKE2b-256 e5f12ca8ecdbc5b20d2b5c8350b79b0393c252c342beec5fcc99da7f0227d30c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2701abf705eb4c100c01762ce75a87c80e6d5a4ecf0aa210c33967499c7fa2b
MD5 7391ff28990d0ff65f4d1ffdb1240e6f
BLAKE2b-256 5ca5d05218bba65ebce6e595bf154dee3b03db3dd47843b5418b33e7c9bfdd13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cac9b611076799902375264b4f2c032d81207842379753f7041c68ce15daa0f2
MD5 f85d59ec6fddf403e5c2a280d13f02ab
BLAKE2b-256 df3a346607b2865dae536e127fda277c87b20a9fb86dc10e9bd2b63bfae8dd27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49e1ec0c9243958a3b7899f15bfd72e298b347f8da2e1c3ec30b913026f8e3a7
MD5 80fd25952a4fead6b01a184bca067d96
BLAKE2b-256 745d57ab2cea8c14e2262c0331cffa819ecb7def6f233416eced44994922c3e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eefccf830e86cc9d81989a64aaedc3a9129bb8775cfbc61ee1d7e98da6efe460
MD5 458490a34370b9bb569988c25e958a40
BLAKE2b-256 3569c9164c1a0b06ca4bee09d138a7fb7fcb3291841b760d92b777062a706d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 991eb108be98fba3428daedce272fcce7b55059a1920220ee01a706d629dc673
MD5 867e269e65f1c14288a4845e7c89c79d
BLAKE2b-256 177b25c916d1075b13c6b1a45c61498875b3436c5ef6405b03b80d7ac5940869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cca3e5528d633133ca602caf0cad2100b824921cd10f53c466992720bc24eca7
MD5 84b7ac9491c7b6f8735cd3ee7dd74395
BLAKE2b-256 f6a327b2b6fb7fec5447f6a7d274011f2d8acac451fac1d15068956a29226f5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aba4ac2771db1bac1905b5a5ff6f4b933c7a5bcda941191ed3be935b60f95e31
MD5 d5ebf486f2c78e367bd30b4e9cc41bd0
BLAKE2b-256 b9d07cf20d5e7ba237ca762c917850ac86a11f163a39e26b3a24baae1a8c91ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e09e34f379e8dc94867ca77cbd6388590a0b98809a130ad70ca21f86a537b31a
MD5 7ae10e177e24c859ce26ad2de865788a
BLAKE2b-256 9be05992653d50a1b76cbb6f9c42c87cc644c01e1aa09f263420a264aa652dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 115df0ede0e1feb0b5180345c64a916e0a6e7b83be75147ab6ad3c9f81c6e552
MD5 f1d9354a3123538d55433730a739fd02
BLAKE2b-256 795f6dcd4c5a07465bef4b8906d0a5c73f4196e73807a622866ab7af4b8c9d59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 505c30eb88befe5de6ce98010a6b9c9c1440171468c47370e5f5dfac087366d3
MD5 c19538a90b6628d86e0d001616cdce70
BLAKE2b-256 b717316650151adaa2de73e6717e26a84985621c27356322a254389c878bf244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c4ff2181b945efe84dc9ffb9f527712eef12bf0dd9f52104bdd55b6fe6474a8
MD5 07d43b7994a83de4d1c922525fe77d89
BLAKE2b-256 94ac70fe724b79de21cb451ed7801ee3c23feed63596e5f69d0d3e85eb3bc57a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78d2d3d0750908068248c071f8929ab762232d5f77f7690031182cfc714896f5
MD5 83bc9bbaf9fc8c4ddea9aedba716756f
BLAKE2b-256 496c943ce8ca7cde16b23d17c43d1d00e746daed32c54a42cc57c4f6388bd484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0560bbc081cd6197fdf9920c166fc8026fb15a9533fa3457b45501b953ca52c3
MD5 6c55f15d7409e16e8ee45e60de0b623b
BLAKE2b-256 4fda6d3a656e6733273864c764191f897c7a03c7ec052b2032221260b8acee7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce86fa003f64d33e8ecde22e9ec0af831ef3b2df04cd8d425873bec456d9a79b
MD5 f93a07fbad604e33ab0ceb0ef56ab0c6
BLAKE2b-256 8a5b65af61fd34617c0f9b0bca216ba270829769ed633cbb1a60b266fca5f9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f2cbfbbee169df4bac2457274e2a22b2f813febb30173831108ec4cb2b9d0fd
MD5 e88ef37dba430d7c49ef6dfda75f8db0
BLAKE2b-256 2c42b503be75fe53be84bdcd07eb9f97a89a3fd6768bdbf8c6b07b69b5459989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72ac790003af1d39daff196597dd3bd470a76151c4bf4ca42484e33409376c0c
MD5 0b08f3d9e0efdfe566c7a02e8162d473
BLAKE2b-256 1ccb400341f4bbee5830a8ca190a8ab6a2c45ca9a7e4358b51149aa173bca606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d3560eb3f42ac09eac50a591e437231a74b4efba19cddfd4cb82f5726038325
MD5 fde24af8c520f1cbb527e4b5f422a359
BLAKE2b-256 ce01959c793cdc4fde77a1f7b9923cb420553f1f8ee3e0e6e8b0f3b4beaeba34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad048c0b6ad733b65c17e46a586ff58243b4d585c191c6cd07f82d449b5e6792
MD5 90e8244153fdd35a09c16dd3e8a0bb83
BLAKE2b-256 e9d80d2dff9551e5eb7b4ca4d716eb0711290792ef93e3ffd35ddfdcdd6db2e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 469f0c3f6fdd559d36fc1dd244ae69e2096219c7d2dc560ef86131174a8086d0
MD5 89577296011d2167db8d057e0582557d
BLAKE2b-256 f082ad8e7c7be9fd91b3f3b29b31cbc82e7db25950f0b9b33a8375987de9bc48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88b7620f5bd6eb93354efa38e71155bd66dcade841d7f8eb4b365ea3b404cd1e
MD5 9fdf9f4631b1f4fd17710caa28e2625d
BLAKE2b-256 0c7eb5e895ee0b86d74cb578c1f639e4c71bf05d03004b78771182d220e4a218

See more details on using hashes here.

Provenance

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