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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cohere_melody-0.7.3-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.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cohere_melody-0.7.3-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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: cohere_melody-0.7.3.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.3.tar.gz
Algorithm Hash digest
SHA256 b2b7c9bd438a99dae5e571d4eeacf3c81fae5f39f5e0f8ba2a316dafc33f8832
MD5 8d1266e58cb58e73626a34c5fe012688
BLAKE2b-256 6bc12bdb80a6bd1cd772ce5406f4723e287705f7caa5ce89e6436eb827df8bfd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4aa654d70150c7acbeef0389aead95a1feb5b4e5ec92560edd751095f2e8afe4
MD5 7d4502e18a340a4eb3d2f452f94b98c2
BLAKE2b-256 19cd92a439bdaff425a729d144daf1ac57314da9dc4bf373969f3b1b0d4597bf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2377c2df26e9dbb69d6dabb33f7af0399db1a933c46dd332077c2df4a8f10cdf
MD5 80895bf0e829e794ccdf319d09a71da9
BLAKE2b-256 c91b6e9b04475afd7c3f69ce1810537807d139c14bb90c635abbcb5969bc469c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0942f692a99854bae9d7059add99f010354aa8aff68599c9bc6bce7960c2d134
MD5 50deb9ee08da4d6c84cbb12eda4ddc8d
BLAKE2b-256 f4e465b8bc3ecaf7129360b9511c3b0c7437f66a149bd6743e1693f3720f0c18

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a2bb4a893f6fdeeb6002228bdac41d1d356d2fc64bdae7f7179575f6813773b
MD5 9c9bb4354098c4a05eb8a9cbf3e17619
BLAKE2b-256 452a6dcb8794d6f9debbc10e12cdbbfc713e6e4357fef320cfcaf428b80b3409

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9340c5c8db3a9639571c2174ff2cf601f06ad5e679dc3be9926945282b2e4894
MD5 29332756a78a27f92927149bd50b9835
BLAKE2b-256 e5cd9f039890fe27f9981cba17abb9120520bc6c390546cc97b9cd42df3e8e25

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8f78ba8c30ad36b5a70e87a164372dc072c9b185b87c5ed6b660d16e697b016
MD5 fe34bc38fbb2339a7fdf24bdaec41702
BLAKE2b-256 10b2f8ad2aa5e574704befc602d5c01a564aac9bae61718d8d6bab8ef40bb467

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d844a7bc92c431514cd65e5a0b0276fdcae0068b77a524f24b25275010e70cb
MD5 2b0c7a9378bfd7eab7c76f330688cf2f
BLAKE2b-256 4d14c97f98e3e1ba2e513256adea3b7c9c8d0da902fa5ba6c45d2f426bc9c8a0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49d2bd1619f8f079e54bd5b0073f166dc2c0eb48210c6b455ca4dca85d0ca680
MD5 58b22198d40655b6c71e91a3f73b38d0
BLAKE2b-256 cf2741864d9da2fe91d69d6c1cfbe8873c93e8eaaa3d9fc57d1a6c1345a3b9c2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a1709ff263d0a8ef24d999d0274e31b7bb1598b7f1175ac3a8bb99b78621fec
MD5 6333b99ea709321aee42e22f8414ba1b
BLAKE2b-256 03df19ae0958ca8c9157a4f3b1f08f9a601dbb6c3e7bedd5caf62518cff514e1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dacb54026e66f9192b95a430f5f3438b6c2aa333f612df01c728ec676f112053
MD5 be3c930f5ddd40a5806ce11fa63a1a77
BLAKE2b-256 873f9937e3fc945047a818b9dcc7eb1308654aed1c5762dd9fef5faeb27e0532

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7a686091c8b9ca4f3df3c118b36f5a70b082b93fb83965bbd072c1a3a0348e7
MD5 7c0b9c69f144e530bbcdd7c96d5cf9c3
BLAKE2b-256 6c841a8842940dabfebb84ecbdbb8ebd2b4664856360d8da9ebaba11619c31f4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94b8e9a1fbde619da1182c39a5b7eb53e439e50c8e2c80b6ea3eb8753ff00396
MD5 1b42b709be9a9df019f52b0d67313b49
BLAKE2b-256 78c7deb0404f8f404f67409d37c4cc33f4215d4f0eab32063d81477ce6608ada

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbd93d1bc6e532db427a2e1ee3efb56a736eb55da15e2923e114d57df9e3c935
MD5 c348179c5871d77fd18d2bc24adf1c21
BLAKE2b-256 925ca819c613191ed0e98365d91fd423e123717ecc57374f5befc576f240501b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec17db75b0670fad87fd8171d528f31ba607a86bdafc46bbe92b138876b0b4ca
MD5 5b8f9c8217c6869e64071444a88b7157
BLAKE2b-256 36f49fdc7a357a393f7002b7b150b51ac4a75622055d270a9aa6457b4e9ed7ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9691c895feaad570a97d4bcda7cc63a8988336cf2fdf038aa39955d3dabdd8c3
MD5 e3ca0ca984f96782ee6486de0c1689f7
BLAKE2b-256 a5c1dfcaa3c668feec4d137cd522f0c1f9a9dd66102fa74d611fe47c043b34e4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adeb0d229964fab764700120735e9b2675cd550a862cbf18392bc6ac5812a927
MD5 8872aed5f7b78e3baaeaf060d123a157
BLAKE2b-256 fd5094c1bed95e74d0dba6af532e678c37b0990eac0712295f42079d51e30da7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea21f4e0a969bab592e3015adb20267eb625d31868a912e68a5bf97ca562ad07
MD5 8b1a97f16a93fdb84f49e74341b1d82e
BLAKE2b-256 13f6f130bad9c2c5760124ecaca781515539fa0e82142c716d55b55ef90df7b6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9163cf41b83c7b8f13ecdd4729fec21dd713944080b80e5ea7489aab73b87d10
MD5 a19fbad6f61832c14c41451aa796ccf1
BLAKE2b-256 45296be2e6a4cd4717936b59026403340174c750229ec458fe905b9d550dba00

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8986cedc38f709aee3f88c780517815e8cc69e8a8254a186a74de41ee8ec9725
MD5 6a7b2b192378b1321038295648348b12
BLAKE2b-256 18fae5041d1f2d9dd552d5ac09bda189ac733e4d92463c9c57072ac2fe344741

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9928166b0c1d959407c5af9f4d6841951b49180592882fd89c7540e286d112f8
MD5 0e69f19626da6bbd08ee912aa295587e
BLAKE2b-256 1c07f06a72855b1dd3dec73a94ea5dc6a79c86125cd5d7a31359309c950a11fd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f92e7369ff4b0d5877703f218cfc9469f65c3fcb30f7c3af28dddfb290b56d7
MD5 2bebfdc1636af0b37799402bc2e0ceb4
BLAKE2b-256 208f687eca81dabb23f9bbd5bb8297209f1f5b0254d302d64bb9fc14de40f097

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72fb7064e1ec7c4e8b2131533ccee4d281757de2157ce7cdc5d1f466e6538eaa
MD5 0611d03357e8a2a4802e4a1d067721fa
BLAKE2b-256 d9225d18a067eb661dcbd05a4d846bab0e64264a0db6c75d97820804bfe0755d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c035cd0c4d2e33c07b393deec972ebd8aabe63680c00d704449dd735612a8a4
MD5 8611913fc2db69924cc8bfa2509261b3
BLAKE2b-256 6572457a51f6440130bda02d75b4b60e892789a867fd0bb1a764ed4ca839347d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1ef1b26ba52a165453d8aafa796c31bae12f43f63d78a2c600e74761b77b54a
MD5 643ee2f648b867421a83750e8b988059
BLAKE2b-256 9207e2554e26e8c63f08f999e66c672715b61ab0a0ffafbdf37a0029c0767526

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fece8980a77657192bb11bb7c74f69a8b1eaae32f680a5a861da7a65f39e021
MD5 4ad0a5c83b658e0f5e6d66f596dcd14b
BLAKE2b-256 d819c2c1dbb2501c5f2bc5d57392ec659be0852232b9b7b4813b7543af9cdb73

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10b6680a8dfc5e5e3401533bf98fc1cff206e48f2ec91456d81cbea04f3d4909
MD5 d36385c771fe50d73582a4f891af6c33
BLAKE2b-256 3636792b7e834329c40634b32a3b4e1396deca4099ab6db6a389cc7be64658e7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03e1d34c9b9b5f3c39f68a1deded99e3f5c2b7af23aeacfc86e891c30061bfe0
MD5 bb3c4f0ca67c9ef207247ac1cc441214
BLAKE2b-256 5d350138e6aeeba7eee563eb024b6a42dc0b44205d2260440de59f744bd47c3a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d7bc2c1c078f0011f15af11bb51048cca604bc5b964d99837b058f2107b450a
MD5 3a7d4cbd3429afdbd6e0c1cd2d492971
BLAKE2b-256 2dd26828405c3801a5f44f96786ea7137b6659fa848f55a9006826c2450fa37a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f026ec74c4444e754e3fc0cd940bb52f02f49ed078475151a19624a9c5ffe8a
MD5 427df22470f92c2623acd9e886a80b77
BLAKE2b-256 9bfa1333eeb3d823cb93dc85a0bbb8ed19728bc36942f7d6455df48a045e551d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5ad0348daa8ae1a9ba3fcc61f65524b367bc1b136824612f251f79e604b719e
MD5 520692d1769bd55110481cf4c15c0d70
BLAKE2b-256 2aedab613167e8548edb1fe5cdfdd345e62321cf3efaf08e0334c8b2a30dbc3b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c105de85fce23daa61a7fd5f802d4f5e746e63ce60de934fa556f75f56a039ca
MD5 5f166d71a1dc294a822c28ca62040ac2
BLAKE2b-256 05d905c5393410de11a5c57edaee7a5d4bf92f2562dfa866575759b79d5cabdb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae4ea1cadc24cbaab7785c663022980b77c026ad65c8b12dd6400350a30b6e79
MD5 7c86519be7025eae04be07dccf5cea99
BLAKE2b-256 f98cc510254f03106e89c4e963a43bf531f8fbda292dc0c997be599d0ad78064

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.7.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52540a641aeb8f954cc9bd4b6ba0c199c9871af6bb7413f90b8a0e603d5888ab
MD5 f08e0efd1d420803ef3ffdb43d42c81b
BLAKE2b-256 12ddd1081c14ebc60e95aece40e072a40982244d43c90b2078b2ae05f4a4d457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99782979e2e1127b0744c7f36723f8af444245b5ec268bdaec1c0f81269f0685
MD5 43e69bd1dfc996e369a46d25abb2e734
BLAKE2b-256 50c73724330aa019dd64e3b08513eaca6a845f9fc804faf460ef9de17cd786d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1f2b6bf67721c57dea373784b889d0ba830c2f3b2b32e10db188635517b1152
MD5 2c22e07a9c63106ba5b2d7c620080201
BLAKE2b-256 2538939bfa784ae043aa801fd78b58e41ca578f5fbe86c1be1f1cdb84956853a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f339cbd811e2eb0824c13afc20be5a5652d39420e8edde58af78fb743f2440af
MD5 b7e9c155f9077b458a51b3ec2819ff10
BLAKE2b-256 406d0b7f8e53100b1ff6c84815872a0efbd3f720f6a91b7f6413e5e7b674a2bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27587ecd69f69826d08bff8554e39e5726e579ea8aa79832571be02b9fdc9aeb
MD5 332862d921e1c827a01b6032f5300c75
BLAKE2b-256 cf09723be90b787bbd8cdb4f6f570d09cf30ee727654ea4b58908dd7df3d954c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cd12bb7bbdd108f475e1f027f822bc48321088160afa0a6164023fd65ac4c8b
MD5 489e4568c3347e49a3bf4ee1d57a7d3d
BLAKE2b-256 8dddef1746dfac9b68ea4ab321fd1b9ad0314aa77f9590fe46430f2ee8a1db5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21f6fbd4db167f25f0c46f280b82fe42503b114c7599018f5514f6c88945767f
MD5 29dea8f73024649bf1e8112e1a95214c
BLAKE2b-256 463c24e1f6ba5dd9029a2deb62b469b189d17bd8a9c54feea5e79cf871b5c264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cc048864e74952598eece51c5fe15a67a1733b10e0e9b3390f6d87966280c7e
MD5 b4ac6f3b0d82c63db34063ad4471dd69
BLAKE2b-256 14beda85dabaf979bd3c789c514bd6c6d2ff7feae07f8dd8b0c43a52e0ade31d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4872d6184a18f063c0758ac5e5dc14841afe00eb68205beee53d86f8b535683b
MD5 f5d0eea13e4fade619ce8423dd62cea7
BLAKE2b-256 e6a82888db7e80bee090ab40a9e8992265150af7fd46118b6c7584190518bbbe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da2aa2c0ecdb8f81043a72b1a5ba49ef7fc4a3d32df8b7085aa54f56c5ed36eb
MD5 894cf2e0bec388cbd2d5c5583df3db87
BLAKE2b-256 681bccf202622bcae95c3d6e353f4d6da0f96be603015c9bdc717aa5d4f34031

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 809b6b8bcf30244d31f18c3842fc17f4d19335461286f95516450035d09045a6
MD5 e814bbf873755b6ca635d6ae7ae57806
BLAKE2b-256 b865a5f3ff8979b0cc172b0093e312c7744954089185bf227a74e90b52ad2b96

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50932080494e5881e049c1128228fcd1a05ec70860f3d0093d9e0a968e040742
MD5 11df7b42d6c815ace8e52efd2fe8a4f1
BLAKE2b-256 d996779847b24b86c2ea2fcbd669921d2e4076d8cf0433152cd4bc3501dd79a1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 414695d83a0e576e0ad98cc48c88c78103e2adb41613a0a8560f5c97f77a6d5e
MD5 1637d33f90e65eafe3a43f1301db358d
BLAKE2b-256 b62cf4b9cb9cafbf79f1149c62718b4a060b8c03f55f55e576605615e5b9e5b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a94ad50d2fc7c84878771f38af2cdd82a2bb6731bcfa19fe8ea03b8d5f9b6eb
MD5 9cda3336cbb1241901bd89f795606903
BLAKE2b-256 29c32d4d2f86d5a1ca1531f6fea95b9947dbd4a7a47f230fce96591507380652

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 741c93eeef6651df13a431a09b60a51628d721e29c0068122ffacf92b9dc2c29
MD5 3248ba842990e321d8cb48798897d8f1
BLAKE2b-256 a0eee64679646acf2c874b439af88cf314a4c5232e2ce39aef8982b586bee328

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4be5ea79e9848da94e3fac132a4b361e17cf7c90ec1a9a5ddc8d36dbe144a35
MD5 fa14dcab2664d23138d0f37afcc45c19
BLAKE2b-256 446de9bd2a66dc6e73fa1ede99e929a46876b6288fe4364750dd91bbf9e9d71b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d71006f1803b40c060778850cee0dcd9a02b4f1a9ce88254411a4f47ebdbcb1b
MD5 2156518074d35319d775de9e7ca800fe
BLAKE2b-256 84f4152c039a268c036ecb8d313a79b314881ae60df89a6b42fd5d65e9f09e5c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 185957794bc46114deeed6ee6814db40c9d9f217b517269a345d6b3e616a00e3
MD5 a37ec493eb8836c92362ff1f0080e000
BLAKE2b-256 106421f3a5dc1bb51e48fdfebf66ced9f9c86da605d508e8f7b7e6e438403b03

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a01aceb6ed9d6047642c310984b749108a16d407c334b845bc387e29379aa0ed
MD5 682bf3d4f2ede43acd3a4e358f845ba9
BLAKE2b-256 0da6ad818127314192922ab8f74597b8e44237c42118b8fbefa3fa40a4258faa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21e38abe3f87ff19e9d69a7b9d48380ad09bcc0bd4790f0ec1db7a472f4598e9
MD5 c78e626424ea4ad067687390f8925408
BLAKE2b-256 8810322c7a6b4923ac61639abfde19bc8066e6f71808a27bec439c0e77a949ae

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8dfd6573f197e0592a0664e86d84fa4a75ea4d5d2a354dda308353fa40fcda86
MD5 fb311150acaffd7705897e9c429f6057
BLAKE2b-256 7001e04a59dc559f49672e90b0029938f37b72702a1961dac251e8e8418aebfe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 80d0fb2e4d4d73757b82e0d30264a6e2c66ecdcf8ba3d8cd86fd41f0efa2e905
MD5 1ea8496caea5c1ae3152627bee2c1835
BLAKE2b-256 7f9bdfc551b1f96eabf909b313b0089209f657e6e81c9aaf54723d02cf23a0b8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ab617968d3de0ca5e817f9a8777f9f0cd6ef28407c5ceac94d9c2871f7406a4
MD5 4fa89648541690e3bf23ce9828cfe766
BLAKE2b-256 89ca47e59367fdaa3099c663f22073c7de17d57864ac620a09873d27fc7320ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f13d7a414adf1876b972d916f37c060757d1a281d1a985e02bc9eac7409ff93e
MD5 89dac08f63df4856e7bb609351bb7020
BLAKE2b-256 96657ed0d348e38884a24016244cd09b8707bc794a8aac7ac723ee69eaad85d6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 386030d59f63d51beab7a78039393e99e8f639d488879ec5b15f51b6b22c77af
MD5 e89d614cab00b9840862a27231bc9659
BLAKE2b-256 7e5abe4e787038a551ac3978dd424d656338a73cc1050dff80f075242cacceb5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d8504f1144bc5ef3a4a32120a85f8b63aa135a8445317eea5c6b8c77fd99ebf
MD5 66bef267b9ab9fe7f2c3401c1d77bacb
BLAKE2b-256 ed35cc12901751a0f185e2a3cd567e50e644d2218b189ea5216982ab3b5722ef

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f861137d1111d5f8959be84ef057a54f6471cabf3d714ed5de6707b0e0267e97
MD5 5125a704708dae2efed312ec6c3cdc61
BLAKE2b-256 63031a336bdd78ca579063fb88e5d8537c4df031c207d6e8dfcb49ccaa3de0db

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc332575f7863d7f24b5264d20f44083b5232948f0b910b765edea010169e4b2
MD5 68dfdcbeb552e2b2dee17c02d14949e9
BLAKE2b-256 efc0cd9b90d60d28d1030a1a5370b89653aad06b37f1c0e054219b74de67732e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64eb6d2ca5ed2ea80325999570c9988dae5032c0c971f99e93de090f4770a4fa
MD5 f6cf842d90161eef16e1a38ee08193b9
BLAKE2b-256 a22e0792f441a5dec33891543c7c24369f34b261d5ba53d5b0b59436acb53cdf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecc7fd19b25fbb64fe986d32d17430c8a09265e583dfe1348df38fbcf5886f79
MD5 c5d60e58fdcb5e4fb8d01522bb8365f1
BLAKE2b-256 d76764b442eb7b14bb9a5f86311e4d008f28b5325dfe19806f1695435b4cd458

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0f504fe0837bdcb498fdbfc14c29d1cdd85374b2e539e5029d67b36a1aa6faa
MD5 0e9c6c2e87d0f42949baddfbf57aab7b
BLAKE2b-256 7ddecc68b35119c0f7a6cfb8684eb0e83b2ef54248eeca76d7c1f563749bf1c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b7a0e71817ecdada7ca2ab85ccdc781319aebb3a36a64cfa03951286c809b05
MD5 200baa51e26d81692604cee84bf5fdc1
BLAKE2b-256 5baacc87c61f855af2f7c2b3e82366f21aab6e568942769365af955f4576b143

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 201aa6f03494836c14d8bc5b51ce136a8ab18791c9fd084d92b36d71f9bfc88a
MD5 b71ea4a214f8dcf213adabe1bb0ae9bf
BLAKE2b-256 e9ff54ebeb2698dfc3869c4cf90ae3113dcf3de9d1df94d47d60d21396dfbe0e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b931b7ee873e937f4f936087fe3390402649f65177820282c32d07990e683f7b
MD5 6ead4ed7a715488e22487fdeb57009d0
BLAKE2b-256 a2592f6c814f87f9c027b44769046365d5e0fa4a5e77d0894c56455105f9242a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bcd9fe98c031a8a7fe44e0e55ae6d87f01d757f1945370aa8cbd0c595587bbb8
MD5 0bcd21b11042376e1291b14716c29ede
BLAKE2b-256 72900fd6050e01a2c2874c275882b8503c5b50ca0caecefb2ebb14fd29623695

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e73df9f8b39d669aa0428f9694c973a1ec3d0e835637dbc10a04a50b011bf85
MD5 9f73cf17e47f3ec66263155bf3d4372e
BLAKE2b-256 c52a2b5bd4258740fa7736a522899fad948f8bf758b98730fff2346a3bb7912d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc2299de88c4e0f9069e8fb4524958e95ae9bfc03db630168d1e8f1ce04455ce
MD5 5a9328d95904c96573e37c4925b8f9a5
BLAKE2b-256 d7fdc86403d618ae0ae4a5184527f2713f1b6ee3c0cc9eafd57f2608bda7b448

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54b10c37d63e6ce122d6e4881c29de21b9713e1cfe6b3005b09faabf02134a80
MD5 4fa1ba587909352c016d2ec2e4e24129
BLAKE2b-256 cb486e6da824fadfe55ba87370ff2a8078da10584975604d39127d3a261b3e6a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9de7c49375bbba8ada9998036019a7b8fa5c9f770b27c3d1a54b06671fa60bc
MD5 4bfe9d587a82cdedd2491feed51b9249
BLAKE2b-256 b6d29a3626736f25675e33d5238dddd8ea854b51ca87e315b444c95663a2fb2c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71169256a4ef48edc3866490068bdbf5c8501e9250d27ebbb6227729bd976990
MD5 97f7ddcaf0be0f4e97c02760dee1a4c7
BLAKE2b-256 12a897dbb99af5c386d7f0c769ce97f6b81ed98ffd3f2fa674e2e6742cfe75e4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3ec0664a4d54619a7137c6830e1494a12ea6ff7dfbb2d14c5c1922be14ff0c8
MD5 daa6985d0ccab83917f9d26317b0c077
BLAKE2b-256 4a2095d4b41009b4c20ab63c00a22713139e1889a778425b11d6f5b1707e876d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 050fc8c40ca5cad00c8a7dc0b5035c6394698bf22c125ffa60aa83dffe760e08
MD5 7043792f2294e0f5d03f852d3d687532
BLAKE2b-256 98f8598e87c6b31bd9313684e707bc7e9eb321efcaddfc52f8583b61f2fec341

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8605708fc52f1ce27636e47da3d86ad3602e8a0dc76e5feb00b107852e60e2e5
MD5 68c9055361c038abbc4c67b8b90a84b3
BLAKE2b-256 988c1e65d4b3f834643486f6e1010b29d26615e8d01edf243809e92b689db6b6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc67f0b71df514c3839e0620e72ca695d857ca8ffb17ff75b8d9b5cd1ca73149
MD5 e71b349c6ae41f536a24a60aac888f82
BLAKE2b-256 afb367e119725d1ce5b5f8634d36271b10fe3ea076af707b82428a0509843b5d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d3fd3a3fe0cf36fd85dab4a1bf3d5588eb30ad9183b148868d76f720711b050
MD5 06f6c41c007afc9259c5d460ee18a228
BLAKE2b-256 fd00b0a88f71ddf0a7fe0c8f5ad08e7f7762ab3f640bbb4548e3bee65bd96ee0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48f82f3fc5676afc17cfbf99360dd28407cb4a6d689bd770d056c7d2534bb6e4
MD5 9cac40189dfde6c6f658fe324b480af1
BLAKE2b-256 2b84f30c61bc3e5e674787c087a29b6574294d399183a5c861a1da2417f4c0b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 619158486714f481433a00fc1b5cc7454367a3828dce0fa2711ac4b159dfa950
MD5 ec362ee524acd7809398cc77eff6e116
BLAKE2b-256 108575794a2c809ba8804158b8bc8ff832551540323361fa39fa4ccc625b90f9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d5525434f189000cbe0c7e477b3ee1bb4242f5497327968e2cb522895401644
MD5 4a42960701e6d0845aa6bf78388fc003
BLAKE2b-256 7df69f810f8fe43b93ffbf69265cc0e4e7e2b4939211b152b97a95c119593a69

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98c52572ca4c130e0a53e3aac6d9a5362e1b85e1a8df5123e0e85dc2fa7d207b
MD5 3ea1abcd2bc26ebf7545901c118be3b3
BLAKE2b-256 96c588e621d1d795803647c7b8b4e7f084ef8516a527738b6137dd039dfb0f95

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d592fe4841b17ae40bf148e74e7a21729f4fc719116f18b495ef3771af07cab
MD5 daf8a05127ea0fbdb120820547cc91c5
BLAKE2b-256 f9a6ba4074d9921a39b89bb54f63fff1c63b1662268a642982791bbdb19a2d19

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11c87f78cfb540b1e50245ab5c5eaaf62544f256f9b32411222e84c4b10ae607
MD5 762515379888b2a6d277f0f671725cfa
BLAKE2b-256 284f152fd1f01bf39f9ff035a0f388e9f250c1276a2cd433ad8ba0ef0136d0cc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e916bb047f7a9a466ad063fb74f96f2a2a72de3103d7e70f9117120ac508b4e6
MD5 2671bed7da3ccaecea30fd39fef90670
BLAKE2b-256 99c6cfa89de2bbe61d983d2320b7af3b2619e9cc87e7afee8a873414ccc1ba29

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87e41c4c1cb144f16a346c92524805a8e2f3d834d183bb1e00b583866d95ecfb
MD5 7efe647f84003e80eca36c29946c01e3
BLAKE2b-256 ed7bbc4a60e3523f83f23462a63aaf36dec67a9c3a1a068c4204a34d4f572320

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5f41777b34ce09a99bee6a40a4e35417d99f90dd6f6c79c84a131024e77a305
MD5 2b0d152fddb3fe7488c41ae690c70463
BLAKE2b-256 7c3800c4573eabea2939021c1ea19ddc4a22cb12a2ca9e668415373b47867d06

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0b2114484cc0552b3802089ba7478468d16efb30dd58df268ce21a90f73bac5
MD5 a73f2afa4b1b3b297a25d10435661272
BLAKE2b-256 8e870f67968ccbc7404763c56c20f64d19eef554b9acf3cb8e5444d5595dbe1f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e906abba77c447758e8ef704d93aa09b5e516aee15714886c8a8a377a7cfb12c
MD5 10bb11a978c5ecef4f2dce1bd1ed67fd
BLAKE2b-256 012098219ac51066abd5863eddf88184dceffab907324be6e73ce6fca1dbf165

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 714941f5c43d289218d8a78b07cdfac14d417c2e9a97229d9f7927470e73a40d
MD5 7510832b547fa18e608a9008e52fd6d5
BLAKE2b-256 64a72605a5cdaed73253580d13a79edfa86bc88e8fbcb334e02b342026d3740c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.7.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40114c7e9fbbb533eea8639bc3bb755478542d9d28284143f71e633a21af0a1a
MD5 46013d2829ac3921ffd3270710f99bc2
BLAKE2b-256 5fa9a32b1e0832e0f3ef0402d82d8da4378669a3d59e0f0f928c5fbc5e80fe6e

See more details on using hashes here.

Provenance

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

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

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

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