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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cohere_melody-0.10.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.10.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.10.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.10.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.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0.tar.gz.

File metadata

  • Download URL: cohere_melody-0.10.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.10.0.tar.gz
Algorithm Hash digest
SHA256 666f23ee00fae6616b323b5459b575d7b572e45eb548a643c2c88b81a8feff5f
MD5 8546fd1bff92592a654e8b334b7020d7
BLAKE2b-256 7c841aa7f476861b6484d2102d3dd756c03acb7ba8d8d96dea3136333be2f962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11a69f7040b68f5f9021eb3dcae647283cf38b0891fe534f8655440f8d69ed8f
MD5 e287bc430792f76199fa139bddeb91c3
BLAKE2b-256 8a08859d045eb17bca69104f3bae70dd9b1552349134c2f27269dd7a657d7590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c1ac609a5a648e3eb4e19c7005a83a4ab56b5e8542f17c69e9354b654f9dd47
MD5 033d651c75c02515450f341f47ef3e4f
BLAKE2b-256 d237c6f73d32dee5fb72e7395f1b3afd366fd9e29f6890d875585f05549b76a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d337227ef2bfd8fd1d51c763010ba7dac80ab33f977c3a6a6ce3ce1a23d16c87
MD5 ea6aaf301847cc799c04d9adb10e47d2
BLAKE2b-256 bc59fcd9753f53f986f890e7659a8665e6a47960a5790e2c782b9b464ae1e2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27ac3ced95fe33389bb050bf8f09872ccc7d64d05f4e8b14d532dbfca7e983e8
MD5 f0b51ac3a6fe58f573dd13b825f1880d
BLAKE2b-256 489f1205aa9e1854f888a8c729bdd58feaa8dc12c36ce3794da0ac675a1d922e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 218a3f043d143ffbfd5583dcf01ec8070bf603d25190fd3cc06c1d9fe6f4c5e3
MD5 78e00ee4dcb0c1ee51166146c58e9d3f
BLAKE2b-256 406384e474000f9db92b638a7e27405737c79a1d7ff54fc93dd1fdbb6d3bff71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e5591d9b0c4528bec00d1c4315a3ec12330abdb057ca1427c98d872026d3166
MD5 d1c5115abe6b6cabca9e796dc8afe78f
BLAKE2b-256 b5c2d615a7e984589f7b17b034cebc4554861a299b15fe6df354e83a7c94c9ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9df089ed8fb7cb3c00be3246d301c768a0035e632a6df5c38cac9f2e9adee43
MD5 5c6d5b0944bb31d08b6709c23ebb547a
BLAKE2b-256 e40cf84242d746071bb7efd5f81ff17795ab1f2cf3ff452ddac2bcd40d29e0ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ccaec7d73488e1eb94f642d25ae600a75284f1cdf09c8d97f835442785813a7
MD5 6d3cd4c106f47b0bf560bf5f6c1d0d0b
BLAKE2b-256 263e4912dd79714db4109b2474cd75dac904059739db00e0308178bac322e481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e03e29ec4139e6aa28481242f530dd078a75d3eecb9e9ae1113aae63085e86a3
MD5 a8e3ec6300c6c801709c930d366bb03f
BLAKE2b-256 4da8d2d9431a5d665f4fba9f229091685b80693bbec1a01f655c977413f6620b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b9851e2c39932c30b136bbc822a3f750a47c5bd73e08691fe1eb04d36437d98
MD5 7e733830c66aec8b9cdd6380fdc4fce0
BLAKE2b-256 5a4b82d5f11c20fe1921491c4eb4a29b4c40a38e8b7d3ca1bf60d800d5695787

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fe8d90580ba0d247ff011ce0c38f37c93f3def73bded5f8aaec5645b7ae98b9
MD5 6b35db0445269be269f4e905bc5fcdaf
BLAKE2b-256 8241fa5a2db6541908e44c7ca2eb4aec6055dd9625da00ff2138278987776730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccdac0d1baeaf8f5c1280102bc96c58c5df9b1e9e68bf060f98ab81ede4db1a2
MD5 1f14bcad45e99488cbdba6ded017f287
BLAKE2b-256 854430250e2bdeda6f672845183d0d02833144bd6b97ebdc493e802104bd2380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 039221d6630f7a8ccf6761f7bdfbed62e45b9ef9aade5f5ca95d7313b507d721
MD5 741e87f144301023a4ba3af0c930d6d1
BLAKE2b-256 d11a176727af5ff66b912883cad26161c5a934a0146b785de7c0426c41f90f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a1c17ff9f43c7ab8909921e54be65c2d5fa0b02c98ee1fef44685bc79e38746
MD5 053e7725476cde7b4b9830e3e014324c
BLAKE2b-256 06bbcceadd7e5d1a70116d10ac2304083cdea61b6d834dfde1c2b6bee07c5bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cae9053b11b583a7b84907155eaed592f86955eec41c3fb7485d38a1b41e9b32
MD5 29060eecde418d9612522a84b6f8139c
BLAKE2b-256 aad024b7dbcc0f3c34a1a750e8d706abf62a31207093fe31a1e4c3dee4799709

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ad0e52271cc26637f89e656383be313508e9f4f153b15f7dfd390d534cad9e2
MD5 a55afffa5338e5ebdee70eda12129e97
BLAKE2b-256 8b3bb2e67af810c17ae342b4d5678798b49f14bd1234cea69270be150e31cabb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adae76e26516172229f35d31e6d457effce78553559ceb83c27478d6e68e79b3
MD5 a19cb0fad0e4993b9fd38df98ef15002
BLAKE2b-256 8b10494ade282aafb35ec777c8d0f65cc31de9be9b75e5a421021c57b1e06f7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1169ff7006bf5438b942005ea465599f9f6032a58e14532eb34772f54f1ae387
MD5 9fa7dc1856e38aa9329d35c0815db847
BLAKE2b-256 6a925ba3b53ebb8a80d02e8f8a5b709dccd00dd2a66761e8dd1fe019dfc78116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8b7cbeedb1c1c3ab7cbd149f675e9bcfec42d885045477847de90b71d4cd3bc
MD5 c976da76eeb33bd71215f4e75c6f4141
BLAKE2b-256 a97373af6e29699bad3adbdb800125540d43c56c535897ec974f1d7de17eac7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c759408a787d03f61e75967afe4f3c8fce9ae36ba7190218bdbe60d60c1a558
MD5 c7707e8edac80d001b30acebde154b25
BLAKE2b-256 0dffb1920533336b54d5d915a22756a88e08e8d33f4851c32f382d28659ec288

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dac6aa41846f83629bfc5c830dcb84c90739e9236aa031b6d899f280e9cf35d3
MD5 b2fc89db17ed72269c83ae89e7e2bd4b
BLAKE2b-256 c16a72385e4d79c12599b34a69752014363c178e7210bed3fd33e27209160e07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 31206d04660bdcc1ffee93fe15b97a0602cf40544446c14f3226b92ac4ea62a2
MD5 c44992ec27fdaa81da5bc29c37e87abb
BLAKE2b-256 a15940e3d17c6cb6d2b92123cb9f54793c6e1c450085302ffee96659fb340110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69ac97b4a70926d42d97c1110ebacf8016be836a00bba8b692645473621b1bb3
MD5 bcfea3f2d1b4645fd8c48e02603813a2
BLAKE2b-256 5a0f25a37901f6dcbb35dea48ca835540fbf922e3f16e083372da2d37cd1437c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97be8a9ef555d5b17156c3d610b26f0e37c88aa6d2c5e07e510742330dc57b1f
MD5 72305ef2176afb1b33e9e07295b5feb0
BLAKE2b-256 80e7fade9e099f57fe67ad67e809272381b74d0007a922e08ca12cd178932651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e15ab8d02be97ab3093d89114a04b091b7bac26f6db0f6d518fc6a3ffd637fe8
MD5 d022bbae5dc8ff3fa190ef9036b3a343
BLAKE2b-256 38d020e179de837716e7b803572d87d7c710694efda484ba123427e00dad4364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d8c6db2662561beec7bdaac7c42e85851cfdf84336c74b004da59543a7409b9
MD5 3242df2ad258fe2e7229db53eeac905d
BLAKE2b-256 013e716556496587fcff22d0c163d12136b53910c80e8bea80b598e35f858555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9266610909a187b2b0854819500ecdc72f27929f1c5fe52875dbb8766a27c6b7
MD5 4f4934c107a05df7ac3c2f11a35af354
BLAKE2b-256 be98becbcdef88a2b056297142cfb1d63cddc62f09453a7fe8959e117dfc2603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf331e948d905be39364d017efcc4e45b480e7e01c84a96d6d9fac0d467ce704
MD5 65ac51fcc7d3a3715e1933425f632433
BLAKE2b-256 4394d30fd88fbdde16b13ef49f655834a401ab0cb8d447f4532994ce97490ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af1cb1f7c2b42a29c4f70b57fda07056ca5babcc84b56e185c933f11ea311e0f
MD5 b5059b1dc7b43bf462bf272cbd809137
BLAKE2b-256 ea8801b30c3baa8a043adea43b432cf6473b6474e4106359984e1f492c36732c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 360c8b7f81b01a0d1609f0d2068bd2e4a74ec7063f89f8c18513ea204647e519
MD5 f8dd0b02c86a54f3e1e711dceadb8b53
BLAKE2b-256 32d3cb1391daec0492caa954c9e20b15f2af96380e88538f59253052eda5aa16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8b40445d92f3d80c9e68f99abc6c88a34b82f3fe5d0149d94fc4ca59e5f1840
MD5 9da4c3eff7ef845adcebb47647a64aec
BLAKE2b-256 e42efeac1c5d81d3c1e0bcd46be86ea2d6ea72c28ee97ea8e50c2f6a06b71bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b96f8063a1503f203e519582a9a1138524c3e45ea15bf95a70bcb031ca934a23
MD5 f65bf8bf71c9c4ebd86d48170e73c691
BLAKE2b-256 9ef6c55890ad8a52f9e6cf515e66906d62a45e0c7532d5bfc0ee8dc7b753d707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b818ce9a1fb4d3c5e9641114528ee4013765708eaa848514368fa03b92a82fa7
MD5 fb753fc13220f9e7dd4ba1df231ca6fd
BLAKE2b-256 7120d2d1cb1456b822c763211b6aa3385234c58ca26da250c7c6d9f8ded70e25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d7e7e934019325121458cc43f6849550f5f52750052f4fd7781dec8a8654aa6
MD5 e6499b321aca170215488cf0219d70dd
BLAKE2b-256 835b10713d307c3086a0aa70ca93cc2b7c9acdb6190ddd09b90276985d401a30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4d0ae0d867dd829e8a70b83b615bb1cb870b83afbdc3321994bd54e05de07c6
MD5 94287582d2318ce5d2549a023ddfa6f6
BLAKE2b-256 a1fc0cf0e7c62f35e5b58ee6f4c3f0c05ad89528cfa43ec69ae62f4e5e0ba2b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74edf184bde7d5ef0f0c02385eb44dd8eebb333de33d620abf914384f405a87d
MD5 48bdbe485921a305cd17bee7250cdb01
BLAKE2b-256 0597f27cef491accbacb927a4f5450c3e2140e4b1e677b7233136736b55bfaae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8960c4d30355ecd9ba849694d9f0cee244b192e3118ba75e8106d201c29ceaf
MD5 293520d42fa2f0d14aa8e654f984e140
BLAKE2b-256 1201487fee2da460f03e000d4610d66322ef4f97c65a747ae93308089de7e94b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88d7e922356676ce5a43fc6b4fb7ee58e231eb0ab05b7a31dbcf598fc8e125d3
MD5 9cf8b2bb1ff58ea4a179e0aadc25f701
BLAKE2b-256 3f18a10cbde75c6373b6ac3a87f64d2f5246c7d41307f608da4d1691d08e761d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b1694eed7a1bc7639a7d804e649829342e3a45db3f6b9d142f76c9a11299e0e
MD5 3958ae4c1ebff8c3ff06a1c35dcfc8f3
BLAKE2b-256 d52f037c4e010776958d5e479f2d3a21ff172f8118ed9b6a3317aa268d13a046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd0611e5deacd67ecb88053ac81952f1b7507d9166336a60a7b83b384f13707
MD5 c6301170146ba4ae7ed5560442bdcdfb
BLAKE2b-256 a7dabbdb31e47ddaa486cec5d6193c6fd34d513afd2596b1c991035eece840da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24548178687ae6f83954b9f80a151238a2aeff2428f585ace463dd04c174df7a
MD5 ef4eeff1350acab00c27f330d7251bd5
BLAKE2b-256 608f88c9f6a89a08c513309478d4a881fdc356e9a789a4603373de361d23702b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fe0371459300a5c857c1c2f777a4fca1d73351b1bb4523edb01da86a91d2c7a
MD5 cb748e7091c9ff4043cb2a1b33691a2c
BLAKE2b-256 9d9a11d6414150025f1f6b15244a81084dca97abc0ea9db193f83fd708370061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce8713e73af2386e54fd6f5bc026e6129b49648664820a6332f6b67c42fed265
MD5 a6e787f7cd1b2a064d5c98c3aad2c34f
BLAKE2b-256 a273f364793557bd1639bfda847781c10e5ddb6111b6344842f6541ae94e71b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c3c5e59dee9476642e472c9d2b29f5c35aae817e7122e881970606a8ec0ac4a
MD5 7afcafe69eb2178ca3c445b4ec499d14
BLAKE2b-256 f67979c6c8a3105e89733462008977e5f5e1bce872c95900bbbca2fe5ed4f67a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a40433ad7d00c4907691bba8ad068ede270d80d047b8a636e5fac46f737ed3b
MD5 8cb7a30f474731b8f58f5e750a66c712
BLAKE2b-256 94d9a10ef79d2e576350058ce25b4e30e49668016517066033e447a48ff37639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3910beaf1014d87d37564579f72b691148b425a723de85cc317092e33147e26d
MD5 f024d86b7d1b661a6045299e3b72b936
BLAKE2b-256 1cbd5943cd686bccc5b34fdac187fb9cfd57f0c2aba11abe487a841b9708b9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f49cf5742171297aa0c0ebc5f632089d8d1045a6305d814ef05b166923801098
MD5 8252f853073dabf416cf88f4e2aaeda8
BLAKE2b-256 87f5893100695f630b2508792306302c05f4cf85da5715b9e0302240ae97184a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00518cdc6740c0b51b12cf5a07689399a53785a6c651faa51a370307f1942509
MD5 f16246e3190745dfde4209521220e8dc
BLAKE2b-256 5c8c5f5754862fbd03d5504c8c0e4f69ecfc242f3ba94d468fa9d5eaced710ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a094e481292aa064f57a08041f0db8ab3f79f2f24852f5538d23745967317155
MD5 1e320b5a58471bf7ded256419d7fa54f
BLAKE2b-256 6a5cd6c3b0efcc8df6c6b60847526af75c1f4c7df44e3c1f14f14bc8f4046b9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 515f21c6d996726194d92ce3181532f3ac1ab50861b84636df54a4041ab7d763
MD5 b5d62f24a3e5c7d5a44fb792c2b12642
BLAKE2b-256 f663be36d81e6265b4ddd1a5f55904f1b7b82c4445059228c8d8b3a2717ad355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 883d9f3a7930e32ea956a4c95ea3534c220023944543f333e498d31547c99764
MD5 e7c278b6537608f0e766428b94f7ccc1
BLAKE2b-256 f5e86f1ab8c7b0a7fed459f4cb165f3caaa4812e781478b9d89d694c1c4ba5a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a23067a6b517118082c6abe2edd667830cb22d70d8b057f976b2a169a438c84
MD5 4eb3bac781baaaec539883ceddb40110
BLAKE2b-256 df67962d0acd3833f76287322f0660a5a7371dad0da6caed9af5b4e36f695e8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12e3207429e28983760e8c820b4e37963492f0f79ab9ab3c67d7e65cf935833f
MD5 9444ea33caa11ece69f37a2ed0d585ab
BLAKE2b-256 ab475c6ed8dd2978874e2660834bfac0ae20c44951312dfd8f6bacaa856f9c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f43a728ac095e170df5d77cafc90fbdfc6b1f16a0f80e5aa99d19506a98c14c
MD5 d9555067b8b09f2194982356f26098b7
BLAKE2b-256 4f4eb0172ded0372cc738d522d1a2dded3f99f6f0315b51f6c543f1475333b58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78e3fcb7aa50e5154220102bbc4b26eea71ba2fa60483cebf9a3424dc98eaaf1
MD5 01331748d0837e1e15b84f44ff67c96a
BLAKE2b-256 47ea1b482ab9591b8e4d02bf5b2f38af91e9589d6580df070326864cd64fff0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d5a40cd86cfaffc042e6d7619bff2b4260f737ce2027347958db362ad8abe03
MD5 141bbef1d35a95d786aeb620d9533527
BLAKE2b-256 b35443ca4d74adbbda2c0694cafd06fe355598aeeebc527f47327f5a00954eb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f444ff9ba4ea8bc93c5b2f9e4981042799135f6621f39836c62dce52e4e5b25c
MD5 330b287e3b946c5e26f33b395c4887f3
BLAKE2b-256 468fb30d40a6888ea4fcb31eb5ad9dcbd73a6def7b7358423c500c2db72c6f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dae7a688e35e0943582a73c74c44e52f027b2c3343aef013fd22ffd73aff45f4
MD5 766c5f68b9b4135b779227e316821307
BLAKE2b-256 ce4109bfebaee32e7dc537c19e97d60b326529b220d452480bf4cacb4211bd68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a1525f6d0966c5d27553fb9af63612715d03325d439b7167cc0e6f25b7312a5
MD5 db4c0e6699eff7c71025526ee81739d7
BLAKE2b-256 cec394f0ebf78dbb959c97448e776e2b7d90fb2248d178d4d300c7ac92aaf481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 008667ca958576711c86d510808940f178705e27dc2890d2f71d0ac258516476
MD5 2bd3a5fed4a23565ce891462231a6957
BLAKE2b-256 6a29a1668c30562011e26c7b67732ff4d10e9147c9d672cf631b02003b7f98f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b50ff45a95d10c1ca9743571dcff8a4409b884a7c616f1e1abd0505549688c50
MD5 d1713f596383767f19675c40dcfe050b
BLAKE2b-256 3937904cc3f24010dd5f82defed56f9898e1713624a3339eea6728637ac454d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94a4c3dc14677de27346f11412c9cd6727923d3fca00333abe71b8b23aad37b1
MD5 57975312462ddbc8ff151a7804d02011
BLAKE2b-256 372c5b553b15422cbe29445576c5a5a4c69108388248f91ceeb66f7b13e6c9d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07f244038a79ee90150c2ebe03e9bcba713a1758238533efb0f8ce426b54a2b3
MD5 9f7001fc69f741bd16b2e79200c59bf8
BLAKE2b-256 a6d5977926e6b0cdd3cb847a1096f9588a330741b44b6530d59ae4f9387481e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a4cafc158cf9dc9d7bcc83ff8dcf52a3822867c98e8338a6d648ccdbb3be618
MD5 d21717a5be4224e04290e1410d185f5f
BLAKE2b-256 11b3fe2a54a65b4e83ccb65dbecfb1a064afea5ef3dcc9d7a1097480e8b0f484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a8662f64cac6d68fdec5d9c6ab9be2af9b73630ad6b21d506a15db4a8170e6c
MD5 55c5d5a9343eb4bf187ce15c0e3cd118
BLAKE2b-256 f95f2ee77494c22b3fe841235f836f99ea0d56aa41d75450fadd442a2206eeb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d81303588e249808d0daffa5f07d6357fa7441d7d7b13ec0a24db4069e35ebc3
MD5 74d045a454b86a1dc0fe553a3e21a081
BLAKE2b-256 5d50c8274ced85c14ff76c32879fec9a0dd6d1b22bcc6ed478b122cf118d0636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bf03f44c779a4af4b945b8adcaba41432fbc205ebcf9272fda9f2be2d06731d
MD5 51d86e4cc12c7d3180815c33d209cf78
BLAKE2b-256 d5bc9ff4585082407e99e7d84e5f2aa225ea3c302f6cfe8693619b4d9634e8b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47ba105fbe6e5b327d96ce15de77df158f5f80af35de514e103084d7c0ed782e
MD5 b8a5c3cb3172e1a897643e4b2aa670c5
BLAKE2b-256 b1781b0001933e6dc7925a09e7e730380cd3226f63cebea8c66c956a62673614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9fd309caff41f891167bcc0255214d8bdca54ac1bfa561beca47b3638ab5a0e
MD5 11c2fb8746b0b031e7227a173beb5f6a
BLAKE2b-256 d64433b2d717da3dc6d82bf34768cef1d698069b33055183a926344d4a449216

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56afddd3ee8ea6a532153cd54fd5556a924203c53b2586fe502d2296de118f08
MD5 209de4d8084793169c652008fb44c0a2
BLAKE2b-256 1d0b3ccbf465f51cf0ed58f2b545c7ea9fee6f4b5ab4dd37b560ba74d53faf53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc48c542d4b082c8034febc5b4f84508546713319b78f52249b9ff539fc1c070
MD5 69d51835cc98377449ae372ecb0b49c5
BLAKE2b-256 990f4f3c8f55a063efbe6323764f1ca5f76f5c49d17c05df19289ae27fd2c16e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98be28ed94b383cc193b8ba77647a96b5f83526474957cb520b7bca6da17bd6a
MD5 0ad39c653db0bf457ee6a38ec3ce8ecb
BLAKE2b-256 f48a6a32deb4b613b35241e05e78882e317ef662b94569a77528c478ccf1f8f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0608c7727d0816888b9693a1274e9e5734c14484a0313fce6d5c96c06610786
MD5 ffe31e9d33c7f66be403756ce3e5aa2f
BLAKE2b-256 c9dc59238840a3e82d217c8b0df893367f7a62cff3723aafbddd570b0e235c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bdbf988508c67ef48d9681ca447a94c2177ea70193a8bbb1cd540621b78537a4
MD5 2a65bf1b54e0aa71cf557fc0d57289b0
BLAKE2b-256 3e1f9ea193658476c1e821c0ca6fec1a0478877325f3b7836a54080a7653ac11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c615e3d02428a33f011abdef74de94e916b1e07cd9ec4e7ab1670ead55e6e4c1
MD5 972dc86d90a4911e8ae2971f5c2ab5fd
BLAKE2b-256 15a5b51d6a7e0d1d55932978a12cc78380ff8b9cbd5a25060c87d4e001cc8409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c30022922deb18dde66000dddedae01aef2a3d3322e7942a79fcf0c7b3cb70a
MD5 68d647ca802cfb7c2b211c19b07422d4
BLAKE2b-256 470c5c875ce16a08c6f1cb8649ca6ed35b92d079b3ca707556e1c51b23269022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67e71cadf838797c119db6306e3738aa56cd3ab43041dc7a886c0a9e9528c5df
MD5 6c93ef26153956ce2d96f05d513d0b95
BLAKE2b-256 933cb95b61c4c9a3eec2a2ff5396d0c08522224781be0d55ab0ee5a6799dfb5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 139023572e1997906b403988a8fb91cf0ed907c59ea320c24d72f4821baad984
MD5 3e76c14555d4a3e4b6e3a80d198d9afc
BLAKE2b-256 06a9e37ce624ea133725fb5d66e9edc70ba0a9541bb8eabceaf3be6205afa79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ac4d58778126ed13b71960f6de0a99bcca07c7f8d47226d9478c4df4e3fd3ba
MD5 601041d1a65d0fb12de6740556f59fe8
BLAKE2b-256 8ddc306d95b68ac6ebc84ecec94cd598d734ceb2583c06757ef12cc26117f669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a54d5ee258bcf39aabe8f1b2843531f6d92b62965cf89f657bb8c7b6478a38ce
MD5 b5ee3c7dd196e7995a869acab4c20e0f
BLAKE2b-256 3bd7655dca8d28c0c85d673254ffba01d2b152165f3ccf341478b718caae0d46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c19f1894f73e419702a07ea90f9f58e19d6fd86b54d71ff09e9b57315f08df2e
MD5 0d80db203880d77590b2fa95088eafc8
BLAKE2b-256 0456816453ec906932f61ddfb63f197c9ac8984add6749c0b386c6a8013b0ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0058414e22bb75d88c209e4858bd0b0e61d5832888aa6ebb0f3e8900911bafb
MD5 11c1335c2cbe6bf464c0283bbeabb801
BLAKE2b-256 13aa19bc5f96421ab9a91a0b4c8b2cef304c7fb4d75f49d4fa07ac842973686c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc793c9d256d79ceeedc409f86d88fcd86c75975b1d940812cbac0a84cb51266
MD5 bfc4852554f9425433b86123953033aa
BLAKE2b-256 0b30057cca0a4ecc87ac9c56b36dc2c8d7b273658da56665dd0261bbb9b656fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9dd75f35ad1bb21c46556f236130ad461dbc6846512fe94a33cb15de0e654ce0
MD5 d8810cc52c2a34fc837c6379cfe54fa1
BLAKE2b-256 5064020951ae7d75874a72b45df2e0da8e73e64daff0cf464c5795add2b34c14

See more details on using hashes here.

Provenance

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