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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.13.3-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.3-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.3-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.3-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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.13.3-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.3-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.3-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.3-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.13.3-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.3-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.3-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.13.3-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.3-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.3-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.3-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.13.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.13.3-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.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: cohere_melody-0.13.3.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.3.tar.gz
Algorithm Hash digest
SHA256 171ab07840662f877143eb7c6b83e44c73f3f28d872a859592cb929e14597132
MD5 a611e466f191949dd991df28eb3b5023
BLAKE2b-256 9f7e0005ced0fc9d031d811cb64e2cfdf955d48c1bfe7db9b418bc1a6d4a9a19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ce38400ac110822e1338ed5f10219024c473deaea55a1affc936af652be4d9d
MD5 1c084a6aa7c0c14467cd131f1013db82
BLAKE2b-256 12bb36aa5f80322f0daf8e48c28cb55bff667e530e7d6aa776b3b4d3adba8199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ea11047ac581dce954323efe46b4cd1b03eb1aa2b6aeb5f771d650705cd1d1e
MD5 3eb444aaa9e51fbb78b4c951a7e2a142
BLAKE2b-256 516d8ca3ab93ae2e8cfa115026bbfb7af5881f1bfd0b22933231bc04ad1a215a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64e2b3f9468bacb22906e1cdea5141e8f8edd18257cfebacee42efa0d05d03e6
MD5 a9d23b5964046a8838ace1c644838188
BLAKE2b-256 5176125c18abd3f1df816f5835929a7f7638e5cfc7be3215c8ea557b1fa3ea01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 496d1072b800dc8fbc87c0ff3dbe5b9b40e7098d59b3255de7717216b960d697
MD5 9ce0aec56ddf697281e73af6c8953189
BLAKE2b-256 736b809bf8485a6877fee7271848f46c401a05431d0cbdbccc77d0bedd429300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cddb8634062d4786b690a4e89c7025b085cd3b618ac91e61e602dc872144e66e
MD5 ab3caf5368f028e87beb11011ff7632f
BLAKE2b-256 575a133d77ba160b2b1398e861603b256df1719da1487ff8c5a3d931da4e79ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc67435ac793cd5146763e55dcb47b54ec08ebcb78ae2dce7dc165f56992c702
MD5 140962cc426e872755899a0e67eeb157
BLAKE2b-256 69c9d5c7beb07d58e5b7548889d7b8bb7dd262393523caf82d0438223f2ebea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d49a632eca4931a942bb6f76a681516ee70b9e07ac14593c6c057f517f14373
MD5 c4fecdead5b859fa181de56adf4faa54
BLAKE2b-256 3a3f2129a286580945bc4ad05a678adde702945cce56af2bff9e3d521430be31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7fcd7013522b326c8aebd592b33c4eee3d486ac684d25e48e643d4782174ba4
MD5 cccc4d88f2c4286f6808905f1909e740
BLAKE2b-256 e72552701e5b81f4a7430a9c5664fe8dcf00e1a7dc5beddfcc3bf8aac23cbaa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ef588532126fa9ba291c4da912f420dd9872b1f5dc879879565f22b61d87cf8
MD5 e25d2c9f8a2063008d55a573289ff0d4
BLAKE2b-256 9d673a7d008723cda34a8da850fae7033b6ca36e7d67c1c452ccee7cf020a304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fdaf0ff6cb25b4113bc3526fe57241dec5afccb0b2cc069dbcd0040c3742d687
MD5 fe1c9ace86d10e892875a7fde636da71
BLAKE2b-256 ba1eade68030a8185a3c680d7cac576ad0be00a1756117edd1b9012510400509

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7398a1a65375b07dc36b7e08514948c1408cf4e0da120113d05c641de17f6db
MD5 79a0875f5945f24be619a8dddf28eeba
BLAKE2b-256 51e04fde5797471a67f053a399d35003e192aedbcc2e1226677725d338d2da8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89d524ba0ad1a1bf431a4203040f8299b12a0d9d711d6b3c89e0d5d0e19cd439
MD5 8f747b04f580b02aa4ac8415f27f8e16
BLAKE2b-256 7ae0612a15c39920030c8fc8fa60a8e781177f9936171282b1ae5ce03c6377d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ccaed91c834bc12870165d459528d9ecd6dad8c5dca843ce2666557d2ab3c53
MD5 987ef61cda1245ee3622403317042040
BLAKE2b-256 3c59d11482ae05c6d17afec313bb19fa1ac4825f39a32f503caa87de260ca16a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22e9db41eb68a4ee527f91e39ad75e499c011020cd79bcc000f6afbabd0054b4
MD5 2fcbe01399acd43a11fefd1b986a8726
BLAKE2b-256 408cbfd620bfe15c8ae81be00ef72f4ff8109809e0605f38bf66841415373e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a4a995e4d659cb4f799ccf4946e4b9dc8984b814a6b6288953ecc63c4cb511e
MD5 56471c378edde2b56f1fe7aa153bb276
BLAKE2b-256 79544dd14b07e042bcd9778f96a02ac04ed720229c8432e0d959c442fd6e9a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c74db117ed02c4ee6bb689bd7a4187c543af9cec629675469353437ebd936953
MD5 616571a136caec59767727482159988d
BLAKE2b-256 d424f0932719cd0d3f4e30c8191e588caca204785a9358f0d2f634be933e883a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56ae49b6e6224bfe83075e5ae369d38ce9ea2b777a583bfc05a442e4212ca221
MD5 3c8509c5f7106a46c3c5caa11d1cb741
BLAKE2b-256 ed7ac0fc68e6473210cde87393134f6bc686d77bc723623ef20e6a228120d5b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3aaffd4b1957cda4b9b7b048a4bd357db7a3d0e81ddc3e09e76f9533fe65407c
MD5 d1057c7274bbc3c6faeada311c80f6ac
BLAKE2b-256 d4c3e08a23a7a513f6245e5f20672a2d608071e5a1006181b92306bd5b4ccd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdac47344784ab7d870f7631889880c99512cc217324350f644241310f3b4ca4
MD5 9b2da1c4ae78238889e602e7543ba8dd
BLAKE2b-256 01ca359c764a149b3403e7fbaaedecd4bbe4dfcdad45d2e091183931ac8fb4a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 95958c056101d57d92365f4a2fccec2cf31b808b78fe8d88d1e0826bd2dedcd1
MD5 b58ad8e53d1602be3981353ef8437f9d
BLAKE2b-256 4f84fadb1d1779c2ac684ad86dfa9dda379db91de54a8e9686faf5d17a77799e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc66ef2c9e9775fd1d51f0527fc5a0b31905b34b997d79be27a25df7d3d0b31f
MD5 1fe72dd62fe9be4ee610d92a2f2e4839
BLAKE2b-256 d2935cb43dfc89d17444835e1e0dd84f4fd47263cfe0f4170901ae55c567b58a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2a813358b30ea5d3c8ae290da073f605492c96b02349b4f2fc876bcacc525a7f
MD5 12f03f10ce8fb3725a5a444d9247098c
BLAKE2b-256 44ac29a315397b63334ed19c56b514f539420b608b715211e6c402bdfdaf964d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7057a541a937155e1f790fcdda4d2a37e49a6a882c261b2e467ac1a0ab45d8f
MD5 8ad57a7c2ce32a97c4a6bce9bc34f270
BLAKE2b-256 a405dc899fcc3989c07560b811d412c8be8d529806eb998b615da788615686a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3077f5d2263ebb874e64ecf374677c7f2d97b1e95783e20839f82176c978fcaf
MD5 0e563adaff739d5cf069b6c3a79c1140
BLAKE2b-256 2f6064575f27c6bd1b4c8127f6ae5ba468bb98602cbd877da4cb4dcfa777baf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 358c76eef43c4f26fcaa185d4d6392f7af19d14f92510755e964d8e71fda22c3
MD5 8b502fb95b9c36bed89e7cc8e1c8c0e4
BLAKE2b-256 8219e3927d249dd2b1d5dbf9a4bde315897d02bac6c123b3e77a851ea05b0e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a580f087d6fde6c97027cefa441f776d0a38a2aee3781b381156f7ee64b9c27
MD5 4f6235d82940953a21a2959ea402a740
BLAKE2b-256 d20b3ba32061cf5129e7c3d766fe844899ad47934328971a796dc3646b1881ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 322130203a75c13f80a08c3ca5eecb9ceb7e320dacf7791162875d15808b5e7d
MD5 cf2d4fc2c450ce261ed1f1e0d6602093
BLAKE2b-256 dee35a849b58bf122b8aab349ec94dc5307dc44f0e1f4003a29b94c093302991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac826b19ccde80ad5a7dc494bce9695187a87729cd5a96fddced9b623af13c73
MD5 14bfa80370f6389c2c38b204ca83eafd
BLAKE2b-256 f6770210b82bac75ee0a959d8f386914d20240fd6d09ee44547033b5e219f2f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cda927539670047102c1c079900be2ec4ef3f0c740e1778d9d36dc799fcfe8d
MD5 f326e5858b9f1d9289a152f276a9b876
BLAKE2b-256 78d9504e4f664e0dfbf5797f54a9177fd92943e99b2ea4da77b9d6d8477d3cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec2d2f4f3f3fbd795810caf19968bd165713c6564938fda1efa0366f117dba3b
MD5 9bd8ac83afda8f9f3babb576965ca653
BLAKE2b-256 d12aa8341b4d435ce28233d73a4e6125fdcc916cdb18525842b0cc06cb0d5ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab8928c33f53f446b60f1ff743d1e62d6c142acb158b7befe694ee738e04393b
MD5 260b3cc50df25fecf480873dca52a327
BLAKE2b-256 6d98f3eed3a75da1fef70970826c9e707669a6f78683cb231d572d7a0981fc90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b76fc4c0a5ab99cb665d2b632be17478348950f9fec6fc8e0c043f853d1f2b23
MD5 0691120170969ec1986af427eaa35112
BLAKE2b-256 b0a7b463112248b11a04307526bba262817167b55c266ae5a0abb80bdd1e1f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb4ab42346542a8d4cd9264fdacdfa430e10ff34c0067052efb735c0a1abc125
MD5 dfb35a3fdb654e719d969a6fe65bc272
BLAKE2b-256 d20133bdd74040fb7fe21013ab1f326357cffb414581534bb03eac3f94e35a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 972c4fc4b07cb465da0b1fcb7e3aa734a78d353908b5e8c5566272aec0ca4df3
MD5 bced3755649649c926debab16ab6a0cc
BLAKE2b-256 cb3ebfcdd2310058de6425aba891dd16f729f1d9ed0dedb53e47e1542b6d9bd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1dd8bee95d1d02eed72477ce1ee3d3d6ac520df41d1da352940504fbea7a87eb
MD5 c74703290e0c8b3f4472c9c640b4460e
BLAKE2b-256 45d96f59c1148db9d943ce5036634adcd7566b1a4fa7aba800c4561604fd6ddd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6a3106f391ddd718f99398214aac8738d9f00561e50dafd04dfad1533f8bc26
MD5 5922b190f9645cb9c14d4a719b9c2774
BLAKE2b-256 1725b57f88e2550c72612a019248e2813321c454a743e5fbc30b0c1a6eaea865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b67f86bb20917e0c6fb03fce3851d9d6dae65692dcfe745d2841af68f205e141
MD5 77dade87a4e45646db0d9d24b04be150
BLAKE2b-256 59249a3b4f9bc1f730f2c74abed00bf87a0dd944c60b1b0a1c44fba6de847160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 571819cfdd97e324160e37a8ffaec1a4dfed28560fd1c417001978aba0d4ec8e
MD5 2835c7f632b0c8a59af8c678e87906fe
BLAKE2b-256 0cc0a73ad70121097e077c3b684d765d454426058d2b076a0d2b025806c2e4df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1755ea6e1ee3e3b2945424ecec53c2e246981ac0ff8db0bdd3b4123cd49ae4cb
MD5 c02d1a4bfe3bc06ad12d7e910652e7a6
BLAKE2b-256 70dd3720221627f41fa59046f5045f7f7c1f1a5cc41eef544f8385f476ae1ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 befee6c22f003d9fb042e3e86c5b8d2e14ca2a05c0bdf1ed1c1078839f91a8e0
MD5 8cc46465d39ecf3fe8fc0571e3bf880d
BLAKE2b-256 3a56961d45c3c875d378d05cfb015e2af440be718265ed4c1827d005e41acf81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4657817f9e080b41d55c8fe7e6a8f67b8c46757f36802aa50793e6179eb9a99
MD5 4cec994a062663e7c065e5f692d74ede
BLAKE2b-256 84f40b3fb41896603b2bd6b1fac525fb2b49ce7d89e1d132b330eda103e421c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b0045a7bee19ceff2e33cb95f34663747fa722db3ae5574903d2207cc0efb7e
MD5 413e1d79c94c0ba85a54e4a66d223d3e
BLAKE2b-256 5f8b66a6c6d179c45a1204bd01afaecf05e7131c198cdea28cee0313d86a56db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8eba742138ee34fe5afdafd931a608baf12f6b6f8927cad770317a21873a2fd9
MD5 0778ac81b4debb19839377e840a39376
BLAKE2b-256 3cd54fae50751aa26b726359a89aac9127f43dd0d1b8ed4022e6d778c2c415cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea69b32befa15f92d3d760a2742ed6aec6a48ff2cfe6abca022d911df3aadaaa
MD5 f916911a0811a8323d6fe8a7004b0e35
BLAKE2b-256 509997bb2ec6a6697c07d6048c91c71a00186a86c22828146a67383e628d3591

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5e9c6100f1dda5ddd0f2585db592a43b162855406ec897d021e958650a6f68f
MD5 a278bc652f7509343856a5525dbe4d3c
BLAKE2b-256 81a666c953629bc9ff942b9ae3d954b8f2cb204e9b7e1c31e43dfb74037796ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1ecb703cf03be9d7dd4623f7b2db7cb84a9fa8aa9c10e09763f6e77521e9bf0
MD5 a47c2a048be1a844147408d4b53c5618
BLAKE2b-256 fc95f03290e925c23ec07b45403793bf4d58c521fb8bb748d38c4d48dbe5e11f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82553e6dafb76c69a65841afbce31f4d077d2a41c914b44f5a53e25dad0053fd
MD5 f86db2e5ec833832541f270849f80a2a
BLAKE2b-256 1179783d9d1b7b342736d16caf317abd9acb9f8b787cefdc996055939d8f0512

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c084473d4c31bb6774bcecb47df1ed6afafaf105358b26a85440d21433f5170e
MD5 261da5b322897f3e3191d80b04b047e5
BLAKE2b-256 3f7243fef7a33b8203dee3ee57f1371dd18bfe82dffa34d4e14693f5333556d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 385aa0f0263aa6eb7690ef8d965af773618cdcee34514ec518b7abf8e904809e
MD5 5d722da60f51470192e9d41446a29f13
BLAKE2b-256 3a4e86306ed846d006c8f73789b2169e3c043e44a57aee9ec7c0df75400b6309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d947957628bb93942372dfad7ed1c5d199a548c0cc2ff4568920407a68215846
MD5 17e4d886b7373abf8e27d5fb39977e80
BLAKE2b-256 655d32d11b53c8bd7efd9d01059bd1eb5deeda9f711b20fe975c1623ca71eadb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c344503c7f73834c40effbccd15c783217c7894da2460b5b8ceb9d84a2dda8a
MD5 59cf452f309a2c43b0366789b76305d9
BLAKE2b-256 b9a652495f38e32329e5cdcafbacfc410b5d07c1404d6f33e1ad2866b74169eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a75d96702087a74622cee5e7a77a8b5dc4233a14681b97fdf361e901ec51829
MD5 80256ab008dc9b4e1b40d14748820df7
BLAKE2b-256 2064207f96841fff1ff6e64d1df0ac6eb54bb80377db029dc4e2657246247b49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37b6cd1633f2030eccfd728f009affc526e62c8b39e3f7793353435f8451c10d
MD5 0a76923553e1afab886865e654ba90da
BLAKE2b-256 b23abaedb2adb746fbd8ef52659de8be91d551a73137d9bcea865f415b8b90c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a8f9869bf0044bb7ff4e881d0ad9c2f7e62745c9e668498f0e0344c1303de27
MD5 70bcd7e69baf95b6373e21a4cb439247
BLAKE2b-256 876b77569597f5890d2e98e5ca0c54599826d70589737ab381e8767fefb49104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6fcc02851d216c76415fddd1f7352c8d62ed71b4c48ab30d16a1828ce835e28
MD5 140d9c49a33c9b8c5685aaaf0b5f98d8
BLAKE2b-256 dc5e0bff2aa4594042a3265620468e57e8914bbb32c80d15bd51c25018a6856b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60856730ad40394efa81c86869e0a98a86bcf0014ed72ec366388d59d17236ef
MD5 4015cbaf700a5ab13772f51e21eff91d
BLAKE2b-256 dcbd7ca971419b078bd442bfb7a5c55e9ac715928d3a8aa02fc790a6b3b52bdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79b01d608d1009302d1a17d7b7681c0ea2814c4af4f61fbab183f6f05bb2afa8
MD5 d827d99439dccab10f9538371a415d06
BLAKE2b-256 d07976c22269d122d1a684553c5a48275f9a44492585abc65460ae26b3f79233

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4878ff280374cc013dc06b12bd46c95a81d12045b247043c09fac22d27ea2cfb
MD5 a275937ae73b30f0106ef775d01b3dbd
BLAKE2b-256 62cdb369d123e8f8a3b33db2e2f983d853f411c14b524c313c9b6d26b874178e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c28b85573e5ba7a828f825185da5701d3abd08c2ce83ffcb683ef30b7d2e9ec
MD5 d759eaffc8427408bbc1eaabc9721339
BLAKE2b-256 9d742470c649117c974e46de073a067717526a04a54084406610bc5cc28b7be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a808cd9375e164b739e30be2f46bf477d6605475f9ce258ee37c78cd79ddf50
MD5 94f9563a0ab9e1ab178ca87eef808bfa
BLAKE2b-256 a29613605112069aeed0a77338dcf5a784c3b35484dc8e6b6d4d3a5f9db14670

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08d38926359b2eaaea875b0bb2412f8b79a6b5dba8ab5445a90c5a81a174ab98
MD5 700c5d7fb88211dd86e0f449920deae6
BLAKE2b-256 c47609ae176f09cd1745dfcf42acc8cdcc2b7a8747141fb0faa71e5f8cc0e36e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83173c5b56a25c4d0b2bb635dc05c86414d57f1d59f8f18ac19f2f58578588d8
MD5 de2729f52ea5f485c183c3d0950d84ed
BLAKE2b-256 77fd70036952d23defc842ece4dec08008fe5997aabca233b156eb9004265169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbb89c71826b9aa1203f587f99405a61fb8d84f8616af960fa3838f5d2a57f00
MD5 62b1244048c5f3df4771345278d6f51a
BLAKE2b-256 24105bb4fb1d45a29d30bdecbbdf66b96be0f05aaa33f985b2e0c0078792c588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9420d755a8f7e492a4de278579ea19790e3f27dea5f2fb4347b695f82bbc85f6
MD5 c42d7f26ba8bf04c6472d0fb2dd48af5
BLAKE2b-256 a9ea8734e5257376baff60b8cdeb2a8df0b753fcd40c2d02e5af4b61080ba92e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc10a68a960e1d8c00d64b6164cbfbf9eadc136af0f354720f6a8c1d4fe57fd4
MD5 36f21384864996b45747a9888990c02d
BLAKE2b-256 88716e31c72f0740a952c97f880388b8195c3d4242355cc90065413b9e77cf2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63c9e87b0839dd0ec5a84b39830733cd98878be39eae6f706c2e0dd6ce65e672
MD5 65b4464fb3b22f824f958172ccb30223
BLAKE2b-256 1ca96c2701044f2997a49ff20fe6b086e96018011c3d43c2052c7b482339e78a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a79fb6d9b0f3947b7c40b6ac1199bf691776d851802046f40a2a3f602d52ba20
MD5 2b7f4fbfdabfeb6f9446b192aba0a78a
BLAKE2b-256 56b40f15eeb20356436c5a77e9b3977eb7738ab6dd2c31a98d50f570c435e1dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed9c28404ab508c0c1256ce6bb0ff876040f1b76026002bcfa1ee163f089fe54
MD5 3aafc7a280efce41b2825c214f84a28c
BLAKE2b-256 be440913d5968a087feb284198cf5567704e6d74d9308de99968bc26ab23bde0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e71956a122bfc4257d98a72e27ebdbd52c0fa5811763eece4712e39b7ad98651
MD5 f1b2ed8676cb0c061944b99f4da1a9ee
BLAKE2b-256 4c66011649d037edec156579b75bac5b08c83ff7fea258c2d532700e188c4d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f98c073a82c9987da992e700e50b00f3bc153c18cc23415bc3c117d613072f0
MD5 ec259f2a8655fc9eef2fc63491256555
BLAKE2b-256 697e8deb307a404fad9b9a0db34335014c14f747e9865206539d3117f9e701bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59d8226021ef14d919b94304b92474efc7dc17090b5a480fcd713b24d9ef2fbb
MD5 a2eadf50351cd1fd6a32e86fc7c65c85
BLAKE2b-256 3ae386dd059ebb48d6e239ac0ba68d7b00c75a7159eaa6259cb1cd93ba80f128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90fd770837690ff1d1147c65a066f70844f4f5766353c725e348276061a254e7
MD5 d97bcee0a6121f8c4ae2d2cb703573d9
BLAKE2b-256 ae8750eb603a0854cd50fcce51079416affe2554bbae90a362e3893d1ebeaac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfa7081b7b947557c0f06d6535c43cc2bfac60f0a75e2380d70a114236d3a1b5
MD5 19c7ff1b8587ae97c014f429686dba16
BLAKE2b-256 83eabda17cbbac442f0ed2df0a0b61eb88a21b12c105d84f731ef3e3750f8c45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a38d6d69dd6213aad6e6f172f8ed082f5ed1e1479efeaad4252b40f5f25389e9
MD5 86e0195b1f00dc36299cb7ec68a017e9
BLAKE2b-256 f9929b0e3869f25e7a77927abce713b80d11a560add39977c388e28aa61aa0e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1932eede04522704fa3f8867f7ee0de6d6c59266d11329c7d36c1855c2652d39
MD5 616f8d3040853be8cf8358a9c0084ddc
BLAKE2b-256 d608cd0871169d983e4a3299e501bf5cf2e01dd7ddea2a2896a19328034597b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d224ff566270aa147bef4b30a1af037c384332b26c9ac674acb3bfa5219c6c4
MD5 3e487f9dcd9fa9a7f64f06f7fdefb665
BLAKE2b-256 96775bf8943a3db566e996ed3986388a94a999471ad9da1a8883c59c9d1fa96b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f37923b0f5db234507ef1569cf023f3371c3371f7fc2cae37b763ec3b612bb6
MD5 0a21e2d7d458e84c959cb92c5e3be2b7
BLAKE2b-256 a52ffdf9dec6f6f6d1a40c8b0bc9c10afb8f1b1d2f4af26936177dbc9c3c7e27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 097bf8780958b281e288a749f9126086898c9ad9d5071452f20009f139b6fe34
MD5 e9398bd31011e7b97b38da902005bf85
BLAKE2b-256 a46d7056ebe02da1e6ccf8bfe99048e25f97bc68313fd0115e1f7222ff136d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c4dc183840762258f00222e65c791748ca40d840c43356f04686344687c4993
MD5 72104785098fd835f013ef6d9e6ac197
BLAKE2b-256 6754663ef97932d212181e66aee9c9821a91330ae64fe648df044614f05a396b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa45a8602f15be9f265a9c603dc217481bd5b1a1529e104cab4058e86d728edb
MD5 c92c6f3a7ad3093e6112fb0c47569dda
BLAKE2b-256 3a09a7deec8cefa3b40314a68b10363f1d747dd5805071ab6f292877543b773b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f82b6fe1f85a5ce87e965161c20a163c1a442a78c700d98b8a9b534af48df98
MD5 d6ceb0fef310a36db49f209ef1cfc7f9
BLAKE2b-256 9477553182ce41e2bcac2fe3652f98b23a9fdcdc72c6ac8e1abe6a3eae185fc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fd80867e117541afb903547f989c8d9184d771f47f97c273d1a9eacd24a0664
MD5 9e53d52f89a7f1244219b80f8dc48c70
BLAKE2b-256 11d546ac701dbf380c17f9738220c7078254423a26f15a0afccf683142147d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4b063c2e00ec3f9c1d798ce50ceb48c81d930944f1066d76020dfdfee85c2b0
MD5 dfaf7d84c0d982e954b8862d5157d475
BLAKE2b-256 3671eec4bbfb689b9a60f2df4e128890831ae2b5ca1f3455d8439444ba9b7fc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fad43d079fac6d011c9aabc45c550c9ece73c2fa7cc44e38d55bd3f5e0ea937
MD5 c39339bd156cbecb9e492c3084998b68
BLAKE2b-256 69d11f96731adbddd7ea6344d0082c7210f83c6f1c9bff0b6634fc41d773086d

See more details on using hashes here.

Provenance

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

This release

0.13.3 This release

85 files

0.13.2

85 files

0.13.1

85 files

0.13.0

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