Skip to main content

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();

Parsing vision generations (unary)

Parse/OCR models emit markdown interleaved with [visual_element]…[/visual_element] blocks. Use the unary helper (full generation text, not streaming):

use cohere_melody::parsing::parse_vision_generation;

let parsed = parse_vision_generation(model_output)?;
for segment in &parsed.segments {
    match segment {
        cohere_melody::parsing::VisionSegment::Text { text } => { /* markdown */ }
        cohere_melody::parsing::VisionSegment::Element { element } => {
            // element.type, bbox, description, html, ...
        }
    }
}

Go: gobindings.ParseVisionGeneration(text). Python: cohere_melody.parse_vision_generation(text).

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.

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.13.0.tar.gz (9.7 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.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.13.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.13.0-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.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.13.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.13.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.13.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.13.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.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.13.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.13.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cohere_melody-0.13.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.13.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.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.13.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.13.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cohere_melody-0.13.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.13.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.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.13.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.13.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cohere_melody-0.13.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.13.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.13.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.13.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.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.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.13.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.13.0.tar.gz.

File metadata

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

File hashes

Hashes for cohere_melody-0.13.0.tar.gz
Algorithm Hash digest
SHA256 c5741479225dea4073fc07973b9944703820f30f6af9f6cbbf1feba618371937
MD5 a6e5f7a4b99b8a20e2b3fb22874c8e83
BLAKE2b-256 8aaaaebaf254e5b2b78eac0cb199316a5afd183f4b3e66d376a218661b5f218e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c6be332a6f121dffdf4e8094e8ff548195ccf0e959fe872b83c4773c8587dde
MD5 e5e742ac1ae6c326e146341e6c306ca3
BLAKE2b-256 8f7fdc410a64db48eaa8daa7969c5a4b492524b5f2bd23d0a59bfce6c184d6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7af9a7ee9450e84b225d65cde297c5957d2041846aaa46144d8c5d29a0032ce6
MD5 206249963c87347bcb6e343511b61527
BLAKE2b-256 dada4f9a5993d704f2f8349bc817ec9a6453a4a256f2a12f068838106c3a7fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f308616c8ba2c2aa0088ccb2122983c57061dab5d5713b4cb05cf47267ca0a8b
MD5 d15a510b51c90952fbb6a44853d157ac
BLAKE2b-256 e6f43d7ecaabb5bd4d82900d2124b386ebbdd685e7d2f7f29f3675f2141c952d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33be9ceb1ab2e1edffe1e449658469b6bb83b42fa0c69e3c7a1ed7849ce5410d
MD5 3e1cd8f05375c68fb530f4446358f405
BLAKE2b-256 b21162c857cf0c6e50f1f11ae1b086a4e805a5d1e9b22d37da1e6721181a1dfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea8e8d59f4cfa8b16fef915f1b5a86b678891c44f2979fae5b050ad03c61bc1b
MD5 2c1675c6bd73f34a9ddc1ffdc85c8877
BLAKE2b-256 e32c3081a9caa295c0ef25d55ea66492c45671a80df0d49d5a81fcc837169dbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e664b63cf8d5b401d0947d920a40ac11a7e7e7e0912636ccde3d7b47f84e3189
MD5 8a60a7646907d69bdd5f228e23284687
BLAKE2b-256 b082737fc268480dc663913388380c177009826a586dedf0cc16196483657dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29a6e54c00e83c075ed42d0495cf7f0727420669dd59154f2fb416cd68fddd7a
MD5 395e4b6dd68a6eec13cdaf5a9df63c97
BLAKE2b-256 0d88bc130634d77b93b6dbc7b8e24496c993de830ba427004328e5937e5ecd48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9af862c6f99c4fe3b50838806777d93169625f9097a1133379f2157cba307702
MD5 2585946ffc1a80ed258989d4c53b2ac4
BLAKE2b-256 ac359d009cac9b0056ede3614a801a7fe08dc9193eeecea2e3f93036c943a658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 760eeee0c59e0ea2d568b817ce13552cb74c1ca2581cad0ddc05557129cc5ee9
MD5 6dba60c2281f88aa125b1d825c7f126b
BLAKE2b-256 a3025a36fd67e45773586484abfdbdaaeba3c06863d0d478c4bdd9979f167019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7fa801241493b68c5c9ce5e9a6c4335c986329058b92133b913d8738d1ef2c4
MD5 5c1a8eee521611b98f778459abdd528b
BLAKE2b-256 44e42f99e08d30524e8b54a33fc3364cb5309b2d5a5a1f39f2b15bc387881a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b811dcfc000660718b33d075ccdb698843bd3963f4f9943b389849701420666
MD5 63854798dc84f61a9398112c5b7e7387
BLAKE2b-256 89bbe4ba47ce532dfa8388ef66f0367c1c5b167daa90e58808e625c68888ae9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63f358dfb27140064ecb7d76b3a9d351241dc26aa13ca60b3e654762470b886d
MD5 8db85a36b3e94e552c1be870a34a8fb4
BLAKE2b-256 8b699624e54260282827ba9321d6ad3d7ad12d4f348d5c2626cf37258a514ae5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98806fa3b500bb1ac06c5f8ae192643d1f737556ba5325f63dc01f78d2dfb88c
MD5 771387120323b6d8ad5743862d5aacaf
BLAKE2b-256 1484f6cb2790c2155735c683dac5e36f89216dd5c32bf79a4031fd9aea3d2952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ebe52b0f3533a290ada4beb2883b235fdba1aed48e3740fdd92c0ca5dc09f56
MD5 001ae2b26dde4571f1f775be7763fd53
BLAKE2b-256 027597f07820987dfef7c57538832c99170a1d2ff2ae0d86ffa3fd1a80e08522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4196fdbe3417cb11eb63ae9ea7537413df908235b3e28dc3ce4858952a3bd12a
MD5 087fc17bd259220cb5419700ecf44aa3
BLAKE2b-256 f4158f6e183effc76ab18cefa6fbf8bfd425648274dedf69fdbf68372f68a7d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 159e0667809de8393604102f582b7cd4b4afdacf6c5b1bac071d36ca39ef0f6f
MD5 89225ffdab1ef9e47a39ccdbdac58682
BLAKE2b-256 d6d659633019da0c601ec765328a0a449ff164fd3df9aecc6b6d574c0ae4d6cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45733e7fbb15764bcc8de8aeb98a932770bafc42a38b940348d2f4580da90d83
MD5 e57761b9decf339f766844bdf03f7fad
BLAKE2b-256 e923f56e5d573a8e474d11b947de5638200e40aa11c057ddb61a1c952ad3f824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be85fb0f657834c485f122436094862c541eead0e43ba770e666c5bcd8537ee6
MD5 db0fdbe5650ba47659bec4c92b6d5d1f
BLAKE2b-256 4f7900b0b9a63a90e8a906df58851e3d91835e7a0e05dc035a5b2457e28f7273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30a319154fec48735d7985b44c162bb6231812dea4017d24cbdd5c3624b84f3c
MD5 ec1b9805cd479294d0ce457fa1980a4b
BLAKE2b-256 edd2dc43da69ff13f5d9fbda801c873c1642d12a6cfa248bdcfa974bbd5121ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad8a5da7cbf05948b2b0a1c8077bf3706f9c11c687d0aa0427a13e9dcf689f6d
MD5 f6e2a86a6b809fa5dec6ca5cf8216d64
BLAKE2b-256 f42b45cfb14bb98c9a2c921415460d2e34608e0a5a0fe274c908fe4e109641ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a280c9ca8c8de1a7bca4163863ce13e48a728b81ec5ca642b2882fdda15313c
MD5 d1f1cd27c0c3e02e1b61f04c0a2cdf40
BLAKE2b-256 14e24a6a7aad12706a21b4be927ee7ada3de52b1ed8399f45435d8705f449907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3fff50ddbf518119e46138b5ba05a1f5117e15109b8fda1b7cf403aaf068c0ed
MD5 667bed68bb337beb6877d1ca4ed7fba4
BLAKE2b-256 ae57d0b12f86d8d0844dcc95e56dc6dd7d6455cd013eb23e75260dfce815ff17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 346f4da0bc44ef39e143d9de1f03236f1c473733462e884294771527921c05a2
MD5 a5012fc25914c94e197cba1554f2a7fc
BLAKE2b-256 0246066e34b84645235117bdbeaa46a9ae4e03e186157527007869daf597ff44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65584a744fd8010d438f226206fc5fe0e6cca3503d8bdaf21d7004e42c9968ef
MD5 207e57454c6729a1a3207683684d51cb
BLAKE2b-256 6941f0573d271b310b530d990d60b6fb9fff87b5bede11d53be49c6a75546e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da6c4969525fde2c25fd23d5360506803b040561aade849d2a237ab19d9fe025
MD5 470491e7a45ac1299bb35d22fd752cb1
BLAKE2b-256 7ed1546c589af838386b49c1d7949decbf2036ae1bdfbc4437cd10644152f05b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 867bd9279a609359247ee58147ef9bdc1eceb5176210f57ae161be14920060bc
MD5 d6890e0967cc751f7a933e1451a9d4d1
BLAKE2b-256 d99a24637947e2037a53e2d897e4627e8c4b77a98baffd2db393150ec6fc62c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d37f7cf20fc14f9b953d285c47147441f1771394becb7f25e66578b7eb5c9c5
MD5 b782a7428ab015cfb6ff131f57956849
BLAKE2b-256 a70ede5df8363dd235928388cd62957d0e24e8768f54ab426dbbb5b5ea63c09f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 065ec8cd26132b1fa281a60a61c4d65b3f9978a56737576064ec7f58c33d3d02
MD5 07102b21320e44e8d0457cbf9c77fadc
BLAKE2b-256 7eb3ff69cbfafd1f1a3b36b04a89a513ad327d62f9bf139941e31aee6ede8159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51d6bdef0d9ca989739f0f6ec83791bd4ea76f6f1637468594b219b6af1e7de8
MD5 84aa3788f1a044c4e11e8464ca86eefb
BLAKE2b-256 9265fec70928d460fec1050048fc008b0b6da14379398f24213c9bdb786f81f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3da5b08ed77358ed0013f2dfe566cc8d4605b53a048432a040a960ea2734b0d9
MD5 a4fbbdab0b5eeea76744466469b5783c
BLAKE2b-256 0ebce50c43bf23bf78f7d8c986f5648bc73fc00691ab964484a1e024d9f5016a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 322027e4feb6844b87f0a72685c6699ecc08aff8b236850fd6b8af230adcedf8
MD5 515f1683cab838e4dc84e985b6033677
BLAKE2b-256 7071f9a82c00cb54feb527b5a75e2e5d41df1eba0c2d16d8ed7c25354d4e969a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b785bc4a335309aff26250eca20c90f6407a8f1bf38bfea7963527b74b11ea68
MD5 95edbfc1594f90e24cad44bec745950f
BLAKE2b-256 8d14896975733ed58c65189166f1d55c5d973b193443abd99801df7ee095262b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f33cf31c3c2c6bd8cc779b4c1de490f77e6c9cfc452f674e1e86f9e673574be4
MD5 5f0cbdfc92c65ca3c6b9d88652386c44
BLAKE2b-256 7ce49e71158df73de7cf29133c2e7581bc7624d25a1c830d01bcf00b0183a15a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2f48f2a4ab2ba5c7a17752cb8690bf9006fe1cc4538ed28cdf733a9ed929d26
MD5 1c46f6e69505c26abd24ac3fbc8acef4
BLAKE2b-256 5326bd26b330ef740bf2d2789c5942c5eb754f8250fd905a7a17693b832bca0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e26a3a1b6c8016f2c9c0cebcf6747550837ce135b8c43a4e397bc267a4ba2c9c
MD5 b6909cd42cb7860f4a22d1d08c6f5201
BLAKE2b-256 e7bd7c145ebbab40572ffd108bb14596cce522f9ecc4cae70aa1e72f8157e945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be0edd29b56be5d372b8d616cdbeb8d9e8f2cf406b502be612e2b9019908cf8b
MD5 8bf4e39125318d8583ad3411c1429390
BLAKE2b-256 27e51a3c8350ce036caabb883b39d8fb58b1d39dd052f5bc16653b05d906fa6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f7c2f38c3c985415bc48ae37c980714b86734b56f8761a89f9bfa93ff02320c
MD5 3113f04d7663691b4a8fc7b56410d8ba
BLAKE2b-256 f8f03dd0dd93a23a526f3cd88ddd08a2bcc2539de660d2a47c5e40f854e69b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eaec5616128514a990aad6873e4a5309176eaeb9017f71a9d8f8c07a4ac8f4a6
MD5 7967d8c80e7db1373437be4c29cf97c9
BLAKE2b-256 e1a22c681d3b91ca5650e8c23d7e38250b19138bb1808ca73eb38552d75f89ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18f9b1662d94c7e4d020eb2e718fb79d69aa52c6cce6ed51a3ba26e4e80d273d
MD5 b4607e9efa469e960bd03cfcd048b68b
BLAKE2b-256 8e3fd80081782389a917e2c137af0c433916e7968905e0b1f9a41b2b21e855a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 026dd001abf6fddfeac0daebdd65eeddda15c10ba029ad52cea9b7b281024382
MD5 b5f3d44575742dca43eb59bdb0d55fad
BLAKE2b-256 65d01637491e17245e343994cc81c786b1aff5c0eeef07c7838c0131eef33bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d774aa849160a0aa0cc25e69aea347c3c0358ac5482c663f277b385150854a2
MD5 859f10d8a60ec8ad9ea2a2293d88582a
BLAKE2b-256 407fc94fa0c3fd4f0c36367e458a4b65e6e3aec80005d2193bf8c372ab0eb298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f731c81f7cdc3082e07254f59cf23b2e2ad3bb6f6b9d24e7160245c75377d882
MD5 b50679de3d3deaa8592fe0b9b489d8b9
BLAKE2b-256 4b13b1017ca918a097ab73f9f1dbe3dca218bb4e412ee336ad6a6a9faa1e8066

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8396dd2e35c59f421d5f7090b00c2dca4dd6c946394d716123945d2579868cf
MD5 202a95e591d11b4978d91526c7ff0957
BLAKE2b-256 e5bdf596b21f68558ef2114cab4c05c1d08ab95ddf422079b734284b27cbbd4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56c73f43de48d19037d76c24288ab0a22541f91424a6fe348f6726888fa8e245
MD5 305bfd079d666da3b2ddd5df8d0165e3
BLAKE2b-256 f46e074577632b4986148797e81a9188330469745eba4cf42f1672b9103ddb7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd78a2dc8b22217f58cb93a521a0a9e6ccc806d7ba03da6547164e00e948bd5c
MD5 e34a8bdc31206fad691b5949d8c63696
BLAKE2b-256 3ab47bba8c68fed77ab4a042262028602e2c25b8c68360e1b00a1578919db6c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f5ac92744f6e003b20b2c90abc0db54ef4d043c8653e422d9188eaebe354bd
MD5 d070834dd98208417ea131951a846915
BLAKE2b-256 30b2ae64d898ea057958f5e054397283e13608f6a48dd1e0d7e2307333e03078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fd3b89cb58674d78819e8c3cfe99b8a5f5efbc68166dc7eef3b56599678424e
MD5 236132f55e96bc2d1c1d96352caaadf7
BLAKE2b-256 7f75ddfb21f208d3ae9a13287c00fdeddb9d19a2bbebbe30080e789be7139a6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d57d7a33c3d5552aafb17a0f87271017cdf9647a517a4289c7848c7d00367af6
MD5 517f759b825d185cbc46bdd3f177e1c8
BLAKE2b-256 5202b8f15d939a05c42c73163fa5fcef0ef025dfe76dc1e115a906709a04b19c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 367f18d7868496c302684e6ac8c3091bfc9ad6ceeb8683741a4cf607e889bd20
MD5 e3d3b4c6f0e40028c198bfee0c2fa7e0
BLAKE2b-256 6a4f4a8a3d3b987caa55f5493c5d14a7ccda5d310f962dc8d26221b0deb74e0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9967dcd3d3902d69a2eed76b50084f48d9742f8c3d47cba2a74a9bd0f2a64f45
MD5 149e06eab26114396cb43b5689cd35cc
BLAKE2b-256 4d657b21198d8683c9d9a4fa029f611feaa46984d4085b9e164f5ef9d0b3754e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bcf0aaa3de70c86cd5bd39b41df9bb234e8efe76df8ae71a498c2b61d3b9909
MD5 d73d2af7179ff31dfcae73442eae764a
BLAKE2b-256 8d61bb67aeda041d04ef4496259369bfdcd447a4f8aef6c62b9727bc147e7916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 119866d26339849eb738cb7992ae92623a2bfa9d92f3eac32e933ac9ab497e14
MD5 2e9970a4ca0bdf94dffd632bcd5a6a34
BLAKE2b-256 73e7aa434bfd39865b57cc25ccce2b284569892ea4d39ce69281e2adc693d387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61890688fd77d88304274874b48f76556d168fc7f42d2f3ccdb6465e98a7000d
MD5 58d6afffc2dac373e009cfbc3c88b07f
BLAKE2b-256 084373f07c200f5e85ad40b4daf32f0e2db87730a5a3f120f736645a3ed224d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 544c5c2efb4248a9a25757d729c32a5c69181ca22c29487c95463852488e50e7
MD5 368bbd9ba13ed7a75b6c40211d7646ec
BLAKE2b-256 29bfe87a5082cb99a7ddecc22ac7b905b357a042e54fe4ee6f734d2ec939f133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8a5332d62372dc6e1bf9f0ea4524821550325de64b3d5a3b11886c7b96fad0a
MD5 8ee0fa02e1b8fa7e7306b0c370db6c05
BLAKE2b-256 766ca4c24c0f8c63af875de0b4a4678dfd148a79be23c3a45f763342410757fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e8b2a425ef1c8a03094adc326f1606207a859d73bb4eb3668ddad2b341cdf0c
MD5 04ce7c71b15671a27a27530eae020806
BLAKE2b-256 6cbbf0748f57bd607e6dc5fa63c246fb1d4a474f808cf12a05e8db4a0942fbc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d02ed42a972a0c81c263fefedf03dc7d86244f4cd9049a806b35cc30fa2b03b
MD5 0c35135dc8ff2199c7a6876b9c0c131d
BLAKE2b-256 e727f374936bb2e5896a205e82702543c29453293788f6841e0dbf09c97d10a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 381763e8988607b9bfa589da18254cd36d4c90bafea1b8ffe7416d7e3d6e9aab
MD5 df4d895ce33cd0f9634592ae8b717528
BLAKE2b-256 9d1d62bb246a9d58d6e0033bb3e28545aa144e50e879c1eb0ad1b26259aa059a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe2442bf81554db76bc7b3f34428ed77346b7263aa40926d4860ab6d4415082f
MD5 203d23cc3c102c7e26ee6a352be0909f
BLAKE2b-256 9522e60d5607f65d4993e3a62950b2a53e8838ea8981c131e53518cf8e205faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3094242a43741de0c6c659af8a27b72ca1ea49e9ebc609b5af5fc4b9aba922dc
MD5 96a5e64215484aea9565b57607e3aa58
BLAKE2b-256 50159b4f5d36b8113dffb7dff6f2f41a3fee4e448d383bb93312283e684fcd7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67ec356a1d07fa4bdec764a5a65a4a44dabe716a642af3689579085c5828fb8f
MD5 b2e6730504844f65885967e0f0b4d22c
BLAKE2b-256 d167936021cd3f63a3a20ad403b2c3b70decf7f60d7e2093bcbd719f1f5903a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f09c2b8a7ae6b6dc405bff76ba7d49876d3d4fbf1599d9224d09f2e6b8a67a55
MD5 b64f567ccc3857cdd5a25359d38f7d18
BLAKE2b-256 d77c90e400d851dcbb04f6be1775df0200d6f867ad1c7228b928ef2332099f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b7fda89474ae7722e0143184264aa0c276181c3c21e51cea5b77561211493e1
MD5 888f3d9bec61f38999ac9456c12edc18
BLAKE2b-256 8d4dc1d30a314df2210d6c334ee7132184a18f4b5316a93c3822946701300f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 034c93e46c8f2713aa5b9812652a7936f8e2e4bca3b6fccefaa9471718e04755
MD5 a19fccf40d761d7a794dce5753af0582
BLAKE2b-256 c045a4a574b313ec114fcad11b39bde48397190c4599f273e2f12be4cf9baa4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b91f63eb971b2e652626bdc8fae8f21b86b1fdebe2d8b3e3122372afba5d5b95
MD5 5048da318012301596a9cac47cfdd3e6
BLAKE2b-256 caf4bf16782a66a3e7f61834f99cbb83215373a09d701f1d659f3473bec0f127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3431af65084c473ace003cbc9d28a6d13971c8db586db7955690fd1311598de4
MD5 5cf003a282e24779c61c6b5ddf84ef12
BLAKE2b-256 8fec9fef7e87a008f28e82a4f47501d2239d702a65c994ed13daffcd803d3399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f233415b9dfb288e379acc027d841242f94583f7eb836de5fb2e74b9490fa9b9
MD5 601198480e03d0be5d0275a2aef789e2
BLAKE2b-256 d7b92a1cedfdc1b15a5030caf7467c2bffed621ef23a69844a0e6fc4dea5c4b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8ff205a3d7681fa28ffc5b10c024a18ee94c5b6c7b32753042882b36760ad5e
MD5 cdc836bdd60b517f2e2e696ff634efef
BLAKE2b-256 7c65e3219d75a8951324acbddaef06e4b2c48f3e305958f01ba4c555cc84e164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa54dba6488db72dbb6b1f77eacbae9ec9c14f61faeb94f3acefb0cab54f941b
MD5 46c462e47269e8eddeb177f748a83b8f
BLAKE2b-256 4b73d3396c41884cd8942a2664b88d994be06a6681b4147401fdd45f3e2e4aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 256cc1f5d7f8919345a8f27f79acaef2bc3afce6a6e17165aa92a4654819d6f4
MD5 5dad0041c4e8ed8ba1879652ed725af2
BLAKE2b-256 5dbdbf5e069d6e77dca35d3caae9aa20265c6ec234c23d59b46a512bde74736d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f431d55de88ae084e9dc1a64a833d89f6669ca98efffce5f44059bd6d5e9d10c
MD5 9042968a1fbceea7ca6f113bb28ac612
BLAKE2b-256 94a1e1c6f6bcf1edfc8151b249facbbaee7f64ba07419ba81625077914e0dae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e733242a668628f7cc1d44f906d990b1f6e8643b9d5bf6f54266f1b7340485
MD5 fb84f56ef51b42b599d381e104288a15
BLAKE2b-256 a9f24b02bb831697b17cdf04f8a3ce87a2402d957a638d1fa109a1549f23e1de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbc9c4dd6e9f1384ad09d2fa296ae6a736749049cbadeefdd24858540546de66
MD5 52f06f995f54cfcfe43e52db7033e007
BLAKE2b-256 6bc89aa96ceebec8cc85a2d7658fe1ebcb08bfab502ee98d776171e85ec3742c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 051e3527033dd2414e03001678777c9845480071c562fa88f6a5a4d1971398e7
MD5 7e3bc63e9d268e52637df4c832bf3fb8
BLAKE2b-256 f368ca636fcbb138914363c9605c0dfe1e87d7f6e84a7d999467bac37b79ba41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27f258263534b99c685faa8e8e22cd627008b4e7abfb39f0568854f9c7f58fa2
MD5 20b2f152c41ca464df1a27ff10220952
BLAKE2b-256 52f031cef89c6e4975e2f68aad0e3e2ccff2f9aeae8205e53b0e291ff8e99a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a16fae0913ebed400e9d2b47e84c9d45522f8db00b626c747c68528eaface5fe
MD5 d7204e5bd430aa7d4df4591fdd34f9c3
BLAKE2b-256 788692d2cc75ea06d46f5e0a61158935de825721df098cc4436725520946f9c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6718973280bf8b92823cd78dad1e9782b87ac14815f65046c3f477dd2f5af95
MD5 39c2c2ef73bcbed2f5e1e0b353eb7e31
BLAKE2b-256 1f1725c61d6b47daf8f89b9c101755c4bbf03c9bc4f39c22c558a1482c1e7d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16d99df3a3d1e15e1e907ab7d9e33a2f68d8f17a75c170bfe3d67b4ba1963641
MD5 4e7707c4d3d6aa92dc6f46c97edcb3b1
BLAKE2b-256 7203416a6ccee08f535dbca7cb29dce0e558b0455b1b87e3e59c971d90a941ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb9c3c82b75c64c2bcc197cda42fb4a0c97f02a694c10aa0b2068c8257b041cd
MD5 94166a2d34c0c5e44c44d35f3709102b
BLAKE2b-256 244aa4190e2c06285fd565cc3d4b7f39f5b0ba872a72c96eec63bf8acf4b3767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d06910ce5b3e35183bbbd062330e82f2139539cc7b9b16fbe5bafcefbe27ffe6
MD5 ea01bc5c69938fe74491a35a6cacc05b
BLAKE2b-256 d649bbfbeb18b22fc4cdb6126283650e52f7ba5cdb01b0b506eb4b11c8ddf493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9db6e861cea83caedc33b0844d876d8a70cddf02a2cb79393c99fe92c8d45da
MD5 c705be8016579cdef82c6a0eb591072e
BLAKE2b-256 1eb9464416e6c057770fe86ba65b0bbb2294ca75f9582d19385b2cc1dd4dc6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bce232d98f61abe8d548ae42f61364850b944586b628ea2566034fc040e14015
MD5 9cdb40998755777155663ef6c60fb682
BLAKE2b-256 83c6f8cd8aaa33570fd77e4b1bf77af601c5d6e2fe573d2eb71bd81296ba661e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 408bcad31ace257e6dd44e9c6795c5fe08a5c13c15af9c2c81159e145ba93989
MD5 f13f7f4ae296a02bd6577dc1b7040d78
BLAKE2b-256 09c083039efb3199908aa5909b534605c31feb03789c823a5363d0578745fc0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb01d847feea44f4343857a8d2f1453078acea0a40c3ace3544be8bfb742e26f
MD5 8d46ed578deacd719bcc6ef4b186c86e
BLAKE2b-256 e9353f25d9a5f5b075f4462f2f93ca576d01f42ade38ffa5269897baa3236bd0

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.13.4

85 files

0.13.3

85 files

0.13.2

85 files

0.13.1

85 files

This release

0.13.0 This release

85 files

0.12.0

85 files

0.11.3

85 files

0.11.2

85 files

0.11.1

85 files

0.11.0

85 files

0.10.0

85 files

0.9.0

91 files

0.8.0

91 files

0.7.5

91 files

0.7.4

91 files

0.7.3

91 files

0.7.2

91 files

0.7.1

91 files

0.7.0

91 files

0.6.8

91 files

0.6.7

91 files

0.6.1

111 files

0.5.5

111 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page