Skip to main content

Templating rendering and generation parsing for Cohere models

Project description

melody

[!WARNING] This library is currently in development and the interfaces are subject to change. Be sure to pin this dependency to a specific version.

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

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.7.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.7.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.7.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.7.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.7.2-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.7.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.7.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.7.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.7.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.7.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.7.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.7.2-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.7.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.7.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.7.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.7.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.7.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.7.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.7.2.tar.gz.

File metadata

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

File hashes

Hashes for cohere_melody-0.7.2.tar.gz
Algorithm Hash digest
SHA256 84b563765dae61e648e6cb4c5f491612bb90897e765363024d1fcb93eb41e1a0
MD5 b2a70d11e8432ae1d41d3d4e540f0105
BLAKE2b-256 c56368dd6f7d619ad9de9df6c1babef53afab42e0419b7074976238910341304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bea7b085ccb0e773fe0c9af5311e2a573f97bc579029855465524171b32fd68a
MD5 1c23cce4368a31e377ce0229772e9c7b
BLAKE2b-256 86b6e8fe294a7d91e1ca2d3bcbe63e4ae8f68579a3a963d5be73dc217ce46aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 feea4664a70636d5dbbc690009ffc32a796d1baf8e9004f45604f6b44479997c
MD5 06c9f7baab12c4b151061fa1a9c529c1
BLAKE2b-256 5780cea8dc95e4830fcc16b335b766fe366ef7312d1862946a3d11419c43ca80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de54188da8c718cab57e4d767829c6476890b470fc89b855ad5b3827fb9d7256
MD5 b00d89e6f60a99962acd5ee756966649
BLAKE2b-256 54a6077f9e3b3744dc2ad89e8edc071840b3677905e12bf88028b9133a9f42a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 685b6c5281ba09b99c6edbd58ee6fa9aa09f1ce93756979e06852ff1114b6916
MD5 1ce1baf112a19fa8e101a42703aca3fa
BLAKE2b-256 bbbdbcbd5a995295cbefeebb7f2e6c36aebd7c675be4b3809d3cc2ffba5b1da3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53ffd819b0bf53df7d7f7945c853f165a146e7c8ba8cef9c875d45346cbea5fc
MD5 b4cbc40211d8792875d60c2e74188398
BLAKE2b-256 225fb261e5d560b3729bafe06f030a1f947fc8434f4d7f2b936ecc79d77eed0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d76bc5e4baf413368c0c3a2dcd1d77d7dd892d0c9388028b6765854a4a343f5b
MD5 7ce8b9753b7a45385c9e9b09219800b2
BLAKE2b-256 758f528b8329c51b74648158cf7d694fcb1f61fb6c9323fcd4827c18f0df9014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad8c62a9995960668cc5a93dff194ccafa86d9c0f204c4f3425ff24ca7d76166
MD5 715f89298f11a55ca2ff3dd0dcb0425b
BLAKE2b-256 cbda937f115a9ab6d1f847d9294e6974543c696ba9848f5f1b0bc315320d4840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d74358016866559b6e1f2cca382bb8336595704764ec65c4f7a49686852018ed
MD5 25145508bf189a69d1167a12acd08ca1
BLAKE2b-256 7af354cabf782fab4707c8659e29ea7155c09c8019301de1595651281b1d1bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01a0c7fe41d07cc48f9ddd24a702d5dd4e337462608904b8846499c263a1f038
MD5 2b8452682765889768c70cb34f256371
BLAKE2b-256 f65115ed548cce897ce0dff1cab41cd7e85cf6fcb5d5ef60acf439a2440e1d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2873f4e30e7c3877ab4b00f30b9e890752a58e9b5fa3d851ef6df618a0d4a39f
MD5 62658c3f1ff25bfdd696904b7909770e
BLAKE2b-256 a3ac83c1e1bd0c4c489eee94932553b7f30a3b992f30a23a373cb884de938823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 666170542255ea3d70fe865c20ba52b89a0464f7f684fccc032c0270bc373cf6
MD5 a7286d1d5203d4603cfcf930edad3613
BLAKE2b-256 a106c1480fe7c8351531559e993774e1c0a6061d6312d134dabdc316c6f762d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be97ef275cbb43f6ed9e27fcd5857cc521dfaf663d8329778aa74b71072023ec
MD5 3b6e2ff681297a03f4aa8006f3aaa6c6
BLAKE2b-256 42879c7f278d6b4be47bd6d19199e22a4fea0cfe5864b35f44ede51f9baa1f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83863c90375a520752de78f0e63ff08efeabb9ea9da54bfc95c06ba58543ad70
MD5 fc6a06ffd5307edacee5925b5838502d
BLAKE2b-256 e75417c267715c3d97a8a3ed1946769092bd1a3fcbc92293881ae470b77defed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bada9d64fca8b76ab5c53612fe370e87f00fc16748e819245ad0753b368bc8b
MD5 e97ee4390367401a887a815ad5bb2dd2
BLAKE2b-256 5c74137d3df336a9c5b2a4396942d1d7c3189b9143a8c896b2e085d938bd52f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a69db864951935151ced08823ec2315742deaddb6942901add93650a5f6ec431
MD5 0764885e2b81a27e8df8c3459a7501e7
BLAKE2b-256 d6a57bedb9b11b25aadfe2cd39012d5e9ab2b7628be7af900d6258cac308b629

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6dc1df2fb64a5a560756ecb14ce0b0fd101759ca70a7c6de32b815dbbc6286d
MD5 f85968bca071a5f1255fc53e2401a320
BLAKE2b-256 e06dd26652d24a906de805235e042e74c07227ed001e6756bda1601cc14380b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85392b10d9e35ecf31499a92df0431158d311d308bb0988ef4328c9cf1e7a520
MD5 7794cb605af7ba1d838d81fffa9c605d
BLAKE2b-256 87fd3324cc7a353bbe98a9e1cd2f3977b410c3211fb80201951a59276ea800ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0a64919e0925fd923b1072256103845d3f87a47ab1ac28b18bd12838319e41f
MD5 f9b82e1c743ac4e9310d9e6a1c3d2070
BLAKE2b-256 5554e7959513065aea9c6f71a8ff42cb51d230664c4f9261fe7337807a258434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b05d99f0adc059b62b2dbf50ce1e020f258503712c808682217c81bd95a782c9
MD5 5b0a57e0f8ae0d3d57225c701bc610bb
BLAKE2b-256 137d633a0e13eb2a1e9bced279d8cc5911d1e61cde0798c49375571351ac9cc7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.7.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.12

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d89c7f481d827f7d6b675262c19cfdc6048e9c8b6fb1ea47e9d045cff4d346e5
MD5 177522a464115ae73760c7d1ad52b66b
BLAKE2b-256 9b54c2bf7b01087e2cb3ce9ab938310124854e3a3359223e9c646cd9e7b511d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcfaab381ef7be303715a85ffdc5f4f0f3b4c6e3e1f861c42d9293d4c6a31d8e
MD5 171ea791322b37e0c987fd1b86763219
BLAKE2b-256 32c08cc0000c35a6adb5f7d1f27f74085b268123c05511d5154e3713e927a861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79178c7ce68777a575bdba58c38e4e48bc41adda35f4699aece9a53d76449f02
MD5 0268eb42f4e7e3c7d9ad5ce97fbb388c
BLAKE2b-256 cfd5c43aec128f28fae122747fe56f71d98eaba5686661440164f2e5cb2793d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8eb4bc9aa697c0a36fc1b86b39f102eeb93e10d458da7db91d4efe85fcec8bc
MD5 a57841b007ec8ce5d009909be93dc1b8
BLAKE2b-256 a710d098ad46d716780753320f568df580bdb30ecd4981574ecdd28a24ee02c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfa3a0a80f8ad8e91ee44a0502138e40fe3a926736d5e984d5be351d565b74ce
MD5 d8b3b810de1a3857a08160cc183584cd
BLAKE2b-256 d38c1bed533575ae1754de74104dff05189b6f1c5188d24bae3f3573dab39cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb10580a505cfd8ef1d999f6fd4901cd73512e9737140f777f47e43a83ff38ff
MD5 ac2b149020909f264a73ba94fd2bdf92
BLAKE2b-256 d18f42c12a2f3b92eae9c124d24277341b8a29da17962dd1530620cfde648ab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f6f3f784ed905a1317e615031077067d0ef3d3a18f91b20b146b27828f170cd
MD5 e3a11f77b5470e6c14f6f4c090115a05
BLAKE2b-256 3f16a98f096eeed547216cba9db0eb1e2319e4dae20fc08d1fb58299a47a2ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3369e35b5bae2c3bbbc7feca3e6dd9d5f4bcf6a169be7d3ba5ac525afcb995e1
MD5 824a55e884d72176e8fdcde20fea6f00
BLAKE2b-256 ddd02ff6b21b00b5a961ecb306916220bbaa1fd44ced7e65fa77035f7a508de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a73fe8700b16d44d0b46d1db433de840fe1e8633fad813cf1d56323feba154f
MD5 94ab79d7e786b652caa44842d13e135d
BLAKE2b-256 7f896f41466bdc68e1811e6ea74e0ecdc1bb5854cdc6c5f9495de367083ecb41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a324ab5a15d3d5601cd3ba798fdcfa9de4159f28f61193da3d60103c3df9389b
MD5 c810beb8cd5047e71fd3f7c5516dcf7d
BLAKE2b-256 d4436b084fa3a7f0946697496fdedc686eb689ecd7333bec54fd2c1322762625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dfb22ef89a95ed2ef5f5c9e4a579ad6f858870ef59f6ac66afe20f896a25c09
MD5 7d24f946cb48187e8cea0a1d5f227563
BLAKE2b-256 f99cf1a42260b8cefcbb7b718ac5e4a8287329c7008ed204bc9e97bfc4f27726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1a1b2f134ece742f3ac5b85661404e90adcfc5e9c2490ba4421f08bfdfb411d
MD5 410488502cec15880d05eb5ce9dd42db
BLAKE2b-256 a33b57624f0b78b097947d1004ace57f8b82e6cff4f0d6a1eac3fc1df94a43e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd887b2baba595c6f211a9d99755eb88510e4fe66c93cf0e7fbf5b59cd6890e5
MD5 54914cd5c3745dd58b7f0390bd0840ff
BLAKE2b-256 7cbf8a9632f2e9e9ffe60a07527bdf6c18fe3a7368bf1f5c7f5ddd95952576f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d9fd277ea8d01c51e13a57db4f1b2974bfcb7eded18af17960bf2eb496137ac
MD5 da42122a530b8e0d68e198f359aa93e7
BLAKE2b-256 339e3c1c12035fcee8ec21a902eeb8af62bc1fd525c143b67cd6dcc26aa4dd17

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1d6e3404f9766dd28f604c77c282d7c6e4979ae1b94c7089e5d9dbcdf6f9abb
MD5 d54638897f0969c649f3a2aa36a0f7d6
BLAKE2b-256 a10e70a1c7d48b964e281055b9a4d68d8f81df0a4b7799a92cfd2dbbf706aa0b

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 968e47122d908342ae4673a8c74a2f42be87a7033cc51bc0665f5681dcd5b630
MD5 305f5c1070e6b12f92f612c603c857b7
BLAKE2b-256 03126ff0fc6170609ca0573b2a1218cf7cdc7e59cd6458afc9eb84560ce21eed

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe7f9ede6dd2d022e8dc914d077421be6cae6239eaae056a283de1fb85477d92
MD5 0d7cb087752e793886655d4da0d7d62b
BLAKE2b-256 caf0efdd486018b6edf3fa9a02e71ccb1d04c430b36d58031872ceeeb180db8c

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee51cc8ce0c8125907866288eec73cd14af09d3c627df82fb09d65859c406779
MD5 dacc944b2efdb02027dc1d849164d97f
BLAKE2b-256 fe04952d7f6df23614e8a2e27afedbfe6087e30ef5e9ba146ec34b57dc57bb85

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10a898d06660c2606c151d6dc74801a8700c66b2456c579c0ff887feabff2e38
MD5 423cbf748fdcb8cfd79f189772e1c9c5
BLAKE2b-256 d9c68312fadddf5250a775f2dab27c04faafe1d36b628b2673a0dcec83ba80a4

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 087df7466b375875ad875133bfef374fc90f8ce95452a6a66758e42a7e0587d8
MD5 3bd1cc49482f290abacd9dd1354e0011
BLAKE2b-256 f45964980f2e92995a104e8c271709b10fc80f0d0103bf5589ab69c7469b111d

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fb59c227706fdc7921c6b2798d801d9b8449eef37f0a969ea074cc072307c05
MD5 6c32078f1d7bd3ad8e662b8ebb616495
BLAKE2b-256 9b632169e0cc2115f048e482183f59921e14cb974971ca2b946898e6f4ecc417

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3c68482681672b992f90da52e4935e43aa553b745aa8cc0c6c31092744ced0f
MD5 85a73c7cdceb7042883f3cc34ef808e2
BLAKE2b-256 5c6495e1d53d3339951ceed274283e4e6d6dfe6f55f988a0589c84839a865428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40b0e573e478116da44716ca1fdd140e08aa4d824d5261375be87954c6e7351c
MD5 8535dfe8645d09838c0002b03d74352c
BLAKE2b-256 3a147b07df345b067d92d9f626ab8f2c16ab4434da65ec73c74f570200425a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04ffa411b2e336b1c77a4268890a311851ae6b921e3def2589336f7d24d59a72
MD5 16ea231916160d4222a91789d2eebb20
BLAKE2b-256 d237ebc57558f6f73a7020e65e7f296da39aef523c8217355ccb827743b2d328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3338f260890a21d35560b655fd9c2d640a7e833b1afdecd5ba14eaebf3ad4159
MD5 2b95864cda55eda6fe4e057ccf4d3bf2
BLAKE2b-256 eee4f784c26e8c3744db9ca3e8b0582f55b1c00d5508701a7840c2f069a8b991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab42127f824bd9f7eb562157f7050631ab891c67c9b5e5b1e2ce423965025e8a
MD5 917aebd1e08f6a9b9a475850e4b928fe
BLAKE2b-256 a1d8ccc297c10c3b5bc9b07c6202f9e3107ea41e53aa0ce808fa0bf69a3b3553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f486ef3927aff566e573caaae9dc2890a6d5a67da5c6029866f7d1f21f9e4b81
MD5 1d2a1c3707d0f39242657f0b217cd7ce
BLAKE2b-256 e9c7df908aafaa5c3ac1ba7629a86158b57cc2aaaaac44d0d3e5c503e412e6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d86813d45f0c791015459cd2568e727188d899ba6d19afb285e2ab6f1969ee33
MD5 c0a0a2568bbfef1beae58434e69cd5a8
BLAKE2b-256 a7224a517bfb3ce3d55934e7b0cdf58543fa3ca7f10859f5e020c41cd09c65ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c27facd82c36baf8440263c5717b1a7b92a8cfbdfba16d2c5f570f9abf6e39fd
MD5 c005b5388e8e91f5c943c9b5d583ffb1
BLAKE2b-256 aad35d398ef5b54da62651f167cf89f32ff2fa9e909defa00fb1640e2493f454

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2632174041610b4bc3463863e6c8577fef0b084588ce8f98369112138a22c5d1
MD5 0cf75b39dc926c06870100176956c61c
BLAKE2b-256 ed7b2f5a7addb7ad3d7f98fd27dfdc6eed713322eb13c1accc1c1ea95e53961c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4c8a1e72ec92f2748dc02f399da966fb7b4a6a5b0fd4df37ed7582f9b45ece9
MD5 66c36a6722f0426647381f64d184e783
BLAKE2b-256 4236ee415eee559d74b0f944fef9238aec46ac2614b9011bc393bd8479df79c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 177911fd13ed042b325b3c34829c3ad9d18ddbd01b59ebb14f32ec18d7f89f42
MD5 4c216eeee27121aca815a39474086064
BLAKE2b-256 710f257b7e5e8ab6d8904760ad0240f428a50edc467e0b892dec635b3e9413ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 636e1235d8f54373c45f292b0945684f9717eaf82806529c93ba1969c6af681f
MD5 676c7b2057e92406cbffca6181951f1e
BLAKE2b-256 9421a1f45591dacf2716c598f89b3aa1aa5a11cc188900b9c1fcfc7f191927a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fc1d7094bf79cc09401d3095b6482b7f80470bb2981d8eee15752458eb86d2e
MD5 7e6c041fed67417c89a67355f4e9fec3
BLAKE2b-256 ca22467ef5130fdfee833310f1385e8934d2109cd30a340c9ca8244b6f3521a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a50ba8c712fe98523b2cca84f8bf47e193f38698e6d2e5ffc30b96334508897f
MD5 aab237ecc7eaa63d0f349ce861721365
BLAKE2b-256 c00096e632fdbb466408949f46efacf215849d31654d5f5b9c8a36367e6c2a7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d21b0e9ffb91ddf606cba254570cefc045a79649b2d3225ea4c8d8326f059f69
MD5 c8cb50cf548aa3b005232050b1c27d4f
BLAKE2b-256 8316af121aaef5ca6b6a4355930666948be3abd37f25c13417223df314729859

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 827679c935efd36aa458232427c2cc69f68801300206de7237185b5fca1a51a7
MD5 b3645482734e3485570d05c81821e58e
BLAKE2b-256 fb38dd007af2f02ef179c466693ef8c7b153a30ebdd547b651bdc763459c5ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea6df08a15af2bdb94ea2a6e61dee0f3368fb95274c3ee049f7a3384436326f7
MD5 00eedcca3ed4426f9868bf8a16176203
BLAKE2b-256 59b4bd3ac3ee1afe2f5d4da4e6e40ac49d66269ecb466363715cf4d43d83fb81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f01fd648ec1c5e1027ecd98899414e7533ba290d694fcdec4a6b5613746272dc
MD5 f62bc11922c495a48c04809e6d03e1fc
BLAKE2b-256 c9f1336060e82c5324c7dba3bed5dbbcd10b7a8a9ffb89f4b58eba3ddb065fd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dee81b7010e1b5f7c88c8d052cfa9d09eb213512cd2a4d021b4a9a64ed79920b
MD5 dec8e7e1d1f6471b917b764d8f91f010
BLAKE2b-256 bce19e33e722b1d197f8569337ba50f98bf73283bccb163d7f46afa7ea6e8da5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5f843d5188284a86d173cc185737d448150a09a1c831f176b8de0d0f99a98fe
MD5 1c2f674c15f9d23690168531ce9c4da5
BLAKE2b-256 3184ba4681027aeddc2f0f257a5c0997bc7d49b18aef92fbbbd60f8f04c2713a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e19585413b46231c1c97984a2609e21179340b00451599bebe3303a516948cc4
MD5 a71916618f6f1e7a3cc62b8dd9dc928f
BLAKE2b-256 b8fe7857a5a5ee5840d38c312900a96bff2ced3f0fbd135f303e240d6d0b0064

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6632e98ac5e47b84222d245e701243c4b9172cec4e6a6e91b981115138fdb376
MD5 529dfef6c5489bb5d0d65c39b51de143
BLAKE2b-256 4b2f34d02a3d2d6fcca70c33aab50e7589a14f3c36bd2569ee228c34bd28517a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c0d3b899095fd6b0b4683e6589c01fbcbe6ecb5dca3035a9d8979e11b4745ad
MD5 7c49a2aa72c805944438f8e20d4978c6
BLAKE2b-256 43e11b1806c35780955c99fbf1924a3f62d63e7240ca6cb8e9413559483b1d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f00ccb5b69d87e9d3a690c785e1424dd8685a76e252c9ec6063ab3ac8642b37
MD5 236c443a7b2b208c87587e8198368874
BLAKE2b-256 cce3a6d3182dc9c492f25547598a4e557a6ae69804937f024c308bf4a71dd124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 315d65e4cb65bd8ed6dce22d59ce1683a77c6567fce98d09ade9de7923c29dcf
MD5 53303839ba4a3e145652b570297a4963
BLAKE2b-256 b1750699d83660b84cd2c65782c26d253f26e065a9b796b669655bf5f6b0fdc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d05acd7fd59bd983b04b7614252be24e9b8ab045c28acb668fa9088c4401a6b8
MD5 163447ca97b5f8c8f14e16915e31bbcd
BLAKE2b-256 ba83d890843968775a7782450b8caf645e7e1b68aea0a25aefa0904529714022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9afdc599714061c069dad1895d296750acb2e25a848ae70f7d613b2f8460abd
MD5 6288ff8c2d6c3df9c919d8ba37e3c421
BLAKE2b-256 66acde67ddde9fc3597fbd952ad18b0750b5d53bc5dc80029f2eea32c0938e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 187994c1f3112577717caaf11087e0e7e1524bde7927f8af1a19fa2df8d5a150
MD5 05b7489734606449801adc57b5e7156b
BLAKE2b-256 54a092c46ca69550f1959e60a08fa465fc4dafb44774ba642c9c8c7983f84911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1e6c81341b0cad0aba6b16e466a89b0b51661aace2a8455230765bf5c76889e
MD5 c03f432c190b1acec4695f63bc8bec01
BLAKE2b-256 297557626beb0ba11660f42bbb1cb012b69b4ecddba1522f3d8e9823d6b4fec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b515caf3b1e475faae98ee01200c0083884fbd843f51a14e45bcb226d11aec53
MD5 4b95d57180f8140087f3067a12a27bee
BLAKE2b-256 178af4150901b26a21db6b5fde5cf884d261297bf3e1f40c96b5c09656ab4cfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1729f59d1b69f4bdbc69d5a57a196d92e787c9e073b3ecfceae4948cd07e11c7
MD5 98992750e527bd3ecc2f7a2272421c7a
BLAKE2b-256 4f3797b091f500b219a54dfefabd1303733d3dd723f51d3741cb46652980cb47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6398d6b16d218a702050561a5afa9ae01e4860d7df8da91763c9d7ffa22f903
MD5 036c886e39fa9ec2d7564b62294d9623
BLAKE2b-256 401fb218f6cb18b9f1a8ad93074488abc3bc72de3a97f9a478b92af1f6edc633

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7d5f6264827768dafec083927d9c421a71e24139aaae1b1d878251196e7c822
MD5 893430a5b822d03e17d2e444173ee2b7
BLAKE2b-256 0e1f41929242a9becfd250a256e61ff02d4b29ecd6de8dbde674d898fcc7761d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ef948a51086e6032d96ef0ecf0de29330bb527be66b5e8358c524b9e7020e24
MD5 4739374f8e6d0accf579533478bf45e4
BLAKE2b-256 5ade5f56e9d0914e624666841413f42c18cb5444b95db3ee2110071c2af05a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41f64bfdaeeb2a37a7653e7578c454e1939649b4cdc8b51969f5e9e4b5a7293d
MD5 ac5322f1928223ec4a86303f93d8be63
BLAKE2b-256 3d7faf93e89e7377dc3192cc65124013ef87deccc06d03330948a700f901180c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76a2abf55426a3812209ae05e489e306d4c107e824a89c0e87e2b19a21e186b2
MD5 e1f6867482caa63bce3b58588ae9e2fb
BLAKE2b-256 b249573be661a6cd2df1d2a2efc4080a07a988936095214938f3ffccaf9fd27f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40d593f2f0bc2150ac61f0fcd46a922dd6d5951e52dc7d39f26940575b41c8f9
MD5 a78b8c5f2ea2d6289711222edfc52c34
BLAKE2b-256 4cb14b8d7cfe6da387763c8e37e4ecb2d885cd2c5342bee1b013f9d3a3b0b8ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d3329f0a569a2fab380a9ec90df7ebe821b7ad28e7dbe523c65843d4b620108
MD5 183ceba49bbbdfc73e7a49dc60a99657
BLAKE2b-256 0b9ef1432126b0b7d58096cc37683f1ddcd201778c6967a103956257f390316e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17689a8c331886404585e86b5f02e51ba3ab57e39c7d2cd1239b5eab4645988a
MD5 3b2c102d0ff9118f3bab0444fdcd0452
BLAKE2b-256 7ccc47e997a33070c466d83f5b9aea936fd12b04173cfad2509f0b14b0459873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da0489bbba7e72a918603f58d2a16506fb3482b16ac1cb8a9bae5d85ca59531b
MD5 64101eb708d2c471fa237a1a9b94ed17
BLAKE2b-256 c79efb676a2e1846b48e3874a887748fa30c59941bb22c30da6d93a9827937dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6d1a11696f5801680550cda8e124dff8b5c4a34a618f54ea8c5f09a58adc837
MD5 bb57baf88a8c30b3a37a16ba7fdbe6ba
BLAKE2b-256 641cbe30f847c291617d820be2370260273349ac39a4fbe258e94e84a3fd090f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 070e016d61357bde937eeeaa650a658d94060cd353410d4f21614f28590cf6f1
MD5 aef9cbaaa2d75e7fe93ae18548b6a6da
BLAKE2b-256 e5a8c9bd414417dca11744190508c58966c298072cf475b05b5396421ddedfae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f765cc9359720a450e339860b6dc2e1a45ecc0d94b7b371214ab9cf1f0c0a1a5
MD5 0349b2ee18bf1222f57772fbaebfda02
BLAKE2b-256 ede6ce1e8b56bd2931e613b2e51f29a9ce7908e8154e0b5c44988c7519e7aa4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 990ce97e3c310513aff8584f0d3e639d74881733c3b074e8ab52a98e5e45843b
MD5 a600b5a1691f2c450adfa1b129ee1f1e
BLAKE2b-256 7aff79c4f1c05adc2b1459cc49f09fcdc3156b78048259173d48bc7a285f8fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e27f24dc40424867547e9d9cc88ba2d52102524194f417a76027209b6083dc1a
MD5 0f4ae4425a3ac3033ee6b6af0b159e19
BLAKE2b-256 aa6fd354780d22f9c1057b241c791e38177b378bbfa639c155d65e5acb1bbc7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30e6e60c2750b95a09ef3abe09a5dd28d2ce4d2623433686eeb8a5097bf11201
MD5 7cf3e4c86d6489ddd9a040753c848667
BLAKE2b-256 12db95b504b53d0688c139ce97ad6a4774b977d54c7d41188a9a660cd19e6e38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83582a242067483ef2d780516ba4a73fe5b2cb7faa3e3074081f13021cd6d140
MD5 dc4f8a16bd29773e416ddb0baad2535b
BLAKE2b-256 feb36068a3cea0468b789bff558deda3df382a7d7a516a44f7e75df16dd5bbfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04651a5f5c85fa37faceb6438982b120423459e5c0bf0aaaa401724da0c4e234
MD5 8d872440e0479fded1611ca033cb2b38
BLAKE2b-256 0cb82403370b65ecd83fc36d73f21f729ac8c22e3f2f919b2378c5371f900656

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b49ab40a803bddab58951fa391aeee5e3e8872dcea4cd0113730149f0266a23e
MD5 5d225a7daa024c6f3d9bc7680bc06e46
BLAKE2b-256 b8c4ba1f1277b6552862757a1ce6e81031c60f7523c95605192116d476c80dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b27a565d4fad0d6e53599cbfb772b3e89b9a9fb5016454ac750a47ac8283a51a
MD5 9f27210f7b86b9140532e077df9aee34
BLAKE2b-256 c25ffd5e2f903f1192c94e5436917148f0f7a75f554eddfeaf647ce7a0711f45

See more details on using hashes here.

Provenance

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