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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-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.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cohere_melody-0.7.5-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14Windows x86-64

cohere_melody-0.7.5-cp314-cp314-win32.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cohere_melody-0.7.5-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-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.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.7.5-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.5-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.5-cp313-cp313t-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cohere_melody-0.7.5-cp313-cp313t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cohere_melody-0.7.5-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-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.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cohere_melody-0.7.5-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-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.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.7.5-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.5-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.5-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.5-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.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: cohere_melody-0.7.5.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.5.tar.gz
Algorithm Hash digest
SHA256 d54d8ca2958a4b4911a76da861ea3b5cc734e3ac3ef6c383af269cba06390315
MD5 cd94e80ef4fe3cb421687a3f33471a37
BLAKE2b-256 11246b8e1d638482706464a90216dc920952eb96bb9b117ca1f57a404f2d828e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d147f95959a2a0d8412445dbd058962de7a14499a6979278269aab90e2a8fdf8
MD5 59365f31b04a1bb23d56c2bd1f2b024e
BLAKE2b-256 fc51973e18d1b05f19749573816df086c3f480d5d2b91dc1c7844238c0d11d0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37068f269c3085c06a50f33a2cbd0dd7c0253c5f020eb78d44e708f33ddc9f06
MD5 472c4b303439a169579c05415a39cf7d
BLAKE2b-256 51e6668ab2c85b706813a9c97f16fba6c500e4ede04abb7aad273755104ec539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a1dbe9eb8f7cf8b2138a5841a1906163f5d81506170445d7f5f9be3db61eefa
MD5 c893cb0db2cdeb32044967370f0e76ef
BLAKE2b-256 ba7bfe0c1f9184a40a56ec1db8244085b093ed4688076eaba7f70e9569b272cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd68c68e48ec53cacc0085cd99a4bf8a763faa9e393b1ac67518985f2ce6f0f4
MD5 2073ad81c144c788a62ed26640987cda
BLAKE2b-256 4fec136fdf6d150dcc1e056bf689c50057080bce710af000b46cecca378c631e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fc50fac2fa39ff3f368b36a964f705a377e6b42fe3f581d364a94842dd43248
MD5 aa73463a2cae890c4a06d6d6db5525ab
BLAKE2b-256 de7782dc713e7d36d1977484406c5ff901acaaac27b7ecfd673b46ab8b2dbbd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6aef7415188c7be0958bf8821a4665dd43dec226102d507f202559ce6887acf3
MD5 530a700f6de2ce7f65a4efc873a6b694
BLAKE2b-256 b3838a6841d4ee8518b5ad19647b9501640fa8ea64899cff69771a32a653bd2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33e73a74eb18a29ef2ecc6454107e52e3a19b6815d7e222e3c40706a964f2bf2
MD5 2c0039403e9ea81f446bb1e54a696b4c
BLAKE2b-256 6f3b059ed1b947cb1f15f870fd424e29e78775a9f53f6c521adff934f56a650a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c330940be4236ecadb04aa5a7f59bb262e20492bebb0801e44205fd5fba4fac5
MD5 6b59c7c556f4ebf0bb5622bf108a036e
BLAKE2b-256 e6c0fcffa86dd6417d2f71c3ec246f11790e5dc44e82a6acc5cc7e164e532bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c911590f2a9ef46eb103a01a4772cb66e6188c66847d13f36a13f3605a9b7f34
MD5 ce3fb12eb6a0b6025c5cd124835670d2
BLAKE2b-256 f2740de1ccbc5f167a06c70fe7cf68b424d8cd240f71a8d08d265cb9fb1b0150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f5adfb81368b539e07bcaad5e32638222177aeac9fd70128ddd986e17fb28c5
MD5 841db0df07adcac15ac770067830a4b1
BLAKE2b-256 606e0fa1e07fb052f1572e760bf9587012610086d691ee3c6b962bec4231e1cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c6f77cbcb84089587bffa2cd8a53956c83f13d27701a3c0ef564eb9438a1a7f
MD5 95dbb04569ca2dbeb5aa3533dc0bffe3
BLAKE2b-256 eb5860ff675eb36e8de3d9a27a5d158d9c1cff667cade4b53cd10e86a92825c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b5d069c592948a2b61adbf0b21dcd27aaa49a77a01b1aa95e442a6eaf8a4072
MD5 a6863f6acfed8be15cce73faac020a06
BLAKE2b-256 e834e836bf8368a76695089368535a8c9dcaeb41a788aeb65ab076dfbcf63c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a78e201a7781671d4943770e12dd1d25bfb2f0379bb5f4d2cd480b3b651b7c9f
MD5 7168c8195888df585e6c86fc023cb08d
BLAKE2b-256 7c112188e3a89186b04f98ca0a22f473fbfbac3f29ce333b0b0f1944b413217e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fc41dd194a9a9f15ba3124e4d7cb9a2629378ad5fa23eed0ce0bd4359abf6d9
MD5 214c7f153638b4d2c292c5dd306df14c
BLAKE2b-256 090eb02d13b1d1f8d700e8980716927e2bfab95327cc4297807aa5e11eec046c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9df03e6691804fc8855b528fc169530cae4d37f7b299537296d4b27d26b61bd8
MD5 d1bc29da3a3776a5f88426b9690e04d4
BLAKE2b-256 22a4821912d78bc98414cf13f4b255abfb2d9013847ab0f2edfd791f5bbd31ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59ded28bb4768e6d0314b841aa1c4f02a79131fdf219b7ec817a0375a8772f40
MD5 38b5711f5aba1045afc9cd015f1981d7
BLAKE2b-256 fa644dcbc094ee13e57239b7a1b44ff39cbeb929751fea82774401240cbe27f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 672134e3bf6be7904d132494349a09d4d8c88c394d4cd8a117baf1509989db46
MD5 1728bcff87662690bacfc2f83a5e5b68
BLAKE2b-256 4cf61b2ee4fbaa502452ee5e1f7956593cbf389475ab5c592c93d88416be83e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f7dda22aea1258b3c4bfdf80d2fff31b059f6c0c76aa168f9d3a29c25d367a4
MD5 e02a6ff6323a4f782d1aefb84c521244
BLAKE2b-256 63fa917a6765e4951a368766c775ae83c78175431e1fac0cad21db3c95ccb5c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3c21615ff857d7555e9ba96a2d80a4a43ef3540704acbcff531ffc332794e8f7
MD5 00cedbb78d2ccdc7e1c2db0d648a843e
BLAKE2b-256 3db01b85cdd355fc92b2363f04baabee067953ba40f608ceedce0a0c673493d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.7.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.8 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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5f1b9ecfa3b4f6c42eccafb67ff031929442c670616891545fd942cc1efd7c77
MD5 7f3cfa403fd9ed5fec7cf10317f1d40c
BLAKE2b-256 501d56716a991c918a07148559aab7fd472859064bccf067784d156a84584be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e53711c9d85440f7bb97fe504ab249b5ad38b097d8301dd33b5ba72c101d4460
MD5 68217a4665fa62e2abeec6c38b21c0bc
BLAKE2b-256 6743048e8cb5f1f12e4245b673a958dd08fbd02687a724f0417c57f845dcaccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67e9948534fe42e21d78788016bf77a36984f56a2e6290c9e56ba83b9af9b0b2
MD5 707d66f5786a8ef7a8184dbd45189c3c
BLAKE2b-256 152e2690a8be15a62e9765409444f882ef79c48b0e806761e3c1e30392cb2e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f203a2ee78b5873721e66c104e9d4416edd7f53a45b6e0e30e68ae326277cef3
MD5 229761e52cb388dcf1edd4d7a5cbe394
BLAKE2b-256 c12223ddd79ffdbfffa31168852712d39998062bf6089e21bf6d26ff8f2bd5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fae00e0d7ff57939695326874f82f25a6c56a9f4366d516cb5671cc6c8b41a9
MD5 aee5fd64efe687511a348c0d955ff48d
BLAKE2b-256 ba07061aaecebb6b97f7ec9ca70b85a1cda05e859bc8013fdda2b66990348402

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59556f47dc6d57afd28e7d66e0663ca7682cae3cd569603545f09c1998648203
MD5 b7cade77c516821c06af17e02668f5b9
BLAKE2b-256 20273d7ec6d44bc5ec829005681714492bceb4a059d389ee506a5a97554d27f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c13bc02b8263759e9cb8b9a08a99173d449969be95b075bbfad068586d76aed4
MD5 fcfa50ef3c301d59aebe0e5262091e16
BLAKE2b-256 6fca9122dfc3998ab4969d38a639dc87fd103aa6adbc5b05a6fe62d1a0e0e700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d9f18632a5e1d1411bc7251410eceada1a9dd56ab9bbbb1b32aa6212f359711
MD5 80857ba5e7a8606e755a9e0628ba61ad
BLAKE2b-256 930ad0d02c09c787a0c030b947973ed915f4756b9b1c67edd0957ba6fc9a4d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58659bb599a1899d61aa141be3fc981b97cb5eca9e909628cab581903aff8ddd
MD5 03bfa3226f89b4fb5034344c3d9baf47
BLAKE2b-256 b34c33b2192b50800ce7d55c521be7426bebdfb8e0a4be0d42893aaf88d5232f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc4f5164d1d146ce6bf93cbb861b73d63e8ca0a573ad10848677a508aa09e09d
MD5 725c7a2b9c57c0b4e77326b9e32be111
BLAKE2b-256 b488faf1c917ee2331d6acfbdab9f7ae3ab7c84ea41cd2f3a55acb2ae0ae2c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abafe973e172227f811c3a2164aa999c73575e8bca4624b2865bd2d285de44ef
MD5 ddd2062ab78140dc0de35c9f2b4cd20a
BLAKE2b-256 2aa82be719ba361d3bfbe994a7ed056980e37467e3efe0ee61472a5e4ea788d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bc5e4a3673802f943aaf03814f2ab33ad3a848efef568aa1b89381bbd85a4d4
MD5 e74a6c170f5aef2095bf54d1c1757262
BLAKE2b-256 1530d40140126972b27968bfc2c7f52c81a843fb7409571b00eab35024b6f6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f189e839106e6279aa3574a5f87d82a928c7c4889dc070c652eba7a2ccf545a
MD5 7ea6da64fde01a24a8ece390b0bc5eac
BLAKE2b-256 9ff0337ad6b8b989020da3664dcdff393fc8309629e67b8f185e90de73f28cef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58ef3c269bd302ce5a23048ac6501ebeaa8e950352966d116e1b461592519c4a
MD5 77d563e9c08bf084acea8230f500e1c4
BLAKE2b-256 de5ab5d662e1314428905f80aa93280ea56fc65e822eda2aaa535a27c80d5cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cff8bba028fd49115e14f0b97eef6c98a3beeb07a06241a52b92abbcc41d25e
MD5 62b6b074961ed154a3b30de22e4ce761
BLAKE2b-256 7e30c8ebd083257aac7f14477e2669289181e27044d1367cb858f39cbbe6ce7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 968b90aaa72b14d74eedc74c33c57cd69b1c726636fb21ee6de7fd8393db7b58
MD5 383f8d4d1ab50b26dd2af5b69eef52c2
BLAKE2b-256 6a57ce9d0f2008874b02357cd09293f9ec68ccdb1e37d4a372efeb40ff04acde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca81f883f53abe182a0d06fc0082bbd1fcc61af0fb5e80430f3f51d994a3017d
MD5 36c6b48ca10ddd79eedabaa9748df1ca
BLAKE2b-256 21f939eba0d0af8b0ea29a814b51c0f20107bffc2c75cf4203ffb44c13cdbdeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b396805478733c80d5d4bf430b2025bc54078295b0cb8bd323233b463e69ad7
MD5 7ea8b883eb3586c4c293c0e87aae8a56
BLAKE2b-256 75206a11f5e4931f102e72bc9eb4cda5ab03a3dfe23cbfa64014a1ad9514ed63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 464ff03fd83e418dd9dbd3621238ba3d2cf15e40416440227990bb76a46ea432
MD5 7ed1c3c2b3321bfaecb23f44dc89c43f
BLAKE2b-256 f11f97b5bc23cbbeb47fcb1bfcbab4e1da1dfcd8ac91ebc6a148e184a402797c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ebdab8dc5421ad42fe32a22d0369c668fd9b2031176d97e73444eb22ab69d4a
MD5 8183b2c40f13e2c1ee3da32fa5093516
BLAKE2b-256 7000092d59cf07be67d3b1c676dac81bf3a2aeffda52ee4fa60414645cccf1c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fdae29e5f5d09e4369e5a3a9e5bf1ec2c2e76ed2aa8e9f92e9f3d2cb2857937
MD5 8ee87ba75c869922cc897f7490de9df8
BLAKE2b-256 c1334fc1decf4536bdf1554a4dcd34dc5146a2cb26f9413fef111153fdf4a628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1cefa5a01ce4bf99615e500a95f8ff16b308ea5dedb4b8bf8efdb0b89ac33c92
MD5 20ef36e75116acdf4bd829ab941f17b9
BLAKE2b-256 f7a81ee3f8dca8668384d06147c4ad5031058df8cc66aea16ec987f1730fcbcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4cd3d9823e58a7ffd7f1337183889f2a91d2f42fa474178caf0306268014d3c
MD5 921cb37a504fcc2c3d734c6dd6d9b45e
BLAKE2b-256 f01b66593096f6f02ce393b3b8703c998d476fa31a27a69cd3216e04aad11911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a36e768a23fb4f03cb7fc2939e43d647dd94db4daee8ebb21d3817f562499e3
MD5 fe04642eb5d727a9daec6196a0069e65
BLAKE2b-256 c05b4b8e6b1736d4290bf385705ce513b0ef7492a5b3398070a65aefbf6e1a12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bd8271b49ec57f9dccb4d5788cdc7b2c874f5df7bf32741224e09e4f01c6acd
MD5 b857d902c453baa7b098e15c8922c517
BLAKE2b-256 95dc9f013dbec7126d10c41d28a66ebbbb439267f5018d16703ab97809915fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e22eedabf7ae02ed54d43feff67638a37d6bef92e821d4eaf79825e6d5c3c4fb
MD5 f42b671a180f50c4c22ea3f0f0725d64
BLAKE2b-256 a9d51d9b634d6e957ef47a95b3a43490aca6f6291c672220c2b8ac14f9583d33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46a3acfa764701364feeb14c8e4df21526844f703c5ad454f66ae15566ccd3d2
MD5 07f9d726ffecac50a77b727754764cd4
BLAKE2b-256 324b42744b6c64ddeb8e358777d25bcbc4ed395a17f2c74724b09c3785bb487d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d307c44a856ed01201e11c95e5be7f3dbf3699293490ec89d0f9f657f58a3ffa
MD5 f94509b973934bd5f624f21ed609a5d9
BLAKE2b-256 117c901554e91768cb30c58180da350f42a6a6da3fec50efce118776332cc3a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 746e7471ea2f2ed090c84a2af8da95245e24abafeb65fa3e84cc19eb3bdd44ba
MD5 423351c5b75d6fc913f1bf5548e056e9
BLAKE2b-256 4896164c5bf5e50f11b1c0dc4c7fb09d8a01ec2456796fe6eaf0e52e6be1028e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f11afe8735f1e2752c57eeecfb4f2c5979613e66b171ba1a3a11d0d9e04cf5a0
MD5 63a78154140b227455c35817fef23042
BLAKE2b-256 3043d162b25e3d3c24aea51a5e8483bc407e49b0f08b3910601abcc19f3f4d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 503898a1ce0a95ae9eb779afbcddca8375d6808158198a4d943822c199267666
MD5 66b74f85021cfef250b22db03a0fcd12
BLAKE2b-256 6c374566cc379515d39cce6f5ce655a48928912bc8dcc5994a0215bf07918992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a97860580ebe48bdeea57bac585f6e072db3e7ec060dc8865ea03b210ab4ecf2
MD5 49abe3a7ed9e344b3557eb594067f151
BLAKE2b-256 10571f8b89b15fa2c1ce7186bca0ac26b4ecfc9117de397822b09fa032817971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed49b709052b3aedeb7fd9d493adf9ae6e94b06fd9690aa323fb6bec8aa34979
MD5 88cdaf0359a38e46af356b57a0c51646
BLAKE2b-256 a8ffd43ff237fcb25cd4fc2bc10b452f538ccaf24e4113390c4f9f313fce3200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e7b142fdef1c1d800fefc0a9c26bf952ccd3f93623040b5ee527ca1c563e57e
MD5 a389ba6e92f45277d075cb7838da9604
BLAKE2b-256 7c76ff5ea20cd355e8c6a9347074857ff48f6117f5266d4483ee1cdebb594590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 454e9784774cc84ae4ccced41ea081131b05dbf3603f78e6627f270cb06ff0d5
MD5 afc463a12dd9f30a5d95de773dc7c02d
BLAKE2b-256 a283ffe1494a617d88c696b8538bf57fdf3bfca85131dbbc500451a4243e6acb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7660eaae4a863f63daa41e8a8097c28c3a2500a957d63c199decf0020af936b3
MD5 494636545f74fc8942be7fe4d3694e84
BLAKE2b-256 43de81d990e2f2bd1e8c6b2cfd774e5494b5431d401378504531a77d0501f0e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e939f9f9999c52a0e5305886ed5dbefbba6f61a17530f125bc503b0504477c30
MD5 fe8ddbe79e43b096c954ab4805345d7d
BLAKE2b-256 5ca31b91bd21485b824c0d0259261f6771bd06f28520bf7f4cec07c5f5882622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 972227de9ea12dedcea2971f17deacf6e72bdb9675c7679dbf10d6d58ff687ce
MD5 9627fe207b7dd5c8ca82799b88be1ccb
BLAKE2b-256 631ad58638d0f557896024e6bb4c683a71be0ef884c137d9a4db3bbccff9fceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a16c586d3752b37cb825a6eee3adc4aebd2d770e8a7dd00b70db442ffc8331a2
MD5 08005c13ad04d146ee7ac3ebe1e0a517
BLAKE2b-256 73055edf23cd7ffbd6281cb3e379cbe13fa7ab663e6f04da0b1079fb90c53832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 295f1d231f73f9c7e62fb5ae748c0b897f53b3ff1e82cff43b9f48d6eb433f27
MD5 2ca8a4e57ba7a58a8590d8b6305e22b9
BLAKE2b-256 58b93864b29d94ea1fe9de18d081e46dbeedb53a95ed70e9a16cf39ed6b620b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4b74fc58e5b01d54535275dd3d328eabb99e4d1ebb5504168622d734952c3e8
MD5 5d7d115aa4f38bfbc2f8f2ecd28dd0b4
BLAKE2b-256 b4fb9d5c135bc0ca7f23a4ef72c631adeb65039db9f6900643f6339b54035550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81e68a5d843eb2f8a3b159aa7ff3fbb79cf605af3d34e4162dba86c4ee229417
MD5 18f97816766dff11cc2e82c8cffa345f
BLAKE2b-256 e54c9de109f1a5804ede450b6ccd16971757f0a05d140a5ed25ddf0cee9e264c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0040148017859db03830d919d067b0b9a95efd40eec5b3bd9e8dd2e41a25f7ee
MD5 7d8d4e43ee999761ec836e8cd8347749
BLAKE2b-256 5116a9345a25efd0d1fb63392e8c5d4c3dbb2c4f25323e77b59b037b88b6762e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 675c80a9f8bfa3b89d3cf0b8f06e8e5a3b0a8e203de15065651db023d1f24a12
MD5 2451a09fae88bb616332ec0fa1d39b90
BLAKE2b-256 22c4ed8154ab46ae2e726da9bd408122a19706b8a30f89bb1c94f3a5eb42af3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43c072e0f73e349290a573c7a5e246275a547e99398e74fcfae54c6140133a15
MD5 7169e2f5badc55e879f7671a80a539b2
BLAKE2b-256 caf940b90f83ced8a0f510e5247883b2926563766591e4de01997cc39da0adb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9915b69aa5e695d329a67a7be7cd59a3a60f1c375f42cd9bd527e57886cec00c
MD5 4c2cbd263f95e47586b0c7d132c2ed4d
BLAKE2b-256 71d21867b8e11e925501c5f20c57ee7999ee437c32b742d98ff0ff5adcb5e438

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3118cafb912af1051432ec72ab8f66df1247c26406641b02c0cef57736121106
MD5 b413b15bcaf9059ab2d45df52f1797ec
BLAKE2b-256 8fce5b84a88b4c0be33611cd7624e2ec2c0a6a8cb6eced6d12ca462048b9c0a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fdbf6b0429a2788bc9668f31ec2c8c67e987032670cf40af246a0de244e7f415
MD5 00a62a68e2b7fcda3e13094b96df0d84
BLAKE2b-256 dd802a63de26d6c82f36b1740f6403e77b1ced27508d5140c57264f4ddc2cd47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed7fbdf0d208bfed5dccd43d40210baa700ba5a1fc247645bdf8d17bc5799588
MD5 38b8a65c60b1281041bc991179dd265d
BLAKE2b-256 2d52a91e138544b9e52ec48f9318d625432536b89f87b37467600b12e5a2c5a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 883bdda70df0d479d3d5fab354b0255de7884c29ef1401d30617e167f32acd13
MD5 11632458e33482e000526368134062d1
BLAKE2b-256 d38c707b70a7eda4b2a4dd81344dbadefde72cc3794a8a75e9e1b8b5adffe19a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85ed18e37f6a80fd4b94814ad59248bfdeb2d3930364adb08df1cc45b4f27a1b
MD5 be28bca7a2bf2dea675c9548ee516530
BLAKE2b-256 86755321080baf0ea80fdf48184b637cd8ef0c5f2aed00a18232c3e1804307f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ba2fc7042fc9cb4bbb96a25b1a15a670b377c321a20b80b0156c1a009784206
MD5 807f6c474418deb3ee84fa6ca54675aa
BLAKE2b-256 dd2d212b79b890d18ff92a5d95680ff9498f310fc7073e35eb0ba272fe16f90d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00b6f0c10187e1dea2078854b8989eae56e577f35d05103484e12065dc392af0
MD5 494527cb543962fd95e95ba3df8e078f
BLAKE2b-256 3feb1688c217059e0ffdc7ed4c536fe268341e658f33007e52a1f35efdb60979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4abc5de35f861bb9d1d9f95c2399e131d5dbaf9db5698945f5f91927af5e762e
MD5 60ee77a9ba3bef6c9b1682a0f7d38e11
BLAKE2b-256 76ac7d7c05b47862f9915ce7e5bf83d954c92186839d533984cec87a6a5bea22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f068b3a9a78fc6354e224a040da12f0d5484be26f4b07eb03f47baa7efdbde87
MD5 631af16c8e83e45ffe65d8882eee4507
BLAKE2b-256 39face21bdba23de81992f597ee1fc56aca7c3d824a8d952d6a790712c3ee03d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c67c08e6a61db65d02e63af34549ff114236f95cec947e656d251d235267f6b
MD5 866d780b27b6b38a6077f162058640ac
BLAKE2b-256 589dc83506a0ec442e82a37d86e02c857866c2d9d65f0d2a8a8d719e0ad47453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba84043f55b67e8bba3086b598f04cc9544f631cb3dd73df8d9ad4a85be1ece5
MD5 19a007693b395bbba23fd3e09a811772
BLAKE2b-256 9f122e66804ba06fcd8da25459ec5f351b0c1908c755b6e3f6003678f7c78b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a05185f9f0fe3ed5ebde7d25f64deccf6fc874764df5e4c1a6049b9801aafe16
MD5 43a18529528df49ca2a94bcae368dfd4
BLAKE2b-256 35ebee0081cd83a345a2c5645ac69e338d7c261243b2f53f3b1d3380a821e39e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66106acc82740994fb1fa5874451a94201f01c6986d846ae46c9a613dda9d0db
MD5 3bf80d2447e5dc17fd63e2890b9240df
BLAKE2b-256 f225d1edf293f069da2e584029d1c55e928301139078767fbd5fa048f3c70252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cbb3e909409e132d40601b99e094d6a3b78624199d6a26ff001a72cd31e840b
MD5 2c92af4ec8f7930507eeb86f2feb5b38
BLAKE2b-256 03b720e5233524ea38381303c2856dfa4dd8799cb4c2aeb5dbb8b838a3ead3ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 df093fc37ee71aa6527a1817f2f89e5adbcd5765ceb7bbb4861716918c246fe3
MD5 82e1b1d939671c7ff61683763f41609c
BLAKE2b-256 32ae34dea2c334b45f8a25d7ca63b5e299bccfe9cefd89bde2dedaf5b29b700c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8b01f2116caa87907d98edb9d5564b1531dfa840db5f3e1fb8065f7b65e6148
MD5 9ac47cb6c4153425fca3a2feaaa1c5bf
BLAKE2b-256 16715f461025544df150124bd1a77992a9331626111459525f3a9ad83354e899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8695cc0ef880926b7510fbc8eec8ada66439fdb35ea7333bbf6eff583545d919
MD5 8bd7d7680eca3c3ce062798ce9e8b290
BLAKE2b-256 fd8a600b996551f63c8ba0de7a492a62ea7e75d97e4a34090eae26fffd0e3e12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bb5f72189a1c2a02ab356f7916f86ac08a9a15d7e5661ce7357a447445f14b6
MD5 2de5b95b8850b0f08a2918662db9af3f
BLAKE2b-256 8f9c29c699f2e655610218f6e24514834c9fa9a2e077bc0d947c4f33e445229a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 686c94c805edca3ab1de0534aca63ed7c9214ba245fa2bc7309c9bbe33cebda9
MD5 7361fc1b5e258e4577376339ec94be7f
BLAKE2b-256 dfbde4acaa8a8c09d02fec481f869f3ab1539632186946935e9df87020362b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d92ed66fec07b7e5fdcd488452db5f839526d2a0fd8947becc1a330782c6e2c7
MD5 02ea446f520e44d8ececee33edd54e1e
BLAKE2b-256 a03803c66d3c5832c7e86af5614c661b5376a69e3fd3d9a70c95ba71aa89853d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcaf28d57c93507a4a353996bdd410397ce94e35f66408b89501954acead3673
MD5 d93098bde1507767bdfe198d7d6b674e
BLAKE2b-256 e50fed289cdc3932658c3bc9ea4b9a36e717a18398a002d1007827ed81e018c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ceaf94c5cb596555df6bb316ec31d48754b14d115976ecdf6f6203611a60e43e
MD5 207b226f4bcbb04306ef5837697f69af
BLAKE2b-256 9f9eb55b885d06c0a4dbf51c091273a547c675e7a93a0b2013c440317abf6198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9c72ebe355836d2eb35c8fb388fe9bfadfb3b6f75e9490ce4b17cd66e733b46
MD5 90aa4485cfb4b8a368829db2bf42d617
BLAKE2b-256 e27009993376c1457a02e428169495660e9c724905ff84ceed9e9b892ef748ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 309af541b2d4389a308691391a6157da71919866e860669593f2d8443e0bcabb
MD5 bc3d415fd046a35cb1b7e523ab3d79b2
BLAKE2b-256 f93bded91eb59363b28626139c5a6e5208030016890a3eeb4673be0192eb2198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 38e6c1c1fbb5c8c4f5ffbbce0fe4228992db22b32b75e76cbb2bb8f51fd198bb
MD5 3d9a401340f7f0184ba5ab4e2be34ae8
BLAKE2b-256 02c5621a5d980da7f9008616de9c70cb3ed06d112a923ed248e4e72257f67a43

See more details on using hashes here.

Provenance

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