Skip to main content

Templating rendering and generation parsing for Cohere models

Project description

melody

Templating rendering and generation parsing for Cohere models.

Dev Setup

  1. Install Rust from rustup.rs.
  2. Install rust-analyzer for IDE support.
  3. make rust-test && make rust-lint to ensure everything is working.

Examples

The examples/ directory contains several example programs demonstrating how to use the Melody parsing library in Rust. You can run them using:

cargo run --example basic

Usage

Parsing

use cohere_melody::parsing::Filter;
use cohere_melody::*;

// Create a filter with options
let options = parsing::FilterOptions::new().cmd3();

let mut filter = parsing::new_filter(options);

// Simulate text
let citation_text = "Hello <co: 1>world</co: 1>!";

// Write text — returns an aggregated result
let result = filter.write_decoded(citation_text);

if let Some(text) = &result.content {
    println!("  Content: {text}");
}
for citation in &result.citations {
    println!(
        "    Citation: {} (indices {}-{})",
        citation.text, citation.start_index, citation.end_index
    );
}

// Flush remaining tokens
let final_result = filter.flush_partials();

Templating

use cohere_melody::parsing::Filter;
use cohere_melody::*;

// Assemble inputs into the template (e.g. conversation history)
let options = templating::RenderCmd4Options {
    messages: vec![
        templating::types::Message {
            role: templating::types::Role::System,
            content: vec![templating::types::Content {
                content_type: templating::types::ContentType::Text,
                text: Some("You are a helpful assistant.".to_string()),
                thinking: None,
                image: None,
                document: None,
            }],
            tool_calls: vec![],
            tool_call_id: None,
            citations: vec![],
        },
        templating::types::Message {
            role: templating::types::Role::User,
            content: vec![templating::types::Content {
                content_type: templating::types::ContentType::Text,
                text: Some("Hello Command!.".to_string()),
                thinking: None,
                image: None,
                document: None,
            }],
            tool_calls: vec![],
            tool_call_id: None,
            citations: vec![],
        },
    ],
    ..Default::default()
};

// Render prompt
let prompt = templating::render_cmd4(&options).unwrap();

Releasing

Bump the version in Cargo.toml and push to main. The CI will automatically create a GitHub release, build wheels for all platforms, and publish to PyPI.

Building Python Bindings

Prerequisites (from pyo3)

  1. Recommended install uv
  2. From root directory, run:
    make python-bindings
    
  3. Test the bindings:
    cd rust
    uv run python -c "import cohere_melody;"
    

Debugging

You may run into issues calling the Rust static library from other languages (e.g. Golang via CGO). One effective way to debug these issues is to:

  1. Build the library in debug mode. You can do this by adding these lines to the Cargo.toml file:
[profile.release]
debug = true

and then building the library normally: make rust-build-with-tokenizers.

  1. Create a binary to debug. In Golang, I create a binary from a test:
go test -count=1 ./gobindings/... -c
  1. Use gdb (brew install gdb on macOS).
gdb ./gobindings.test
break melody_render_cmd3
run
  1. When it hits the breakpoint, you can step through the Rust code to see where things might be going wrong.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cohere_melody-0.11.2.tar.gz (9.7 MB view details)

Uploaded Source

Built Distributions

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

cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cohere_melody-0.11.2-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.11.2-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cohere_melody-0.11.2-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cohere_melody-0.11.2-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cohere_melody-0.11.2-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cohere_melody-0.11.2-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cohere_melody-0.11.2-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cohere_melody-0.11.2-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cohere_melody-0.11.2-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cohere_melody-0.11.2-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cohere_melody-0.11.2-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cohere_melody-0.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file cohere_melody-0.11.2.tar.gz.

File metadata

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

File hashes

Hashes for cohere_melody-0.11.2.tar.gz
Algorithm Hash digest
SHA256 9c6bf28862aadc9fc58249c384b4c3350db4dd8aded50d1c782511729cb45ae4
MD5 50d4e90a2eb817178ec931c2644593e4
BLAKE2b-256 86d1015f19ff06a980cd0d6b1058e0c5f300558ffb10cba48a2cd5efce8e51f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2.tar.gz:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4110d74a7c192c960d976f37d1c53611573340b9de28992d5f4df7a0fa72293e
MD5 f7d24ee8df5922642a6a151d32de13b5
BLAKE2b-256 5ca506dbc6cbd28be7fe60fdf4da579b7208561f6e75a2f0a2e3a6030b5a8b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f56793b730b151948c2d60fd2aa2cb075242167b2fe4793ccef520be6a29bf8e
MD5 6b8ce65203e5e592a96ef613e92900f8
BLAKE2b-256 cdafe2673ce6bc20ed0f26f0ccc18418126da13b4530aa9b3fe1d11c009a102b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8abc2a2ac635fe1561edbf51157c6526fb16eeeda4334f5c5b632b95cb827e78
MD5 11a1536ed4a2eb1dbfa17cc03e5eedb0
BLAKE2b-256 3166b41efa7c838f0ad9ee912d5c70c54e0044c68352de4c60e61ce1bf2a7082

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61f39b8aa77ebf4e429f5c9391196deebdfbaa255693ac4698c80e4c63406f22
MD5 aed766e2d03a89e60e4c2db4d2d73486
BLAKE2b-256 d831f71258d733466f71e973ef5c2c73a5b3a64cc1a5c482068ae4ec734b78e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97a003172667050fa7ee6f879d6b8b946e643ef5bff2095858f7eab5f60a1ecb
MD5 75d16477fc5450dc86cb9ab5f44b2dec
BLAKE2b-256 4ad2800b344642e8ffb3f3abcfe210a0cd4cc91e64befdf629a0503bd60f2498

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cf1a7002bd15004b3ba7aa34830dcaaf57c7069940e3bbca19348c7d4a772da
MD5 1688f3a00bf1df11ff81846e19c51dd6
BLAKE2b-256 1756295c0e5c5023ec42f14490e2c8c41fcd713b95c8d188a74bbbaf30992c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4845becdf1d3014e7ef3e98f3ec18a78facab8d6491882851c10973c8d3b9cf9
MD5 69eb046c7d693c1f73046ccd543c4e66
BLAKE2b-256 2f57262e4178789237719f4641f50efe94b955a1dd6b73fa4b07ac7677c38fd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff80fc35a189fa4b25214c801ae63c1686bf8fa9d8740df9a3b9ad323f437128
MD5 0bb668f1cd4a3a4f1d1283edd1c46f0a
BLAKE2b-256 2569362c5e25654e20741908322c09bd5f0fee15bb70e2bbf69c90cf1fe83f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6498c1e6400aaefee86741e3ae4f4bdecef7745c1df88b2de83b9a27f2f6a8ec
MD5 a9a2a00e8da23ab0146cbc1717929a82
BLAKE2b-256 c2c64e5551b58366576a41ca4ba36bec47b17b1e215b6db0fa0ef9f33aeaaf63

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c12c10539f9a1db638aac1416afc401d592abc754f5bc7a9946a8c6f5a15dd0
MD5 808e45f2b4495374354776be8e370cde
BLAKE2b-256 2a32971e9a14cfe5235d49222f8b846787b226bcedd36f476708658cd9a1d42f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acdbede24e5b6519a44c46ada6f92be187fc6f730813caa1dc0104a00a7cd36e
MD5 a146cfbf3caf10a22147e8ee6963e3b5
BLAKE2b-256 43bf367b486ab92fa152c6b67f58373f1e17f642ad948815017018d4d3bfdbaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27afa9b7ae2f779f43698fa78ed0a7b74b5e226d59dea51666ef1597c4cb3044
MD5 43525924c10422cac93b2d26c5ebc881
BLAKE2b-256 e605f0d9f9f6c47e50e872a690b635a670e306f57fb14ebeea20848ac4450a05

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c959bfcafef8bde96791e5135ae653c02ed9517dc9779f6d8c4d409366bbb78f
MD5 042a64af06a27c802dfd464137c80998
BLAKE2b-256 6bbe4006d3b11e9a646941c727e495bbc4b620975354450d545769751c260d6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06487b4bc4bef4921a87e2b9f6e31d6073e0f7fc8c60545a60beda96e1ddd3f9
MD5 4360e4d45ceb105fd9b19ff3a14335f2
BLAKE2b-256 b14f35905086c0f787c00868fee8816dcb77cce12e9a8e49ba88015f659ce703

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c807d1ff8e15cecdde0a9dd7aa83bff6e99f831990925eefb1e831dddd98763
MD5 d4378898f292cfcb5fcc0980ca050614
BLAKE2b-256 3539f27ed9ca2308a87ba9f43c51567a8c0300afab38680d8657e94ec12b70f5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cac12486b8ffabecbf47dd0e7e6572cd58cc1af786efbb1be37ce1ee6cf7246
MD5 7ef24ba3cb07205c1d4a7e06362b933c
BLAKE2b-256 f4583bdf569a98f5fb5f197e95c70f12c5e8d129b985fd5ecdd61551a88575f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92069306e4af1d327a1922401b31f9fdc6b7dc92fa1b37c1081a220ff5520633
MD5 57178c3988b8b1ca233767809c33ff3f
BLAKE2b-256 9c52bb654b2e01c12c65c721a993c556ec45039e33d719df65a1a08a623b9fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c31a83f4c0c746802e1e947fd3f2c0ef63ef8b8310426942eaf0e98b634dd0d7
MD5 4147ae3a9dbe1d7e266ac5efd6492f1c
BLAKE2b-256 8960cc5498a59eca3730c283a0a3f950b96605e80f0c496b03b27d9582c51263

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49ce1c37886481f7ab52fec4d19921bec6d7023d7c1c5f863f03c898efc9826d
MD5 c198d40b1435ef6b589905a69379b6e6
BLAKE2b-256 30ce2d9d4cb81fb94faeac4ca2dbc904c371cd85d5843198948626f370976ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a171bb031f230623172b081ca0a2166fb74982a365a512e3af29f405d9b0ba3
MD5 1088d86eecaed62b23a523e99b7b6379
BLAKE2b-256 3c1060c6d86fa21cfa9f2affab85b8e1d0500dcef254e93af879aaeeadc7167c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aad009969458a58a2bc9c8564afe0ea0f3ef93c4f469b240bb4465d5a024cb2d
MD5 222ee75d5b66be1b2cb235051f8c8dc3
BLAKE2b-256 e3a76055877b802bdfe0a070e34cfb6bcaff5d58155907858a07441a4c30bace

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-win_amd64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 67b1996fb4979705a8db1c508c4b8b169ce83ebd8ed6338e6a8cf9a9973fd57c
MD5 80f9c723579fadc5a8d86974b1f892ea
BLAKE2b-256 74c1d26adabceee575b84d2c12eb4917c5691d6e51357c6788630b109a0e1953

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-win32.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3228b5ff0f6117a35db753583cd81860b799de163f3e46f1a654cf504a239b0
MD5 3c086f95b7ffde9b1b45452b0b0f9ba7
BLAKE2b-256 44ab4057fc644c010053be9c1a052bb113c06da651811fb9617b8b831dfb9581

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 815e333c5bda669224d8e74046bded5e75092f424bc7a4414886a56104800771
MD5 1b91834e196283590cac4b367b1f4bd4
BLAKE2b-256 8acdee7b067880dab5a8d4a37fff2dd3f50e2f3dd10c5e95fad82e4ad54d2b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b8347835736c87ad86d8254b38d01017da0fc4e99c045aef680f18f41a351d4
MD5 4aeb66b0edef8406fdeb138c5f65a4d5
BLAKE2b-256 6aa457d32822e18082edc7b9f378ae1aed07262f4901078edb21f73673b67892

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41f7e26df686f853ef180ac7abc158e575b1a482140e657c16f334b21184c6c2
MD5 427e9b06967c53821c2f7ba7a92587a6
BLAKE2b-256 25c705396c9f650df9aff5d9dd4bd09b24b5674fe49056e8d52e30fdb2347e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83a95aee3715fb154613ff1c42ed16ddfbefb57430bdefd1a59fb12db2a0060f
MD5 7eb2a7a74d79765b1feccc2325c38ace
BLAKE2b-256 ae7c8be95dc31358c76fc7ac45149f192ac6803d6b9e4c296add9f465c8fe272

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b26a36836dd8002c3b64f4822c36e77beff17a47bb48d0b5b76430f0ffd39518
MD5 be5057847dbfd7d17ae183d321d96017
BLAKE2b-256 121bdacb40cf4d874f50e1cb69e966c5339d62a5fcb6a54ed601c080e15b3846

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0a88a51bfbd6576548b9977232f931665f550aba2633ca090308b5c574fa810
MD5 61d62b39fdeb34bdf65f80a18539409e
BLAKE2b-256 9d08074eebd45c5fe0c94329fe04bea3b6ca62bda17bb4128fc354a1f46b0ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3b5d57296c0884bc7b69d9a0fc5e213432224d8651ab42055505342cb756343
MD5 e08cee23627143c2061c81b20ded38c2
BLAKE2b-256 0d7da1d4128c927104276cba116a5fac1403517262c00534bae9dc0ccc659170

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2326d3eb914eeb30d96ad4cca3407be7c86744e8e2f532240ed110d987458d79
MD5 6e5b8226a63b9fca16c092db52a34c9e
BLAKE2b-256 78a308faa441ddf946eeadbd090feeb5038ee84b43916f0f3860ad6e9b830151

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1c11a932c4bee891bb4d4885fd4e6b2860375066db32963de1f504820506e66
MD5 172382e3e54558f8b0b4eea26a5067bd
BLAKE2b-256 3da362237bba57c5385a51d6d48416f3c814f186db86ecbb48529445a13d4f72

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15f2c257e0b39dd4d960208cc548ab85258f8ad50581cc47bd1b4d0b7f2c2a47
MD5 6f70f2cdad83a7f709b016390ec9cdd5
BLAKE2b-256 5428e6fcaaee032f8eb1af3b2f40f24b364f5e60aa40b84d399ed82f178a4f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-macosx_11_0_arm64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4fa057e06794f06ec9000d78a94e1b8749255b9029f4d4de3134c14a5c4b686
MD5 6b1ac284fad0db1b15c9fb29867f77bb
BLAKE2b-256 38722f28da787cc121b4ffda0fd1209253c70a5f5247c509256b9d8ef834bcef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp314-cp314-macosx_10_12_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cdac49fe222e0ab02d75812fc879a343e7b88976ede618ffe1563ed6eafba390
MD5 46692d7c8105a971f0243da78b9623ff
BLAKE2b-256 636223e6cb33ea4e79c3fa55a452d61712447427fb55703947b930bd82ef6835

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-win_amd64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35138e2f5361b66c9bddd09d7314ccd6b4ffb9c440ce6fd123684f2804d47f5f
MD5 65e37872c2fa1c8a543ade51fd4aa113
BLAKE2b-256 44c7c70579a0a22965c2a26606e4faa729b05cc5ec6931cdc87ba7cc00f90dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71215d120d8727b2b5071d2888aa50582bb0b2cd9918a3022e954712fd267493
MD5 da56ebea1f7e0f5cecb8cb560148ec2f
BLAKE2b-256 1e48b3f3a3bdd1131e2da41aff1d8a67df705a8a467bec2eff373538402f9f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0409594dd9602370bb13c805567a03921c1ee39a640466d809e3e28ead915f2
MD5 9a94f8805903b6fa3a4de241ec58c1cf
BLAKE2b-256 64e38c2f40ad822c9cdba6df773c27e1f1b505285b31a9a207d41c275a15c62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b914066d2a0593d4014a7dfee00245def9534ff09c4936ee7bec24aeec74f43
MD5 0e1e6721c3fcaba8058fe92076008738
BLAKE2b-256 59750ba4d357347f28dc0406b74768c1ad030c332226187646a15992705366e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1437e90ef1050d2b94abbf17751692e751c182e7046ba9f60cc463879c4efd04
MD5 95d90674e8cceb39e2bedf66875a4ad3
BLAKE2b-256 f128fad916ae604ceafd076f63885fc16b04ad7a23f058b185ca4ed1cdcbae5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b0b03d425f53ae11b171dc4923a72bb47a56b322fc4ed7ee686d3602a769f54
MD5 52325b91c271c9d03378d448f21e8330
BLAKE2b-256 40c6e8dc5070cdf07215d2890488f44044f7c1a3f5efc6ffee997ce116f43ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d3161694bc479d8373a8fc20e02008caecb97e068ea7873f6336d5680a7da1f
MD5 35e38ba3ba7bdf8b2d391a4bbac1df10
BLAKE2b-256 66675457aa174ab0d590a5307b99052951f7a99a2704ffe8abcea7ae1b5c4067

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c507841b33843a723078ae2cb9b0d3c8414862d24a749b8e91765e4f4484aba4
MD5 65c2026fe0a0d47b629645df711ff770
BLAKE2b-256 f5d2b15f2b71df4942b8dce91ac7d90b6e06229c1009ddf75bf2949ce374fed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d277141fad15ecdb70d88f39e5c08cbde8399e5c994d331d11dfb1bd34c666c9
MD5 05529e19f5cbb7cc69c8267177bd061b
BLAKE2b-256 f70842ed84b8626ae089cf2f4dc7609fd3ea3dd406a217083f9a5472b7ee7d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27c64eea894b74107f182cafbf8bf6ebb9d38af4cff33159490cab29802edac3
MD5 ff426b7b11ecce293cb28d607226de66
BLAKE2b-256 b4d5440a8685c1d5eb22efc58fd13ed37a63aba4fcb14d29da4d37f30c3535c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b53c2301c02262be42e32045ed13429dff00e7844a501f1765d61027251d70ff
MD5 021037bc2ec3eb6fb03f820eddf86611
BLAKE2b-256 9c1490245fec84cf01e7565e19dfd33d621a899f3b42f5dacb7c5fb45337b4ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-macosx_11_0_arm64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3649e37a0bebd2e8601c3a7bd3443c886293376bab97e52c1d916cc952d626cf
MD5 f6ed16dae33d977dd646e232bf90e208
BLAKE2b-256 5b9fdae6ceb918253f3b3a42369de2094d9562307ef50d01595697a34d81b626

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp313-cp313-macosx_10_12_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6ce7f452219a845d8a2ef1b34990fb8933210df5f043998abe4d7124cb76708
MD5 de482522692a2d9c221263a2b31d0558
BLAKE2b-256 be182305d9c56308459257ee0473acc3e82ee85b7b158c084473d4398096d17d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-win_amd64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 749e915eb7b7c1d2b6e9531e06eda8c1bc05e221a3804f82a5ccbd813d8c18b8
MD5 c25eacedc894f009a0d2e51dc869f8c7
BLAKE2b-256 af06181f130a52f7e174b6596fa6ec29ec66f9652598a91fa1ce976974242eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfbc1e1e9728b312a81da27aa1b48313a63a7333d35081d10631b52a564c7cbc
MD5 7492b75d3250cbc2b0d360a0ea8330c6
BLAKE2b-256 15518792d7dc7293b577c7c286fa7c9cdf6cb746e4e913f95a6a609c98f9f316

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 555861366ed48a3aebb6b210800ea90496658746cb23f3c0fa2ab5e91372dcb8
MD5 e6837c275489c534ce52f7756ebdb1fc
BLAKE2b-256 bbb3776678789afa89cfda51371dc50a02847cdfec7ea74cc0fb8866373e3d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 979931e3b140dab5484388a36d8959025300d8b378fe48f4ffbd539f094323bf
MD5 c35f1395ab088cff29a6cb274228eccf
BLAKE2b-256 9c61872af6706decf7fcb1666a7f49e5088a0519d81af9baeb9707b1e712e3f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5cf11fd77ac5d5521119f39da9d493582888c71d85c3823a234b491c163a09f
MD5 3dc6f2162e4dfaf7c14e511bcaf494b2
BLAKE2b-256 838f185eaaa67b1247ee5ab144ebd86133c91b7a79b442c17966d969726983c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 641084756b6417a574028479b83233cff7acf1bbe484656e6dfffefc9b2210ac
MD5 f7a3824b9e0eeab16cecf236932aa13d
BLAKE2b-256 4429ff48bd91fbd003a80f7a38a284e097f12a3647804d6a719e64f85533c05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3276f9eea41b873dba1d03b9e10014fe7020134a877e8898678e21f8d3bb98f8
MD5 73b4795c0e45892690e3936b94d5eb38
BLAKE2b-256 8be1dc7ad26c3f44b100f5a43e7680e29ed40e89a967d9b80c005397ea64de4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 718d1d3da2494a05cd340b83a32599217ee3c2d5ce1e373edbbacd3ab80756a5
MD5 764c3ccfb3a8f3fb9f08b0f149648c5e
BLAKE2b-256 8a11053dbafad5c121dc121dc6e3863e7d054ddd91d61a068815ba6ee2f94e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef0363311ba658e1d8de0151e2e82cf3ddbce1a584c9b3f6268f4c7a66aec73e
MD5 8228930a4c1a5c69f5955a01fe96e971
BLAKE2b-256 13167fad24082f5cefdfe5c4637a7fb6c762a1fdca4ef00023181d694736f15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 524c621727782aa9cd111bbff9d77e0b3b91dc707b6a38fd09feca48c474c9d6
MD5 602b228f6beb49a6a0f3648ecf73005b
BLAKE2b-256 940218558b3e5abeaf7362f712a699287a51d86aa49aaf1af5b6b48d16b9eeb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eced7b1a20b043996ed27e85eb2a2d615b9049d82cfbb7c4cd2b612277d076af
MD5 26d032bf60722eb1fa6d84d9f960c30d
BLAKE2b-256 3a43d9577d5163066ee24959ef2fe389a01f55bfb94d7096da2faa663451b24e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-macosx_11_0_arm64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a35ff77981f36209b11c923d48c7fb7c648f2703dfa7cea9d2b71352752f5ff4
MD5 6eaa10e7378d9d9393ec472c19f03c9b
BLAKE2b-256 afa4a000fdf701ff32593f122f3bb20efd37e1b51bfe83d388f6bb673b1404d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp312-cp312-macosx_10_12_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a0ca6621e7736bf2aef087932cd85727da6245cace4e0209d3fae8bfdce256b
MD5 e934cd37c8385bc8c5e9dfb47c646125
BLAKE2b-256 ac1df0de248f5e36c9bdb6c89c611c9a28e5502bdc3623c227ef5c1a9f74e24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-win_amd64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9c806c5ad45d9784ecf7df2afbd2f84f78dd223b619103e9eb52de3202840e0
MD5 1b8ca22b2ce69338ffdc4d322ac4bec3
BLAKE2b-256 45a2637cd0f67c6066efc26a1e866a3ee54a4c42ccdd884033c627c1afca6ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69f0546d5f2a7abdfe79e8c23c136c650b44e4c1b32f32cb7dc5f65a48022ba7
MD5 a61b256f777d6b7395f4dd621b5c5cf9
BLAKE2b-256 c8bd23f27f315a4ffe3fcfc1804064a001b3c1a3ddd9fcace42a43198631efcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a84fea72c73becab7817137cf951c58ea8143ea43b863c70167fe3aa30ece98
MD5 f26547305929a97b95942a3e99e2a995
BLAKE2b-256 ffec7c3802b35fd0492567532055b92e9bf8c8148ca1f32d28b6a9d7102c964a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 116d5d9496ce96968952824e8e9dd68c13ce5fa7dde5b611f442995e9d3f0ece
MD5 20f33610165fdb8a19e4f01c8d7a43dc
BLAKE2b-256 25fda3e98f9f8873c7a5cda9af198294419f8fc4fcb6d5e67e84afc11cd28560

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 104ed4c539e509a9238290da87688dbbab16c7e4d6646ba957660fe7f1986de5
MD5 a87d3f96b57f1f6754ff7cfa42dfd409
BLAKE2b-256 0dcbd162addc94c79a4f8a414a18652d6b3cfcec627ecdb2c71c1725569069ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a988eb3378015f31542883cf910d2e351ba471a1302517ade5ddf6263ac5f5d7
MD5 565b75c63bbd2b5dac327be2f75c4c33
BLAKE2b-256 e0bcba50ddef575d6ae3af5313aca64fd3e54fefdf0cab33307f5afc27e49906

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4343e1cb2b5c88274f008784d68e7ba5c6756464c8170a9fbfc2f34387c4067d
MD5 858e63d525650f4b7289b6cc66bb8336
BLAKE2b-256 afb0e9065a8c7d24a3eba9dd67685f34aeb35f137147f320e8aa616798b0c261

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf73eb18ee8b6944212bd19a505656f200c12d33447e0ade23cf3fa48ad17ee8
MD5 408bf0a17439358be7439e9db02cabd1
BLAKE2b-256 af42bb9a0d05df3b82c400aaaecc57b6a48d9a8773153985efd9686722d785c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caddc710c6a6654e82fcea9c21fc64f83bc12cc2bfd4d8c18adeae6fb991b11f
MD5 8ec114a55308c86dff9904b743ce5038
BLAKE2b-256 4bdda6ce52f37830685b57a693a785b178b17530871537861c3da80fc6d10e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 333e66c8e186ab591e22b438562526fc6be835329ab445200cbeff03e9008e62
MD5 f598f909907f020537c0799eb0af78e3
BLAKE2b-256 e80e4c84ab22082ff03ac0ba60f3cec57dea5c392da59a9e3dae36ca4069a7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a2a2c3a89aef9dcf3e816aca20edaccecba1581e6de741d973238f3b8565a3d
MD5 8b609501dd18c490650cb97be5e1da03
BLAKE2b-256 c9dc7f43cfde61208eaad8452f8aafab41750ce439eb799ef54b0cec2ed30c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-macosx_11_0_arm64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ee857d3c2f4909eb02972f4845bc8b45ac2d714801ff4b7b7d8f1e673ea4f64
MD5 645806548cd87010451a4458384395e2
BLAKE2b-256 82820c6248e38e9c71540bdcc0684e89e28b5e3a348fe768fce6d28d13ca852a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp311-cp311-macosx_10_12_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b33c79a4a42b46f5edc54625240805577674ab05445a6a7733c0a223dc5559c
MD5 7fdf1aa1bf2717d08e52dba043f4b8fa
BLAKE2b-256 807cd562f7f71a5dab8b04683f139356b56d573f1422c0cd6dc507cf26fd8b41

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-win_amd64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12577a1d55e9221d1c5761ca8084699971f4bb91208ec633979f2f5a23f97414
MD5 62a418ac39ceffde913c16b7074e2ba4
BLAKE2b-256 04edd97277cf8a8311d73873e17c9175a2a3f182aeb91d4fecd2f04f0c5c503b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e0baad8693ea52896b631d97a50f57ae0f99599dccada74e5f1a6fcd995037c
MD5 fcb7596e25ced2597e50d6bc2d89cc76
BLAKE2b-256 01004fbda567125660780213a37df9ea589d26a1d2427cb4cbfb06f5672b2435

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_i686.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abe20b66dbe0eb2c5b96dca29f433ef0f76d23fdc6487866612b689867c67a27
MD5 c7e8c1b6a471df11041ad738a6b39c83
BLAKE2b-256 32a2d853807f04ff80f266e0778d136fa05a3909cd57acf6c6549d0a38c4dbbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 228d32af8a782ea783ce836dad40ce758866dcbdaeefc96c60b1194a0d668597
MD5 c5e0986ac2cf2ead6f52e38046c51ec5
BLAKE2b-256 5387b68739d55bfbbc4323ed6c300d2af285a3d5ba1814567b615fc08ff19bc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29eeca2c2812bdc22d5c222e3dfd556c48aefb18482b158d651841f2d489fc63
MD5 27b576087540b04a3b1a4f17d3317655
BLAKE2b-256 fa7fb0b210871122b8a91a36393b8426ce69736a9db975565c130fa87e76d612

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 627a820daabf3e6daafa389b9fabd9c2fc8411e5a31e60950822dcb0048b9258
MD5 3434870b770a0624dc0ac58d1ea163e5
BLAKE2b-256 dfe0bf3d7d291951b92b01faa32f7ec6dae5188639b7d7e0fe29c353e5816eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95b976380d7adf1d1e958a182ab9eb704db75cd0dd1ae4059ec486e98a1ab588
MD5 4b6905eca0776330485130d7d9fa91d2
BLAKE2b-256 fb68a7244379ea3db919b4652a936ef819ec075374a85180b780dd43e5a9ed65

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c1e4477f501054db50a0de87fc48c3da555dc922310339fd3b43af3b1dcb170
MD5 a4a41cf07a7904bb238cad41ef327637
BLAKE2b-256 c8539c830bb825d79c4fada528af1c7093d8baebbb12e4412ee4805ddb97c34e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41f20c3a85822c977503da899c287bbc4cc98668e748bc04eec672e394acc698
MD5 aa2943b4ddac18b15c02fc9501a3a288
BLAKE2b-256 9c975fb24b61a063a2b006247c14fa29711709b5ad2cd739dd8c344fbb4321ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file cohere_melody-0.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48ed7e5cbacb4ea6eea87f962d060213da8d32600b207042555cd55dfde61836
MD5 70ebc11edc6c7a945463c152903d9d34
BLAKE2b-256 d29213a777a5ff1250b96c9fc7f2dca97d881a8efbb44595e0cf942afd179f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page