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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.7.4-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.4-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.4-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.4-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.4-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.7.4-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.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: cohere_melody-0.7.4.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.4.tar.gz
Algorithm Hash digest
SHA256 ef604dd28b6e265215e647a613442e8b69ab9297fab029b9ae5b34041658a507
MD5 562085b59bfdac317f5af0db73b6b9fe
BLAKE2b-256 dbb733973b21d553bde7792a5623c472dc9c765dd245dc7167e11d5115be53b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67429c7f50a1532c66812544d291740a3cb9ff6f043416effa1678d917e09313
MD5 3aef6074ac9f6f70f67ef68318b89ddf
BLAKE2b-256 760741455b8b89d744b6c6533d41a1cd4b6c8da26eacb1ed7d5dfb7ab7a73824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a47cd89da74382dae71534cc8da19d193b578eff6381cb2963d7690d331d574
MD5 d0215ed78ec6be50c9b881a9e3c4e3b5
BLAKE2b-256 0877ff1da961ff91250ac490f626dba334b7394333c104746fd7f92e382911df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd6026a66605928dad5be59a306132c55f352f8a9d17d057dbe5de48b962542b
MD5 74e9b44243b5c9c73ad0f745fd31055c
BLAKE2b-256 896c1dacaa2e92f372cb133efdeb4d8bc94bbce27d19cfcae5a3565c31a08861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0565ad6e0e4ff4a06a0be830e361b7074cd2b6f587abd75b6a2e3fca22faa3e8
MD5 14adcd940f5febe56a75145c7716e29f
BLAKE2b-256 785fa1d7490cb51a5ea56be31efa3f512905c3d1abfbcc6d7ff63b3c43c0d098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94f64013b419f9cfcfe7cddfb9412757e0bd90b0cc565bf2bd97bb292d59824a
MD5 5b5e1b48445a210fa740539db1f20072
BLAKE2b-256 880b1ac00d8b5db827a36de557b3d99c6622c35de74aaa1b2515bbd87ea3d40b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 151877dcf2b45046179e8939b7514aee6f059ab260086e39ccbef90e416a5c1c
MD5 b768b6d3a80d97c158698dc92232760b
BLAKE2b-256 254338bf90553b47b3f62fcbe2223780f6efdcb04c42616647751160bfcf3d89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e12ff0e47c8e2a47050b3a6c41e187a63197c504f6b75754582e2dd524dc3d18
MD5 8071d0d959c4b5c361468cca612ccc1c
BLAKE2b-256 195ad006cb126949732a5624e97ffa059b871f4eb20c7699751a735f5d6792d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9a690a2f64d2876d606346cf4405469d0e9e24c54d40de9a14106ea911bb780
MD5 2941fd8129936b071a4435910c360511
BLAKE2b-256 2ffbf3a9d6cb0a37181da86f9a60ef0eecfbb6b3227b6f5a41d647d4eac1d7fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47bb1a27dc6c6bb4d0d3cb8d050be17e1632545889ba7964b5f75cb845b8d72e
MD5 f62fbdf95d567cd4cc2f25af55885a77
BLAKE2b-256 af2d1e96a867f26d70821c7a41bc0877d0ebfc2c94212d8169d2fa476d88cd71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31a434f7467f63eda0f7ec59b3cf1ac68581d5960b125932ed2e28ac3b8de618
MD5 6e9bbf7efcac1124110430f6b7217d87
BLAKE2b-256 1db4a6bae76bad5aa02badc8b8fee8ccb20cacbbe9c89d7e3506ecf15d81535e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 846cc03dcbab9b175e87de4110b6831fbcab7a9b32cf58163713bfe8fcc176ff
MD5 b1cda61544d94c7836d2762f3792d66b
BLAKE2b-256 37787e9f4af924795a1666af64283660751e27361c108f3bd681a247657fd46a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb94d3ef48077f9d9e7d58e45c0f44c7ffcd820483f377b58d1050c5e5a71bda
MD5 12b5914cb104cd6e5eccd08d06f9ef81
BLAKE2b-256 031349e6e15424a86e0c26c9f96f2b605383d743fa8bdc2c4256613c755761e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61f341ac6416f0ca78c45ec4126998603b338797ecaedcea24ef89f2ee81c5bc
MD5 cddf21ec45866100532e42f9843e4bfb
BLAKE2b-256 2b9d33de0108bb122507c9b0b9ee56f82bc3d948b7e87d03830fcf823f3cf9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 109de758bbcb8f6b471aaab20338b7eb1368e90139fd24a65cbd15db604dada0
MD5 163725f45c6eefdd7580b4828102a45f
BLAKE2b-256 5f1c1b4c1a2cf227961f0eef2ef032a34d74616de2b7dadcd79adae7ea780ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c8d696e1094eb02dbadce8d355520bb339d2e264f64a57458f99f592417ee60
MD5 64d0e4181700231e967f25c18d77c788
BLAKE2b-256 0eb230817a696f0aed8ecf38de3462c84e2e9680a74bfb9eaa2ebd4daa243b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b7b82b2d54eccec029848cf94d6b1374b8b274c56bcef89dc298bdbd3a20bf2
MD5 c96858f4c2ce91d257a00b0920ea714e
BLAKE2b-256 772374fe17eed83531b098a9084314c864189988ea1513af2b77254302b952f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 168a2a9d18ff9cc8b1d1bd69f680ed9b9d466b2bf4824a7d5a3515fbd08db5b4
MD5 189902c541de9c47d95b0fe557182e2f
BLAKE2b-256 3b3d8eb4b6ca8a6964056cc5a0875b4d0039ee36029e192f5944ee8b307249fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 200b5a30242d282f8bbe6530fc883e274dffa6e5466899dae1793d4da5590df1
MD5 8f616bc2425653b16d4f2e980ade0562
BLAKE2b-256 9e2c22eb59c45569a8a961f06dc6e75ca7d56966c17f88b8ef91c43215d85812

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7c237c7ab6477df77a66ecc6a62cf95724419111a9519ac1a97475324c2f3fee
MD5 615a2f71c0bce037b059340353d905bf
BLAKE2b-256 3b46c4c4eb6e81775cf32d74bbc29fbd04b7aab5e5099c67be390b95598bb468

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.7.4-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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d3723f62cd02f1e3ca9baccc1f8d536da83bfbb9ea40217e9794fd2adb5fda9c
MD5 91399991f075e67b172dcaaae6dd978c
BLAKE2b-256 a2b4868b387e117be7e6a55ff9ed2f503fb2bb0084f68c84ef0f9340d3c42563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec2975386f65f2568d286e45ba05dd0d9567e5d13c8537b00efe569c41df8d03
MD5 52a3ac18b46cf76d0fc7a6e50ec40404
BLAKE2b-256 4593e19cae7e882671b287d0fc88957b9c4535c47306906dc393d44d920bf164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85d7e887c150274d2898ad355088fa063b0d25c0d2e015bee3d4e45a55a321f7
MD5 5b6473cc8198567be808965852cdec87
BLAKE2b-256 4b2dfaf2676dbdf88612957362d93f2c6acfb4da0c4ca735ec24ded208c47f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 128471bfaad5d3234a71c441eb96a2fa4edecbcecb004953573f112f62ab036d
MD5 8ae136aebd9dc38ace328011a404beef
BLAKE2b-256 edab0bd98ea7ce771b26a5eecb8186cd5635e25e0210effdc7b804f5cc6d99ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff5eb02e2fc8dc061ef66140b0769dea880f81e839e1a83bbe1d54aef9468dc3
MD5 d69c46accfe986ceb3fcfd39bfbf7cc9
BLAKE2b-256 2dac62181465bf8214df5310f29ca88456d1e99c173d3638e1af86edc5034172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c07301a65340893694b41aaba0014c7d268b25e1870f1edca00703f76dd32bfa
MD5 d97c8f110140d67617e31d3e13659be1
BLAKE2b-256 bd1eb5daf264c1d48d043281636a0b679b8b00de887c3228942c0339ede0057f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cfebbb06a52a19e6cec1ea87d1ed0f48ab729237ea67bf3313cf752299f3d5e
MD5 72de13c8ff368de338c4888715bc0c2b
BLAKE2b-256 7d2deea2fe5917e52e40d820254a24343ea7600add7947a34b9ad6665c786ce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f351c2aeed9f69a8293df6f1482b33edcfe9f757eb5e7afcb34d44d0206afb8c
MD5 9db8ff2ce780611127b95476755f97ae
BLAKE2b-256 1c64073914dd18ee8e910db059956a1e5992ff972f5a97fcb110f8176580ce06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95deef05a899f5e9aeae1cfe44597f7336bf197271b779e22a7adc44881c44d4
MD5 cf821062979013b122efb160315e6eca
BLAKE2b-256 b0dbd146263e5eb411f26f7ac6b92cd4a92a31a48a3b3b10c8a33f9313f5f184

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c0fb80ab0872c1f3c2a5e884a8d1c4c547b7fa6e888a38d1b59969d233a2fb8
MD5 9bf76eecddcacd24033fbc3af1e0eabb
BLAKE2b-256 38e3f87922b5526cc4850a4ed9fac0004a29b1bb4a5f2764b7069bcbe1b1889d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9951f9314be2a45c907d451371a8c46074c66574ebef58ffa5f7900586892dd2
MD5 08780b53bf3f028ca3ed03d97bb3bc74
BLAKE2b-256 2068b67bbefe2fdebe2402025374b8840a03bcd7010703f56be4f7924379aa44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fc6f9e8dcb4fc77ce944a8f85a4a1b8f327073a5c613657c193ff80c91a4855
MD5 4338a51f5d8ae43f6a3d89b8532c2f5d
BLAKE2b-256 ab047a31d9e9cbdf88ea33b730e3c61aebf9ea6e75ed51253cdb691d2e1647f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ada0bf2d151b2ca43743c2dceefe9f9ba9a294beb027777ad9bc96d2d564c631
MD5 d849981430038ff9025dea9ff86ef431
BLAKE2b-256 041719ac3ea5728da1009134a2e59248bbdc1b884e58c2377775214ba72c932f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e5d0888e3ecc50a4a3a447e049120206fa134cf73bb9c3109e2c257e0a6fd7d
MD5 d16abfb0511eeac23adc044ef80be7f4
BLAKE2b-256 7953ad7d916894dc234c6275901b92cbbeb41a1a0199736400fab3d6678c7977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df75283bcd7175a54989fc4cf5112499959097850dc9197797319ed063f5bdc6
MD5 8cd5de66cd734623a13fc8ccce58a0a3
BLAKE2b-256 4d1a4ec786205073dfa14831c083e13a56ec86773709fc83da2de7de4b9c10e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a9a215cf2eadbac48371b7618f476f09a6c940492b6037a01d93fe957d900d7
MD5 eb738dc9d88eb75be5d03cd534198781
BLAKE2b-256 9099fae64f869cbbd7b0cc697cfa61339404f8fe3e595f1734e685318b3aaf6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fb6f836040e38840427625537b0ce2a7a167df5f412c5b25085d92e38fedd12
MD5 ae70d74dd6882b64299bdd6650153277
BLAKE2b-256 18d1d978da4d8ee8bec7cc26ba1ef527b6beb423dc301205aec54d16a1f90434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d17b91d9e82f4f7aa4139b9e8db3a4ca4e7204c49deeb179248b0bd0f7123449
MD5 8cf2825a33035e25da2436518095c0e2
BLAKE2b-256 b885a43c8be23a5da4961a8dd922089d17de86d76a09ba5da73c83bc00ba2b94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48612184a2818b900a9a4da07819dd6f0be9fb89b0c0ebbfe98169733759d0c2
MD5 31c83b4c30c0558988bb8c876694e6f4
BLAKE2b-256 6458f39ec1d913a06bba0830ca44e5a154e98d547af9dbe9e4f655c58a1e5e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bb0ec38d7d39287437a4c2d729645dbac6004fdbfdf34ac5214f44714a536a2
MD5 ae4e105275044f8dfe99317aa90aef36
BLAKE2b-256 919d258e7ad6fa9607f302277cd98def4968057c67507a3e8a90c7a86db6b4c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b93acda26f88aa564adda920d53b9c00a263955671a9ff30a25ebed0eddd1de
MD5 bf6d2447736fce254a657d824c52674f
BLAKE2b-256 8f486453e71c5568037b62bfac6d6dfa2e97098bb0b81fda5863b78c4608be62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c62959962eb6919207d02ae699ae8d2381d989d97c86206caf4f99beb7b92bb7
MD5 0dbc315c0edb532aa0fd65dadb3f9cff
BLAKE2b-256 1869ced263de344b849b4b713d0911834ad8c8185fa0a54c275e2dedc13f31bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a296cb98ce07fa8fbc8bc77b868f7de5d84a42eaf493d2aaa2558ca7b3221cee
MD5 3147da9916ddcb06f945cbe4cd84bf15
BLAKE2b-256 d04bf5d4314a4b142d00839d6ad4ba30ff948d8e2c65413c5fdb78d7e53e0c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 984fae97b38128e1f3648b2e7bc99bd1a509d6365c194992edd0fab07c8a0963
MD5 8d30953617a3a8b81ff074e206d75c5e
BLAKE2b-256 89c213a43ff5f4b5d7b93768ab24f3f35d60cbf5163065b647791984812b02b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dca87139c5fae559e097005bba95e369b48b666ea7d71ea0e2964aba84303df1
MD5 15b34f2833accf484314a0b1b3ff12a3
BLAKE2b-256 e9d67762f2059198ab941fcdaca55e9bca4e9030313174e73e520151b45c3892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b1674f6edffa2197b308a16bdeaf42011adc3067e475ed6b2df22901ce47ce9
MD5 1762ee74cc0f9a0c7aee5040a0b35cc0
BLAKE2b-256 cc6465e3964d961d5d68ad40cd1a96c3634749a8f7472a8dbb6c7c22a42ed1b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10df1e78a42ce330f2baf0e9f93c281ab585300711f48eb5d38b949fac979c06
MD5 eb58b23bc0035bb3fdcd2556c38f96e9
BLAKE2b-256 22758de74b0acb863de1c887a6020b9730db26fb218aaa680bc17f2653d6a574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76d603c56ffb2781fd253f9b66bdbf1e28101046c4dc57734e5d85923256eb4c
MD5 830828bbbed7c66d4cb8f352043d548c
BLAKE2b-256 87e6049a43538f212917b53b61b32ece4dee940e7325e02e8f1dcb1ab8ab4e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bccf9626fa5e1cab4f25d68332ff7e7899c8bdf4b4f1019d4fc0541dea54070
MD5 3f69c03101400a71b0588dbbfebaa733
BLAKE2b-256 aa232f61479c9ba19ff6012e1910b398d3ed8ae3fea93d1798a2a7c7300d7c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20222b5e3f9bbcdfd89af1b65ab3d3036728a982f6e7c7ec354b05004dd0be3e
MD5 4dd7146f597189fe2a727100376ba05d
BLAKE2b-256 eebd1564191e1159012b763a1568dfd42f83dbd1882ece7b43aa8ea0aede955b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55e271421663989e04769d358e5c9647493939b8ec59da99f65fc162b032c1de
MD5 a38c64ed996ba83cac4f512214726129
BLAKE2b-256 6aafc2beddbd9874fa2d66650f2bfbed2051983666d0b3f66c87c0ed3d6ebdfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dafe4947e7e8d9421a01309712304b8a427f41c3e426bc88b1b38f79156a09ba
MD5 19f4ca4acca01b31312833b53850f2c4
BLAKE2b-256 48ce71c6b918adbfca28e378abafbc3e5064d126a09fd6c1ab634664b0ee3d5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71885eae53d304aab9f89b8a8ff94d029e676e39834a171e60e91fe1e7b8f3a6
MD5 3d12ff2600e306175cc95e9fd3d810d2
BLAKE2b-256 3ade1f0e3f634e335d49479ccf53ed394e56d148c636c0c990398d70e5554d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f9caee411981166d138c76f4db3c9b0277e5ccfc46f49e5a78a0485d7d31e20
MD5 3b9724303e64c867dbca703f55a9414d
BLAKE2b-256 c32927dc2f195ffd4cea277638ce15bd2d88f40480472deb667af67dcadfa200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 886ee46619373d8b23067179f6e258960146400eb399e31c81e0dfac825f3a46
MD5 3fc72d06eff21e83c62fab89dbf0806a
BLAKE2b-256 a6a1b07a9d8e4286b2a718dd59ca60eb3fc285cfe7c7a2f3292e4af7c533c81c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77e40ebf898a22bbfe2b90fbafdec0167c7a7ae05a282b5b314329a569ab2f9f
MD5 ff3b6cf5756dc38ef00c184d3af6b2a6
BLAKE2b-256 0ae9467e50bb624464a8d731bb248ddc75349a815e30a09fd0adcaeb21ad4728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fee647d7094c06620d7adaa5a17b202810edb39ea2a5fddc533c9f785c08b24
MD5 9f34f0158228973d3df0f197ba21de7f
BLAKE2b-256 6f95351f7dc8d9303021551577bbeb2748404032e839fad20577530f37f48f01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49fc2f7c9143d94f140c913b46f9f58d6fa801e5e6463e46b9cff49888312a2b
MD5 585bc1686d226508b4084d06f18210d9
BLAKE2b-256 bb2f3e72af033753565574e9cb180030c21fd60e8cdf2912c3311a7b73aa0d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c78264555dbd3dfac13b4de33185d4f54fb8805482127085d74a66005e328ae6
MD5 c55eb0caf81033bbd787b166a7687d5b
BLAKE2b-256 85bb0811536dd45573bf01dcce169a0f5f78fe98b7d594ca54f96e7326fce642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f199478669f76a22ef64d6a6ea1c58af2c97934d441d282deed5d718ae3b13da
MD5 f70f290513d314475448fb404d6be203
BLAKE2b-256 925e38fdf904852bc6fbca5ceabed38f1c1b6a3d73c1add4b6ec2040176eb972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e647f28ec4c56c22ad0e5cc7869fdebaea57daa387b5a22bd14f003986f61af6
MD5 5d913da28b63f3e59d3830e57684272e
BLAKE2b-256 21a7fb57b324299b06506a85325135a91cc2c2bb989043ef0d841ab2d495b67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c12b6165d070b10237335ac96156e174856c3b83303057a378e5f869a0f62d9
MD5 a38ca0da9f646a771ef38b31f61185ec
BLAKE2b-256 d7fa41df73df886e7a09f3d9d214b3265d475dd144a875f3a9058a47c05eab45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 393a82ff176d2cea95c65bbf5af1618ebaf2214443a3005b178d3eba1db2a100
MD5 7cb7bc687a7951814a7718d2ad3f0247
BLAKE2b-256 b67dc78d6c292cb0072f50cfaeb300367bc7691a3a70c4848b8e1bb093167c09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e81643955e1a91ec96af1b31eaaedb98ca45fb4072fbfe28a95689031d5a8a07
MD5 551362e96fc7864d92a6fd8a2f9a312f
BLAKE2b-256 593ef42e648a50e3f11ab7199a374b0a24d4eb6dac003a75f964ee8117bc8614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 922305a212c305408e5d01017e805d32cc4c1aca9edf1586dac12049c34b2972
MD5 e1b30d5deaf196de55eed577db399d03
BLAKE2b-256 13e040d44b7e80b1f108c54268891e46c4e70da58cd97e3c9154e1ab19fcff31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 109c13214c674c6953115d587a20dabbb8968dd24154f92c23fc232ddc8c0dc4
MD5 33f17ed61cec552f49ec29cf6dec4915
BLAKE2b-256 278c142dd67a7edc915e721162575c504c28fa034c112d5689b8bcf80d82430a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b275e242246fab58e7b098d1acb82d8e63242dfacb9d569da9f3262f3dbf07d
MD5 c4d9e829ffbd80c1c88d9bc98b1a9f1b
BLAKE2b-256 74562674b972cffd42a39a2cbe344bdf654eb91eef19d2177270a27f8a7a3e6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 81b3f1b0cdb54ebbba0200b48c8161c41837f953d0ca0b1e7d725d594ddb2ef7
MD5 e0975343fa8e9e68f1fc4d9d4bb81db3
BLAKE2b-256 67e35cdb1be8dae4cc3e6b328cdef484efa7ae772969db5213fc07b172ec3cd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b4900e7add7b22be0638fe67c65d8b133b53d120d3bf710e7454f12a1028daf
MD5 7e5cf86ceaa2f9af7bfc7f2c936e4a78
BLAKE2b-256 b5e1419c52917692c7f6e0918b6c9917ff6c74225f78de134e3349861ab63579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4786a9267a006a74e07935dbba13db414d479beac06bd136aa070fbb0efed812
MD5 8144ada8eb58b7b0cc26cba30d903a42
BLAKE2b-256 5625198f21d6438892735131ff734d1a1ff9374a34b6cade97ec95a44298a671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fb7fd6cdc0851d12700448d6fb23421b7eaa9b6a2d6b1732bbd4a32b05ff5fb
MD5 6aa7e75229c65538612b1699719c4e3c
BLAKE2b-256 7c7b2f2781796dd734b26bb04acf8084b3b757acd2b20f3663f6d1f3ff1f5396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bf72cc5f5eca548749846f25ec53a3ac76c84430cbb3817373571c23b1b7d08
MD5 3e5425dbaeff966e4472a9aaab91a78c
BLAKE2b-256 3dd75c68c5a325f0fcb5ddd74e01b619bb6c1fb236801ebb783167d784ef2ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f65e4b1c79d592c81fc2f72f7f36a3732598e1afe3f0f11a71a2b5dace89a268
MD5 e68d77910f94fc698f7b514e172aec4a
BLAKE2b-256 1d1beb486285f51909feebe253d385159894bd101dcd3b7c4b0b6adaa6f61be2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9a75151c68fee4f709e3876722934dfb823b06ecac990c0810fc1778a15020e
MD5 4455b7fb7445c2909520dea7f2fd56a3
BLAKE2b-256 6de2847dd2c6f0b8e2b4611287a6e664ec603baf772b8f6a031bbc0d2ff49227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c82e266bc517a9661e349fa661ef9b04ec7b79682b1d9fd8dc7b12d8ac19a25f
MD5 a275f35ac01613d8330c6d6b4666b754
BLAKE2b-256 9cc39c6de27d84d44ef982e0ceb23eb47bf76232dda6c589f33b283f9ffc154f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb86151f8fff649bacd265b0de314788b23b9d4fad780c3f5dd9e19b7583ba5e
MD5 9ef38f11a136762d04a2e30bff0254b3
BLAKE2b-256 ea5f98a1cf6bab816791196853f6f936d3b58cea36a325cb895066c08915f040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a1f27a47a046a83805553d5275843f100a23acdbece9a25e432d1d7edd49b8d
MD5 3058fee21ccea411b3d9e4c4f4036469
BLAKE2b-256 20981d67bb2ee8b5ce56b6696f7c78c8e664c2fa8d201d9198e131f07c5b0f28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d44395df5457783cc9da58d73ef8541604fa72eec80aa4554c39309ec21333f5
MD5 5a0c92f157218f2acf78deb61bbcb72c
BLAKE2b-256 1c632185b51fd74c654a24215e679b2ad8fb62142404bfe310f3d853e9ebc889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc2c8790909b4d3338980f01ea41c7e8a90c34ee811a72abbc5b3aae5f9c05fe
MD5 96316ea5fcca4ad45e8731f220f94289
BLAKE2b-256 5bafe7c56fbd7f8d3ae62a68a5b7df5cc0eb580f59e12497233c529024468a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6ab17a4a626f3d6a43c58a19caa57adbcf5f391b6d48f2f3faba1004eaea783
MD5 bd8263cdc961ad839151895c5d8c4b61
BLAKE2b-256 91a65ae69e21348d291691d32180c9c056ba11a56ae9827ef329561ee1f61a39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7272a19d14d19de72b1ea1acecd8e8fb3ce67d723a681c2dbf5598f0974ebd92
MD5 e2c82126e477dcf3f2e321ffad1e2366
BLAKE2b-256 8276e1ce7a9585577b4b4d044e0a678de98088f240ba8237ed609df9de0d8c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10d31892c34253e809ef8a6a2cab5a1dd4039a836d47ba3fb4ee499afb391cbd
MD5 22f99cd13bcc89221662a06b0b78c6ec
BLAKE2b-256 cab7f5882f6988f337d8766643f11c397cf1b2906fcf0b60d9bdefd191c6f4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b8329ebb98856df688326d3749d67da9402705dbac2505c9e10d05335285981
MD5 a55a79b07be3be5a01171c513d4b8819
BLAKE2b-256 8a0464870e31a87e3dc18951aab93e5fabc521a0cf3442fdacdaecad9e8329ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce425440308da3b7c3eec03b0d99bbf3e430bb63a1e93c75fa44e0ee58f7b817
MD5 51660d18c5b18cf0ea70008eda64c636
BLAKE2b-256 03670b1cf1c9d4a7b314edd71649a0ad813c29fb53e820aeab4d8d0801e8f0f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae554d36e2820d3dd08556060c631de00bcaba1576a2f06e0bdffb32d823a266
MD5 36b631c882075a5a2b66265c9b7eab81
BLAKE2b-256 3a870cef9981774378b9fc9a6273aa7520acf03e1971d73b306cdb04667a11c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b858f967193d83c081dbc2a609b787e29ec3f65d47b4e16ca3f9a284b015b22b
MD5 40ebe46aea606ce6aa8899e066f5c30d
BLAKE2b-256 39bbff0ff44fe5a78abf7c17ea25ee61faa3aa7e24e7374dc152c60262331efd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b9a3710ed7481db48ffbf7e80c2d544cf3db93dabbfcac59ffeb34bbf640e73
MD5 7246557cd54833bc61f092da79cd8baa
BLAKE2b-256 10f236af5e06ea245da611dbd1208bdfd7fe9fd77363f296b1b4b99c29bc1f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04285e5ec01aea7cad6e41aae3941e438c3b338bdf337023aca23c663e6a9500
MD5 5e7e5295fbf4cca5ea0d30522949c496
BLAKE2b-256 92472f9f99e887f4af418af7c48fafc00d00ede026112458be890ae1d66582e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f4fefd6cdf37872d70f0c61845fc454c382544eede084a4cb06e746658927cb
MD5 ae4a666c8d8e80ecbabdcbf434287d87
BLAKE2b-256 1669b2ee970e6bc119cb6c09585c8aa490fa2f820145f4858be60eb252c9f2ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0306432ec4b11dcb74201a7e10e1759dce0684d3021b1eb02d0cd879f659e2df
MD5 826304d4ae4bfd0068fef4605a880f48
BLAKE2b-256 44f05c938b660d0a1bc294aa388a008cc17d1de4691bdfa7bc3ee23febd57bdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e7352dfcfd28a4a80cf67254e185f1a541990e6574ddd8aa86d506c95280cb3
MD5 692f58cbabf1d68e9abec068305134c9
BLAKE2b-256 547230952a208b35635e92a5b3f28ed31079baac3bf51c42b0960bdbe149d9d9

See more details on using hashes here.

Provenance

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