Skip to main content

Templating rendering and generation parsing for Cohere models

Project description

melody

Templating rendering and generation parsing for Cohere models.

Dev Setup

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

Examples

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

cargo run --example basic

Usage

Parsing

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

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

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

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

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

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

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

Templating

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

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

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

Releasing

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

Building Python Bindings

Prerequisites (from pyo3)

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

Debugging

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

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

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

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

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.12.0-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.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cohere_melody-0.12.0-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.12.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.12.0-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.12.0-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.12.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.12.0-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.12.0-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.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.12.0-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.12.0-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.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.12.0-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.12.0-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.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

cohere_melody-0.12.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.12.0-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.12.0-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.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

cohere_melody-0.12.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.12.0-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.12.0-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.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cohere_melody-0.12.0-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.12.0-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.12.0-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.12.0.tar.gz.

File metadata

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

File hashes

Hashes for cohere_melody-0.12.0.tar.gz
Algorithm Hash digest
SHA256 40320e77bc555a99e40835d2c6def9d5d62b03d5425e5ffc713ba67804ea11d5
MD5 8df5101580fa2c1d12f6c48d6a78c4a9
BLAKE2b-256 bc9d001ff39c356e2b1086fe75afcfd44b1ce9fae19a82781505a922f8e04407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4aaad3f2a6844aa65c54ba8d535f283adf4c81cccbfeb2aeae340ee0dab82aee
MD5 f32bced0a741570e8c72784bf9df7014
BLAKE2b-256 1c586b16af62feb9d278d978ffdc0c0a1d5683e65137bddd8da606f049dcbb0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ceb3ad96ea32523231f5f37a829e6ad5254a18112fef32124f36f9d723f5198e
MD5 48982ddb48f3b338b4967d4f374a1782
BLAKE2b-256 89e568f224dc285c794f600b87feeb5b09bbe0c4907330a4947fdc3349986c67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d5beb7e8ac04878f55f578cfe7a3a4e5b3200460d307525fdfdc1d1a418dcc0
MD5 e1ef56c88eac5f2dcb56edf5ae08a82c
BLAKE2b-256 95da4008b77d4de3eb41b8b6da14160b306fe83abc227449fb27df0627f8bad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ee773b10cfaad929952ca14cfa6cbf605f6497415c44a8704a18cfe281c3238
MD5 bd02cbef8ca36aa61cb2c83848ba8849
BLAKE2b-256 e677d7649b29b0bda254caa5688880081596c16d7e0a7ad0251e52b1de84426a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcd5cbb6cb7019ff3c8e261ee350d14c2cff43c090750922b76345e376e495dc
MD5 dbdf0263c8f10d31b5d735718531b63d
BLAKE2b-256 d519575f5918abf963ee2ed32b705714b792250d666c3238693ea49c0aac5219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53ce32e094e3884a3a935a07bd15d9a197b24a6210756ec277388b3bfbfac66e
MD5 6c4c1f1f193d235acc4b2838f6d62ad8
BLAKE2b-256 23236e9f7fc68735bcc4e6d3ca461dbd65a127a35dff67fb29963c0bc0aa2fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a15724f4fd9268f00dd0f043c6571ed618630d1c60310c1408f7496cac5e6654
MD5 175e40d170f31a455f4fb31961dca5f4
BLAKE2b-256 9b1b32993179db49c0a88ad7da84a3a9e55bbab067112f7aa852a253c9b94ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f856526b01e8919038db51b2ebab6d8195277c4cdf8074647d83373e2aaad84d
MD5 bce9bd72810df21ac7ca8dd7b6b540e4
BLAKE2b-256 da06e95bb6cd1bb881b66b5c393cefe4327bf24cbfc2913ad5756a92f150adbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bad51e5a831f46cbc174af9e1e7460d04a92683aa267f9d848884908685b548
MD5 576e5c00a26c5a2e181298553eb86fed
BLAKE2b-256 8621835482cf4fd2dbbcae910ffde3ed1822d980971a198928eaf6c058d8b376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 efd18385a950b5bcdcea52c1028bdc9b066f1560d9b0316dee3826a111f4ce03
MD5 a107a62f250b0dc5d6553fa4a0f725bd
BLAKE2b-256 9b43b112e9d8ba7987bc1ed4cca8961a607d59edbb4160f1a9200905360e2ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb00cb625078b434c7f2bc88de9fdf8c2b2c81cee1b94ed1cd5b2f801357a5b
MD5 c51202b51eeffd97f33ec92291458b08
BLAKE2b-256 1a5ae64dee4ded93029aa9f27d8088775c452307b9f9dd5e73cfd0df24775ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97d8f40af23d02e08457e75e8f5cbc4540cf75b3087ab4c39e9eebc5dc14fa11
MD5 97d16b8289a6345b4ad109a06d36caf7
BLAKE2b-256 8bf18b37bdb727b831fa208b11d98795cd9493978fd8ed6ba27097b4cf51243a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea4823daa10537f6b55eed7d42048100a3f3f61609116c5fad6fa255ce5dcb06
MD5 8910e5bc745e52a993611ab9d05bee2a
BLAKE2b-256 457e8c08baf2348c1d0de0475f026572e2f5b700cc8d1ed80af7fd4e514ff7a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f476a1543cc7d11f766fbbe90fd874484e2ca738d9f9ada58667626ec50c527e
MD5 f9a0a50e00bdc7df8f2bdc69b5dcaa48
BLAKE2b-256 061e26f0cebf4ff1c08aecea03746983b2a58c44ecda49d7e87f845280a52bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec1c1eed7d645ffabee88d0197e9f926ecc92f1bc2cd174eb77fba219d2ccffd
MD5 1761f370cc49ac4b8d97784c05d8c254
BLAKE2b-256 29e4c859ab008a9aaff01ff3d20b0073f574f95ef07910a655692272baf23e66

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1bb219fd0d0c83a0b002ae3729935db2bd531204ed7de91d6d963e5369e7e6ed
MD5 8e7f91c7296551ec38ca0ba65a4a0d77
BLAKE2b-256 cd547cf6252d2b465ff35cc4e4887f3d20612d4cdb2a51dcf4aa1d304bcb1034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98a7a9d4f8643f99cf28b2d3c7a172655261d2c5266ba6935c196458c3682f30
MD5 1a4e1543a3c107c9d149c06821c04609
BLAKE2b-256 526d63d5da3095fc54b1c9d536364b5c493a48e12eab74f908618e7eaed1bbda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9aaf05c6c79283505a5d2b61c4dc2ca0fd845c9171700a011826e3d5d0feacc3
MD5 b07495fc7f4ee0d918dfcb6cff061344
BLAKE2b-256 3f890c2b93553ec34163325dc076b96a3c94a572d478e567ff49eb78d1cce848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0713df605313fe0323e7c82f3654c634c88cafcd2fae7267a91fddc6a09c1bb
MD5 b7cc4aa4e11db837671dc8dd478567b8
BLAKE2b-256 6a34d180a843894cc44b0e401a0896ccf9d4b97e53599182589560aba0ec535a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93fab2fd2ec84dc0b0e9c51b62339d9c6dde42824bf09b82e31624487261931d
MD5 0293b42ac96bff2aef51fd9f600b253e
BLAKE2b-256 ed663dedce0f8d851321228203109bb30c800de1b34ca01ef3d5e6d5557ddf25

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7c6c1ae7135809594813989da20b252740cb9efb35e25f5310be8fce02ada89c
MD5 3542ad55f3a289c58d12b82de9f15d3a
BLAKE2b-256 7d7f6e513c18ce674edaa03586cbd74aa5ddddc08d1316900790c2edb1a5b147

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 52dcc3ac5b0047cc0b08ea0ec54e0b8cbe6810f8c6cacd69d40eb9b42b6cdd0a
MD5 a6f3a0b028869d303e918d274734e644
BLAKE2b-256 02f609eb447f03bc4012db6dc6680788a7547d27a7be8a37e750bfcf6eda4752

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3a1147422c1ddd1aa7373f8efd93767ea87685701b8fb7589cbc004e498cea0
MD5 d929cf406dac21c31af3b286c3d4d3da
BLAKE2b-256 15e6e6735564c2d43e0a8d4b9ac9398be17f3134e2651c2cd6a42d0c42510e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f88d25066be287441c87361b2b2187c4006a6adc705905e1508376165af13a88
MD5 8dcfa253160b12392455b19c872ed1a5
BLAKE2b-256 ac45c0b25da141d918530e4808c8c2f1f6557cbec8dcc77f77ace1bdc2b0528e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07798412aeb5253d750be9c400ebbd6cb25a5c39b4c0c5c2ee8251a857168944
MD5 2f6f17a769af8470ff3d79438cff8ae7
BLAKE2b-256 17717f997619e40e644c450572ba9651ae85a5fb59e3819692cc14fdd233d005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c6135a8cb1679d1312d2bb5523ecb98f41643979bb730db7e61453dfc7f965f
MD5 6cf98b6b4b2034722ae957d90fcc37ad
BLAKE2b-256 bccf529e629a058c1f0d960ad228621f6986a4b46fdd6d84b05a9bc1508e2cd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1608d8b206f3dc4d693c984cd82e07bad53ef964a808e712ab7af18f48e300cb
MD5 2dd1270f715fc3f09e5baaf35b630e4b
BLAKE2b-256 1eac44e8bde39937300bda1b3c37b94d9fca20a620ed6371a2e9c2aceddb37af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e951c7659e973396e7d206eafe41684dd95768960c201a89051551709209c62
MD5 085b576f3245c36571b491fad3f139d6
BLAKE2b-256 2e80450128caceac232bcb12b2263e22eaa86a8071094191a2d94ba627478328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a313583bc361a997fa88e181a9d483812d7d56b2e76ebd0a30c98abf037f3a46
MD5 b2be9d5c99a51385a03443f41501a334
BLAKE2b-256 c2307418422bd9d87ee5c0ecb2eba65cb3f75e7fe4ea23b995297ec6959bdb75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a0bc4da02f02b2f6ee589fa1b7e38cd6f87bcb7d35231df192dfb494946d3be
MD5 7b05df7197796867718fd8ada3863109
BLAKE2b-256 3effeb298e0307ad0f8950fbe7d8a3e3698156e0be8499a7fd6904e427c1ce26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d86e61c69eacba3d5534d639cf691c5bf3b9d3adb2e583f36b0cd005cebc4b0
MD5 d345b9c958228980df624feb29d27de5
BLAKE2b-256 83ce62d3e7c53af3fc264bb53c5e001901dacd30ef3eb5056c656bfd7a3a783a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 933172a4fe8b760a574bc36afc7f3278468bfd89cbb3e5b2f3821c930f386620
MD5 c81861a42908306ebee2f1008fc1b0a9
BLAKE2b-256 ec873e0453077c0cc89c74ebd675b60f8ed8f5d3b68c05792b833afb57ea5ff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f30be568fed92cd964d903baaffbbf62eda15245876cb3635e0f851e7ae9e0ce
MD5 ad4a94b4fa09bb969fbb60e8b8962132
BLAKE2b-256 c5737fbf1949b3935e1f7b7052102b35b22229608901464487a9d38c9968f3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5f26585019e20549549f874eb375b9857af8482c13f8cec23c6df4a334484fd
MD5 dabd6e795a0b2d197050b1e06dbeba2c
BLAKE2b-256 16040a91895c8092d61f6e4cf03eac500bb0312e250baa4a6004cae88515d5b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 669898aed54c5cdfe279d4564730ae0481e9cfd62140751efe3947fdf6ecc9ba
MD5 dab2e4eb228ceb58852a950b42342591
BLAKE2b-256 63d19b632bfd2acc17949d0a0dfe25e64d364cd058f78127b006a30c49980fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c4bb62b38d4fc19dd8bfe7dc205c0dd5e15c5bc28c4dafa63a3c2b2d4ccd0ba
MD5 893365ce201a2a94d41da5bbe566a540
BLAKE2b-256 6c9a58e82ddd41530575cb4c41d01a871a681125cc9dd7c2efe7464ce93e8c7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6ab3fe4aaa503dfb206599d0ff38e52f4b335e964ed452a64c0a8d27f387d3e
MD5 ffbdfe371e01ea200969d031cbbd23a8
BLAKE2b-256 911178b37d8078b41405bb0bd2fa131e74e7e667b72c7015fb6d7539ea643273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7404b514fd7055fddba160475784b07949b00aa881c67a90e979ac9a2247f424
MD5 23ac9e5023f8e50c83b9349339200706
BLAKE2b-256 e249d89522b8d29f269d37e76c2dfbf7b8a0d938002706bac3323be4b2000e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07dde9ab3d3fc7cd34e482bdf68f941d427e1684e4142aac15c8ea24bbf9a513
MD5 2b1d248c1d45d1b5d8eb2a2f0862e597
BLAKE2b-256 98f09fd7e237d4b5b11b3a98857f115791776a75ddaa163c42ba1fb4feaf4e93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54051cf451024fc260a3dc7fc7f5c107e3cdc660aeeef1ede3753ccbf11b15df
MD5 d386b54cad77ef0998a81ff33aad04a7
BLAKE2b-256 98b2c2494a9beb418f3e6e482839d02e0d705795969fb8638792d87e3b889d17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15312ef333d4ad96903a3d5aeb1f8074d7785f77b9d27b288f5f38daf3de72d7
MD5 e8342b255f7daa38edbc54b7df7ca928
BLAKE2b-256 5c206bf5716c352e8c48ed94df112915042522c54d97ec7477a0090d778c56de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d77620d8aef740bf6b1c154705c494d5ef8c4c038c1baefe157e9ad3e068e2e2
MD5 14061b659fad344af616070cffc7cf21
BLAKE2b-256 898f8346169acafdc0355fc38f21e4b20cdc0b958c2892bfee72803aa151c2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e7c48933290e141dd6ee6f6d2c3820998d680335b1d2bf93057f9a832aabd5b
MD5 2897cd068dc1a678b5793aaeda030bae
BLAKE2b-256 236648019b003c27d19f6d29cc33ef842cc7dcd7ed449033b12576155449690c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44ebbc394aec64381412c26cab82467f34fac122a5e99507cdd8cbec07d040e4
MD5 f4e0988ce098925b7e08452d903b44e8
BLAKE2b-256 d27a1774dfca7e2c18d14c93315ecf224014591c39555dbaed5571ff022d5020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc354e1d7c6a180f3011f9d0b802e2619edf51c8564fdb0d146c04d67a8a8d04
MD5 71f8af9a53761e918f0800d644920f6d
BLAKE2b-256 5473a3cbfb99ecee80cdd0356c5fcdde93040037f0e8252477f5b28a8e7948be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72770670e7c09e4af9cc8c005c171ce0e03bf49c517b04e8c16b880c657c0af
MD5 ee62699f45441e94a01b2c446c6d460c
BLAKE2b-256 93fdfa760351d69ffc1f9376aa5fd5e90a38fed172ece58e4e40f434fcbb4edb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09391f8718857105a97032ac37a7b4cea75837c5986a3675efff18338a2392f1
MD5 00e25898437357090390f0da30d574e0
BLAKE2b-256 7115f6e74ff8e10a7d9135343c809c7c92d349a88e299d9d762ca6403ddd56dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ec1ef37fdbbecfeeba213c14a1604a29568b429a5ca4821c2a46e923b1151958
MD5 ef3ea8b528c3d93f20df6f3603e0c76f
BLAKE2b-256 c85f4448e20ce0a8dfd650259dc99d8062881ff21ae82b67c734464614a8a277

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecad1ae271bd86716753912a20629d5766fd4fa3494067755847067d4f14b79b
MD5 9b2ee523d4b3bc4b36aac8aa0beeee70
BLAKE2b-256 6ce80fc9613f7ee145719e5492ff9bfa461302be8c4001ea809d444dc2b5bc48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0771f4ec1e61d3d5af6338396fcaf7e9f37059725a361171c29270746acc0891
MD5 9276828598d68ca9be23de9837cb0268
BLAKE2b-256 d485c107e3b1b5f2cd11575d04f171919142bed2851f76156de09693f07b37b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 745c9bfe7d3ee6e4c54d28494f320531e4995cd6e055ace275929a9fda132381
MD5 0a3739b812dd7531d7bd51f94e5fb16c
BLAKE2b-256 834b1c4c70c65902b2baa19c94465ac559bf754bb24c61f70dfa33f2bb5b4fe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5302451c2ae06149c1bbb4b1d55017010b4d1822af4d2819ec59a4b69a63886
MD5 43ccea6438c233526a59baeaa57f6f2c
BLAKE2b-256 062065e660a4b46957da4ada07710b3761c710bb40276d948c3a7c1d5fcbf565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2276a723585470adb938e3de11fe37e9837d91e559c2d830085764e96bf7f70
MD5 bc14808f48e73886d267b99e3b7f8374
BLAKE2b-256 6c769957633d37b35aca5e4d81e9a4bb14b4bb0000cd31a2180f06bb41e8865b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e9934b8595b7798328324615b51ffa8bdcacdf22204369796880487af1cce38
MD5 da9b26121660eff55986c757d811fdfb
BLAKE2b-256 b0350c9adc1d9a266b544e491b617e2c85dcf6fad23c464e37e8c95417c29135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55fee2a9d97497c7ef10c1d18d933c09c117ff40515e73d7fd34f7d6f72443b2
MD5 d2b7c609613542e7627eb989d6d578c4
BLAKE2b-256 9090e61cd125275283355ec18a46d50003a6fc244c61a12dff35b16571e77df4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff723eef31b6e847f97212eabc944e33c9accae43d948f55a565f9bcf85a56ef
MD5 6401a1312924dcf43e1fb0c24fbdd8c5
BLAKE2b-256 23d4f9c174731119312d93d6c27f1dbed2270f3cc645d7faed7f89ef0637a793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8245e07cd9d542ea01d1203589915c8c687152c6b9f7a996b2e545e6b03678c
MD5 4261713b2447112559addbda2297507b
BLAKE2b-256 b59734805418eb0f3db7e22918892b7fcb2f29b37167a13e3dfb4dc2a6b63f32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f090c4f1e8a836ab38a409844f1dcada144fab9e9710adb5a536e972e51ff474
MD5 c281faa0e7f3afdd211aa5bba2e05b27
BLAKE2b-256 912a375507b48c46ca698fccc310e290d6ba1a8e0fcb7f9a0c16c2e8906cb950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8738ff933852a1cbeb876bf865339d967ad61e4a20d64fb3f377b10eab008fcd
MD5 8abacf64bc5113685b71480ba2da6dda
BLAKE2b-256 c9268935444372511c9cb254a8f12ddb9f190587901e0148ba3a88d15859c8d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b828594587cc1410e439442bcc09962ebbc017fe3f5cddb81696e9cf1c46c27b
MD5 dd856b8871c1e8d9dbf9b8f476f6a7a5
BLAKE2b-256 01137ab3493466f4c5164a5fae35110cb0e404a6c396e97cac1815070145c8a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 41f0f9e0684abf877fe8f16349388304ebe3470ecd89b6441f08ff6d4b738c74
MD5 098fc678856e84a15f3f461c286e7065
BLAKE2b-256 cdb043655644b24a41c3332c6ae08d712f4e49732174c46c9f640099fe80f27e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34d518383cd578333a79fd5803c16d71a7b68c16a39ebbbf8acd721b175f20e8
MD5 e49e99fd42550c70db2f2dfc31785aae
BLAKE2b-256 adf8c378084d70516285a9a452f751336ffa0222c32100a087a6718b3db46b5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c539d8dcc7144c1eb249fefab4c2650d481d0179e3f9e3ad62a73b2b0f74a80
MD5 43c38191c7e7722008315eb869e71825
BLAKE2b-256 1dd82b0faa09d9d386762264e6acf36a4a0366a8774576ae1659026481fe6074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf75634d0d491b06df35d83632e4519e332186a222043128b297a8725e3fcabf
MD5 a0603d7b8bc96a3a71a87d7a5b76d211
BLAKE2b-256 3ea15ec481fbacf7fe9cfa5b8d84d6a15bd016a5d444dd3cf3273e526e389c74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2baebcd2cd0574866eb65a195d5870859e4c973c5eebd1d94e373c8b7e716867
MD5 459f9a6c36be850c8167aed5f44a6aa4
BLAKE2b-256 e7bfc6d685621fb6c765120ff1f874472fcc465e1354618a9be9a8ccced4e54a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b026003d00a65412f924a7fc3c42d37e32501be804614ee50402ac0580bc177
MD5 21f2ddbd3f415115410d7a8e649ee3f3
BLAKE2b-256 00e2413720652c7810d0666a25e6cf112af25f09be4d47421a6b309595730b5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35866ed4fca1cc5676b387e59e2ecb059de2cc3b98810135338c00c915ca5c76
MD5 ba97fb874f7c8efd4c0cb8e7c34f35b4
BLAKE2b-256 2890cafe4e90e1345d281056bd582f74d2ea996c1add34ece3bd3cfe8cd45f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22d611cb5b6e25b543e9ed57fe3395a0ca5e44a389c29add50d12f4e74153f4e
MD5 718865fb45536c88c8357c0611f15faa
BLAKE2b-256 ddd83da84863bb9237739d1d79b74cac32977904f841f8c16540600b90a4ccf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 121802772d704f132e3bcb5b4493d01048e78897ddd43fe3ee49929a0e8b7735
MD5 a6118911eaa7680eec04c0e84be7adb5
BLAKE2b-256 b75eb53d5840b2345531053977d24af4d7db739b52cb041a5fed60d9547e00de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71b5976315cc706f3d06f9c4e59941d9ac7fe486fbec81e2e94e4eeb6a41d487
MD5 22713214ff258876fa9afebd3135402e
BLAKE2b-256 7e4acbec0886fe25ebf67b6b478ca1279f166530ff2c1398186a4f3a40bb25c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c073aede481cc112ccfcc6d992c5b28834c419fa44b1431d59712f4193e57aaa
MD5 d83b8b0962c0dced9c0625fe9e336766
BLAKE2b-256 51dd6616a6b0ae204c29affe4a60dba82e2dda3277a88491ebce8948b2407ea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64fd5df4afe89af05066429857607e92482ed26be5b7331277b1ec9b64e9391c
MD5 4891de9ff2a411e951643199b1cd9e75
BLAKE2b-256 e2bd81aac54a0a5094feb60ca987e463cac3f145b808a99d372d06af8bf9fd5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01b4edc8612e06bb761a444d3aecf4f7a5a405b66b5fc7ff46dfb97193be2755
MD5 c6f47189daecaae43a5861c06e26baca
BLAKE2b-256 cbb02dbac978e4bc5c8830b46d4177608cdb02c26e4677f68ae7bbfe63b23c16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e1db2e055d6b7c6c2943be5e4470cd5a4251052c908c8766d71a23caf0ecd764
MD5 75cc6ec240c9631d1d77ba912cad9bcf
BLAKE2b-256 9423cf225888035b51517c3deedb1f1041a65c5bf1474c8eaf5f9b8794e42cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cac7e7d41234e3fdb4545b6f34cf3802abedfc4dced8b61aa9e617c0ee7ffdb
MD5 87d750aaf22c359dc2da6238032c1f6d
BLAKE2b-256 2048649c16bbf1781a07a959f5556f6a614131649830fdbfc887f45542a6b3cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df7cdef50dac25c6005ad1af20014fa01958abffb39fe60e8f7b371c25b438b
MD5 b3ac101b77e07282cc94c5d5095115c6
BLAKE2b-256 db41fcfc453893a4b8b607c47387f0492ee3260770e209bf282aece37288f83e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62731c4fd11aa9d4aa854a5f8ef46545e30ba91c3898c647d95b287afd99c17a
MD5 d86438d07ffb4d19b9ff892e3f8d741d
BLAKE2b-256 64257eef9687827bba0ce0b1077a7ab8b5d1a5fd676dc1540bedeeebe0dd9f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 520338374f4faa9523e3510a22af3fbe130b49e24650cabdeff25ae73337a191
MD5 41c9a7847f7d9ddd9e27bd9fbf067596
BLAKE2b-256 c30094cd116e21920aa9f8fc82d0e2ad44e35777864240c2eebcabc9bfd343cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5e23014bfd3632347a0f578653e7f5e55e473e58d7a2b126cf1436fb80a7b1f
MD5 e3502c4913797fbc248bf8e3a3dc5a64
BLAKE2b-256 2dd82c52ffc3f18ae882eec12d32e87ca886031f9991ccf5d475f0dd983983df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0872c4d9a4509b1aeef85d24a23f90e0a52e28a2b5bc6f06ac4ba528b4eeed6d
MD5 6fcab60b1e414c7a40769e595268881c
BLAKE2b-256 938a7ac556b6d329424fbc541bf6d33465c751a0618402367f8c88f3a6c5c48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 397ef2d304977d79989479baa8216c4681dbfd083cc74742c069741bd9a2bba2
MD5 d8de45a5967fca9c7c91344d51bc1c82
BLAKE2b-256 1be13c4032b9ebc1ec9c5ef6f969d16f6373d7507e5c27650f39eb839a5a9daa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8dbd88377cda6c305499ba63b7bc75b51abf4f00e976b1035603665eb8237ddf
MD5 1cc1df07d7841807d40d2163e47ada2e
BLAKE2b-256 e4a69816cd05a40f8a78a1f1ef544160550079bdca3311a99397e156502cbcc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1c58026475095493c3527161fa06a1603fc0f45d6e02261f79f910f0efe3bdd
MD5 45621c9040f474e77adc9ed3272df2fb
BLAKE2b-256 5ad6ffc8a517d9c6fd5b112da4440fa4e893ccf34683dda9f6634aae73bcb7c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a130f5000dbc56304df635d6257d7128e4ed9291f111e173ecce31332ff31da4
MD5 f0d813ec90fc5ab7f57cb1a63f0fab35
BLAKE2b-256 6b12b00cd64645e6b147b006c1eb784021ad5809ece55a6eab234b3080ab264e

See more details on using hashes here.

Provenance

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