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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.11.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.11.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.11.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.11.3-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.11.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.11.3-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.11.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.11.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.11.3-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.11.3-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.11.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.11.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.11.3-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.11.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.11.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.11.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.11.3-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.11.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.11.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.11.3-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.11.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.11.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.11.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.11.3-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.11.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.11.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.11.3-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.11.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.11.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.11.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.11.3-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.11.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.11.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.11.3-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.11.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.11.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.11.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.11.3-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.11.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.11.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.11.3-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.11.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.11.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.11.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.11.3.tar.gz.

File metadata

  • Download URL: cohere_melody-0.11.3.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.11.3.tar.gz
Algorithm Hash digest
SHA256 9cc4ed3c524da480245701978020cc9684efbf522f804ee6d50dea072f709e01
MD5 7857164f87ad3f09bcf3df411707d7e8
BLAKE2b-256 78a65c809253cb28207fa5a84b3c090204767210e7872a86076190921ea7928b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc564d0371514b5a8569ecec261eae78fa18d34c90b02afeacd6b4923eca1bd3
MD5 3b42d013bccf19909b7452d12a4a7a14
BLAKE2b-256 d09900de3f3d94cc8b5cb2f9e8ff14802c2be0e783b74d12042b41e9532931a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49ba9ad14936737e6d7a8940401402a4db85b2b3564b52d00a0c6400c689ec78
MD5 342f99232b95fa44f4dff0b1a216566a
BLAKE2b-256 7f111a483e707f561b09e57a25dbaa1f5e2394d632610182c0a33fdebb0797ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d288bb4994c95bbe41fb91d36c337cdaa73ca8cc5e2667a5639a39c40b7f002b
MD5 c704c60dfc396e6a8445fed000c5cc6c
BLAKE2b-256 fbf1c8c7ec49375588179cf59d7d7624089df604cd9441560f1b33f2c809c096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 081ba3aba50708baf90ec94be5c480a2d8dd4aedfeca98ca5175b9166118533e
MD5 559bd3822762e5a11edf1513f3174044
BLAKE2b-256 cda80504be1f07772da5831e7741584af7a9b6ea3b2e72c200f52b00bb21663c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c377b60a4fc8ab7c5dba0d46649b255bad9f72f67aff75702033d96368d8c0d5
MD5 8a6a4337e86d669eff09962f04010841
BLAKE2b-256 83c7e401706ac6274facbac95035d7377f58e5d0536f388f2c0c7e850ecebe17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8676daef63612acdede6d6f609711d6a63e05383996e494b39d6bde6b1bc72c4
MD5 ec829ddf6e3b7b28a4dbccac9f074fbb
BLAKE2b-256 2d03dd9bc01b52bf81c8e8210d48a7e6bb114c3e876a948a0a790815a222f8b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8befaaeee293cd6eb1295315dced60a4213afb38b53236a04d956986534291ae
MD5 4d49a7650281d223522261f0a54ec799
BLAKE2b-256 7c8808bbf3d29fb74d1faa475b24fe339fcccd1b224fb4d82e4b0f1f7570f901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cf6a41041e55f0def6483674bb5ae76a248bf65c0b103f28ed0c3c5ba7dba23
MD5 42dfb9bfb1c435a59e729f17550461ca
BLAKE2b-256 e4224cdbe59f58b354e42dfaa48566cef79edb23e87d6a45763bef3254d1256c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f106025a2c0deff6b64c7787e73fffb6c917ce658605ede1363c69fc45af97f
MD5 599e9d594d194ac5f21a564fc3c2bbac
BLAKE2b-256 b64f06cbdd8553ce011ad99b941f7d3ec56da79c76fa8f95f741eb58bf9f63ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0aeee35bf42f450abc199ad6f0c6b108595927bc57ffea0a6035e4229807827
MD5 fb31a30ee8eb069797cc67195a664ff4
BLAKE2b-256 1c6244e89b29cd3c221976ee3878a994726dfde1a12cbec16ff6910d31dade93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e94418f01fe77164ca99184bee7454ed93b5f8106c5c23c7d446c6c065571e44
MD5 6a1ca67e9cb58067efaa0f6e64a06916
BLAKE2b-256 7cd96e144e2fbb6cea325bcbfcce0a7e3e9f282f1f72ddb5cd276f53b4b8f9ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f3549423d13dfe92eb2ddc560f01917d3ef180a8c0b2053f62b9c541f8df812
MD5 d9b855cb94a8625e09cb2321c79d1888
BLAKE2b-256 a6dc839ca43cfdd1f1b0c37442168e91cc0048a5ce6f66cf82c664f4aa955b23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f31018a61b045f29bd8f15885ea599c53822e6cced85bc5c6517d6bf3ba6b194
MD5 6223581aab90f48b235f1cf11ca8aa78
BLAKE2b-256 def67df55ad380ef18e5ea93a26c464153cd64ebfde6d84f810f7083ef28009d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3910404b8917881e944985b2af9de4782b36d37e88308bf064c90bd8012febc
MD5 81c24a6c48d7b40b31cdfb76985b26ba
BLAKE2b-256 fd7ffa4ffa632d93a5673a3b393bf6bf4affd22041028e6d886981056093c965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc458cf4def156f1b824596e55fdec48257171fbe58d9ec8862013dc4de8592d
MD5 717b0f03c19e9f379d83a93076558dc5
BLAKE2b-256 b574dd9832dc37300d92bb41861a0e3d6e1f827b7ada8648e3af34714a908e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40553b5a3b54b11ce49f3859d8bb61d6c1b0c07fe3d0b7e85f58fdea487acef7
MD5 936c976a4d4f3d6a60537a717925ac7c
BLAKE2b-256 b4ecd9a4aad61a5d2abcf881304450d8bcce199bda528a1460e862e50fbd08ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3815c7cdfc600e44b570a3424417504108986850e0688326c4b05991f38ac12e
MD5 004e463773d8c0b1aa8927759c61b927
BLAKE2b-256 a447958dc83de5025e660684772984c26b4485bd6fd1ce1205e56925471387a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bc1f09289d450fd0a170aa19c24c33513af7c8250ec858a55de1b738879ba7c
MD5 4f7c35c018aa358dae0f509a1d1caf0c
BLAKE2b-256 8a9da929c9b5dcc007223b97f197df68500a19f91f7c15c3e6f135cbbaa3daa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34e1795e9ce43c871210781d3f605bf272e923d9dbe53d12efea32c40a206a5c
MD5 4ea738be97f15b458da132ea4530546f
BLAKE2b-256 323fc864c319a429f061b61061f81dce4bd50a4b31331afe2bc375d29f51af3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 549e6ca4baaef957b6fb498ff007b55a0ba419dad85aabd5617bb9cac17684a3
MD5 2c1c3c8704e1e5f954ad9dfdb439bff0
BLAKE2b-256 ccb24310b8bf35c69fa368ea2ccabd40150106b4399b6c0e0531d722e2dbbed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d14b6f11c0dfcfe506778dd3c43a3fba741bcca50bb34130488f6e520af1407
MD5 d9b6639b4d63d1e267f31280c0121f08
BLAKE2b-256 cba636db5866e5b217b155500f77eae31433b7374500b9499c316392227ceb23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.11.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.14

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 16963b42ab8242f15cd4d5d15009a4ebb4921123697a19a1df0bf5824e77c217
MD5 c93c90ca10fe7375cd156a3320e6e361
BLAKE2b-256 29bb3e50a2768ea52db68d9f7e13efdb43b0c93e20a48e255cabdde0ffd3806e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87cb5793931aa9f7fb25d3ec90c0f9bed721970268865869e5016ab3fc924958
MD5 dbc0127feba2c8a6736bc1d49407a083
BLAKE2b-256 fd5ef1e12ea2373962b580c7d095ea1377588b4c68b9c8d4160bb88f99470d56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb6e31c0a9cdcedc340a1a623b49eceea91d1f4dd22f113c235b7efd539c37a4
MD5 f08a475235f99f1bf1a4726604c6869f
BLAKE2b-256 8dab793f8cbf333967808360c71639f0fbfd91e6b503df525d36a364d3e3de9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e0568bc68263882e8bd12d3369b535384a6153a0d86f6fd9e6d2eef19242ccf
MD5 54071e55b989f3e250c6c06b55c4716b
BLAKE2b-256 df4c1496929df6d366eeb741124490d37a7531ca47e06c97603d77d4e04dbb24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 816b5521c0bb41a8a05a4669525315f2b76d4c3a86dc138b2d583d937d7198b3
MD5 38dd2dd4ffd8c85d998a4e7ef545fcec
BLAKE2b-256 d9855e71d30c3250a60d880b8b02be3d2e242431793870ef2ca08c9d505c6446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dcca7f36dc12fe523df3c23de83da23dbc789eb34da794823fbbba28841860e
MD5 ea689cb75821e75995e2136471c632a1
BLAKE2b-256 2ae209d7d75e6cbb7466e751d4738ad672066b4e8a7cc35be27c4b46792975a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9bafc9fa59d762571bce5e4ce331c62eb5cf7c9cba5cdfb77dea449de092fb8
MD5 84a4bc6d81d8558122ccdbbe169c8e3e
BLAKE2b-256 40616ce0b9bf8b76844823e09a80c0d6c2e6f2cbb5408a10ab11436ab5af9366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b426d0a60dae96cb50778de33ef310f4f1676f34d967a34e6b3db42afc07d7f
MD5 4d86acc70b974906d122964333052103
BLAKE2b-256 751f17b43044271906f7a122d90a24cd74f7dc16aa544a0e8752dc29687b2916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a66242c26196731000dc10ec2daeafbad9970b314134c37817a32613d47887d
MD5 9b2839f383d8772719881e93ef3286dc
BLAKE2b-256 0ff76c507e6140059acc33eee8cb99718be6fb04474dc639b2e0563b58c9cfca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49d6d19dc97866325a7ed61ed719000de5c756a37f6a230bc076d3f35fe5b2cc
MD5 672d8ad89cccd09ecfa3ceb00829e8e2
BLAKE2b-256 b1cde60d9ae98aa20f9269cff941bc96d898ea5fbb42426e605169f5860a67aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af25be496d9511e61ca49ab1baca388cf308f254549f6186c84484d4e4cb0dde
MD5 4589f57e171b1132f18d8cbc8176d35b
BLAKE2b-256 25f0b241f339f712c22a9f29a1b45d726cc2b160a93a4313c9b9edfa4c11b7ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5222419159737b51b5b4ec248a203c01e5fec4e880b90993785061fc12b522e
MD5 408c98b376ab04e80d706d7b42bc3c8a
BLAKE2b-256 7ddf5b3191aaa6d34517479dd1f452a843d82cf2b76d8d9abb1b584c20d1c6e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c14995d144ad61583e82f46da71f642480cf3fbafacdb29d1a903c6d6a21366
MD5 6b3fa97d864b8a2430fca065a2e4cf61
BLAKE2b-256 1267bc9c5f6032f04a9f9d27bdb1b2e7d5e37c753fdba8c8e148e8930ef3b5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5021f21ce109a998207a42971913ebe23f375e0dbf75a16212fa4200ca363994
MD5 6509dcd886b5200eb4dd6e3627e7a1b0
BLAKE2b-256 65dbd8b77549a40add2e63b5e9aa7cfe40ba3bf9f060eb44dd0e28a4fe7a463b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36352f32bb1a9c222f1cd9a153ef7584d4969bb6b58e472d00ea6417200f7792
MD5 fdc4b090e5b282f7c31c4eeeced9243c
BLAKE2b-256 90e4b24590ad9943239c91b3f63b976761eeac36180885d7345bc03a4901799e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e151e1820f5611af3b77eff15a801cc329d430d644b58c9fa1821d3d6717c293
MD5 680923272c81092429e31b8dd229e8cd
BLAKE2b-256 f59a9bc6712543f8dd2e24487c0a69e6e92954c640915642cdec496e9f069b1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3917a34f4793fed21424008d36a74b35b5fbc1f676073cffba18e9c40ada392a
MD5 6c6b077eff9096c18632a1ed9306191f
BLAKE2b-256 20ed1346788d3ff61100c6daae9bded9c779bfd0846d35b9a54e5e53afedbcc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f4af2307831bc18710d7d83c98329bf687b05851251bab0b51e402076ac5a7e
MD5 17f5e794e3bb6d6963462715579f81c4
BLAKE2b-256 426bb97bcda1dbf5f94e55a3a26b53c6d2ddc68021ccf94fbe4ab59a314453b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 352620afb80914a1a63218823283ba5ce9473cf25f24ee303569099f0c652a39
MD5 d435a7f33bb8a1c1b17faf80993ae856
BLAKE2b-256 ed4bc847de5585ce840ee50200fedff48f42af58d5e781b58bc2b471eef6d2d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e70b529f630ba94977b1de9a8293dcc7ed53a8b15bf0ae207f541158b05b6e9f
MD5 dfed82206d322c7cdaf771ce17a2976d
BLAKE2b-256 173c1a128ed622f250b7933b7460e0ebec5c0bd3cb82753cc056321805641ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e8300e0e043ea823444355cb2387efc31b576557b8240505787a8551c16fb28
MD5 fc3a223a994a60c8066884da464bb0a3
BLAKE2b-256 29b52c3669fb48ed491dc93e56fcae254d64cc13db485e1c2f5388454517027d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd9ee6834f5007cdf03c7c77d73015efb7d6ddf04547de539c1b4530b636fe4f
MD5 83e5f0fd081da49ed5f81b2da1510adb
BLAKE2b-256 c291950d35057e30cf929081dd6033e9b4ee85e01e2b41f93e33c603627e570b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5682ac60581c0b586b1b097cb4cff64e03fb4a110c1a593fa6f4d086b5b178a
MD5 43ff55f46fe8ee312746b7567567b01a
BLAKE2b-256 1631ee16ce4b6a47714ee8dca5f13f431520fb1d0d9cb00e406bc5d9eb469f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd68c43d183548a4c8978e71bff21f724207441bade7c732cdccb64d4b818931
MD5 343cd986c34cca1549d2aa200869d4c7
BLAKE2b-256 88ca05ace8cae5f2faf0e55a2bbab390013a4d456cba27a47e37caca329220ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b78de619e07a8d550a0b7168ae51a2294193e7addc8496ad562efb096c5f239
MD5 b3651a3f29279f9f7bc395441f4a9c7a
BLAKE2b-256 3811418fa6a7b08ab1c820648ee8bd3b56aa0f7a5be45a6d1b139cfdac2cfa0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 138acc167c987919f4c6ed0db4e873a66e1577eeac8ac174404a6e30d6a7bfab
MD5 0c110b1afda6c16ba91108b19de6d863
BLAKE2b-256 fcb566c413de6b82bf39db00b9d3130af6e217acf428649fc7bf441280ac2459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 811b3c8df94c120e81a7e5e07590f3f7871cf265c313bc749aa6f0a9acb73631
MD5 3dd69c6ab7c1a4d55d0d49c0ce9ee50b
BLAKE2b-256 ac391a10d2bf22813639bc716eb915e0936ed980540a1c6aa829b1208850bf46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab41999a7ea60cf73cd9816eb57009b2045ecd19d07d701c4c865bd2b0561973
MD5 3925b3b77a8b5f496de7b6324ca890ae
BLAKE2b-256 7ab287621b1e683cf2a83708eee3b1f8c151e77b55af1e38b4b4de007ce3e8b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01d0df522b44fa5e10562484a892129092536f753cc54ac34b039fa903c36168
MD5 70c425f08b79c3550a3a7dd5e9fc5d51
BLAKE2b-256 2d52f7535f274e009d2d4992ea14a80e44133de0dfcfae67c7ed17837027b16a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3edc47dfc4e64ea71357f947ab2045450b01664f21b8bba1c87d3459db78d80e
MD5 a4ec53c5c0a1192eb39c5f54373cee40
BLAKE2b-256 ccb652cf90c59fc962e899d889f590a22f6927ac92c7747d5da18d826596f184

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4c74802574f63983c555eede911cc5d1b1f1210a698a1e153abdcfd2c9fdd22
MD5 06f43e91f7c45ddfb19ae42f4e03c6db
BLAKE2b-256 53aa927080ce022aa6aedd546d148847f68adbb650c4518c68c61ee01c0705cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b476a60cbaf3d39ce01504d67acb0e49f10d55162cbfab3bea139e1c6317ee1f
MD5 ee0b8bc4480e94d0117dd3bb78f8bb6e
BLAKE2b-256 7085aa7965443f00816810809d6de0df1e9040815115b5a2fa7474f12c69bb8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa6b86b96a8b52960fa7b072a6e0989ca0eb13202cd633016b3cd99e5645bc64
MD5 1377dcc6e6dde4bf72154904861ee084
BLAKE2b-256 69947484549bd37f87f59ecdf7104120bd5d5356232d95e44c2486e14d854242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e42924ecccfed47183c0111f6a693c00adb1eee25966a29b7f7e126a138fa22b
MD5 f27d788abec5a6338792b2fa4ac567df
BLAKE2b-256 a29ba29c56f26447e61e7b5a7d73dee134df0f799ea68c06aebeb35e4df5c9f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59775ea3c8225ca3427576c0130fdfe27f3ed7b899c8314a8c2b6e1e8ec133e5
MD5 2c2bae9f1cb51d8dd5251b4f194ff022
BLAKE2b-256 66ccc0a631023db397c4f4780527405786763087176a7109049c145a956e60df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 164d42ed5652e0b7109c6496ef13548624708d2cceaa12e286a4e2c6eb3b2d2e
MD5 b7906fd0973b117d3114ad18e12fc279
BLAKE2b-256 c45aad93f1056950b32825cee13f4b66a26a262d83606aef6f4bb5f404b2f504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9d04fc8abb3b3d139bdd6503da3637a7035e633f64d746c620a22c60d8855a3
MD5 3ebb899dc029ed9c33adab7974c2b38a
BLAKE2b-256 d853c6dd579031c3151af4caccab7a0848c541d9e8bd8655eeec5b64161a320b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2abf17e47d3ca23814206455f3ef921dc0fc37c78ee8a2a2cdb04a2561b67dc5
MD5 35d3f417222f68e495040783e90f3706
BLAKE2b-256 fcae6fb3917be5f19fadbff0c5cd63d0eabcf928ac36f1f2209060ee002065f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77913cf6f7fcc4ef0cdc7a3d7040f376fec8bdc71d3ead3f103f91f35cb32397
MD5 bff99dbce3e919beeb81781c5a6b5302
BLAKE2b-256 6269fa0a1c344c51fe22039fb4ab8c93199e761aaa7d0ad5c3138a5d2ab2a309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a3d314991047605fc104d19c490a3d52b4da4910b67e8612f08c7920c8bc7ea0
MD5 a81e33140ce200948b7e7712b3b4cfb1
BLAKE2b-256 05edddfaf2d9c53c220035f926ced5e5444e6df270c8f24480cedb0bf1b0e81e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd013c13d3452f6efbac4f1205ae017161ee4c5715c20b01ce77329321f28766
MD5 a782386350af352bd891ecdab9df7cc1
BLAKE2b-256 1c2d68ae673f54a771ae738031429390d4f97db078a1b7d361c122db687db921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d732cc2ef4c02d21e31cfe7dc6939b054eee4dc3a1e019b47a9b62da1314ec4
MD5 9c89b327491b2fa7e909c989f5e27b15
BLAKE2b-256 a9f0bbb873b7fcd946422216ddf7d1df89c9e8211634a533924859dcd6528159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17d9877c72e55854db845ff98a237d1daf04e1bb3a66d04ae2e466187250ce71
MD5 5c9618c3a2c117836e2abd2ae4e606a4
BLAKE2b-256 ff84ca22340934fb0b37fac16d1855bca0eccf1d37590da5e809bdef63fd4475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04a058b29c7b57ce63a5ca59cd2796d6263ec2059be325178ec7653d9a7bf146
MD5 c28f95bec516e6e7a3e5f59f1427a4c3
BLAKE2b-256 5943536971936f9140008908d5c59e8bc313a06c23d355d3197bef287fe9d0ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35c5fdec409a2c0cbb107a6ec656a4762d7d3b0ac29aa88b0892a6dffb97b992
MD5 c1efe1ed6e15d4a7ab1dec860c94b562
BLAKE2b-256 50a648fd5e21b530c32198a4c969f3d5c7e03d7cb7d0df22800cfcc550264c2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90c5f199ebba34d1975ca54d20c219fd3ffd325da43fbec1d3beefeefe598357
MD5 06703317502874752bf8139ca48e4207
BLAKE2b-256 4b422a07621517534e62db2049b60853b93477d267332ad14f5848084743d4b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85de87deefadd2c94294f09ca1aceffa5a2b1b0e8941c86d9a352ec8acc195c2
MD5 b830740ef453f8cf58321da2f44bf7f8
BLAKE2b-256 80bb7f9acd3c6975b14579abea6426ae3a4ec744c967da0befd2f86aadd6b6fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8b85726e3f7a996ddd26acb4fa2b7773ff65dd186fbf77745dc071add843300
MD5 cadb39b82a32733d1df5315fecf66432
BLAKE2b-256 901ea718cbc7441e3dd12c42a8eeb91b62e7219f6ae491ffb71de39a96cfc4fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 382c4e5a28d0aef26f59dd6050dc4376908846f94973461bd76a7e708fe5d910
MD5 620718e5f2512f0295b255523670ddf1
BLAKE2b-256 9e8f7ecc649335d7adecb6a3b7498649b10809e2ac8dc3ae2163500b1bd07cf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0527b531d94c1c1369994f2265a2b1cb3a972405a58594db62ec08d4eeee0382
MD5 40bd2b4cd65b94f1f84c3e818d18cd96
BLAKE2b-256 4275b6a7878d5fdd458e7e2e2ddcd984c25c16f6fea4e83394437996aec9c01d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc86bc30b31395bb830307149155df6156bf58d0ec1e732e2e503362486d765d
MD5 4e4a210a822efa716c2a21fa69e543be
BLAKE2b-256 844898c7582a6eb3f1a0605a1d9493e1862ded41a5ae5bf9ed25659a059f15a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ead44d78fee875bacfd840f86b75e344f195eebdbe29ff2dfdd208126debce91
MD5 ecbde2e7238b82a467c88221aae003a4
BLAKE2b-256 8f98aac8e46d3a8a7d83415a91f75122f974731ca5002d8ca6f14c3aae8079ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e065aa7db471122b4d96f769c0eaee60784edf5b75dab8067a8cc54c87732de1
MD5 fc04c90b60afa5dceba3d96100c1b49c
BLAKE2b-256 1ce701eed0c1d33beb9df6b82fcc7726c4c6db71c4978b1b8e70d47dadc91559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5a2be8cb5730c406ff01e112a883241283972c2f71ddebf493a817f7eab24fe
MD5 ba67945c3ad67ce105571872658801bf
BLAKE2b-256 e312e412b9ea2a5bcf7731b4d00909d23681aea4b18c4937eb65603817b3d044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3af7d37b0eb7486f1315e4fc33dd6d6b4ce9e302ba33b4d9bd5e1223abb22fd7
MD5 1523d5f16ca6d30c899b009aa3911a1c
BLAKE2b-256 f411ecf3902a48b1c06b30ab940add84f4a07c56b499af3925e72a7d1c2ff26d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10c623e26e37c3e8f02dd09d7fc9a3741fb83d125bf506991e4248eced4507ec
MD5 ea499693f2ff91015c38e91b76b843f3
BLAKE2b-256 990d1c39c88c3ff9f139dfeb961eeaa7eae9d245b5c83139a4877bb861695f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c072c91600b6ae40f43a906c3110e2b7370dc275f6888336e43cd2ea83ac1b5
MD5 a36203c452d245109244e7cd8be35bfc
BLAKE2b-256 6beb7fec3c8ce79800cd1286af38cf0632e09431211bb7449fe42654d1a518df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4bf6f24c0a103be9d1569b744d9f0c001c34c80e0ceb7cc512e85237b90cb16
MD5 4ed2789d6c2bc3d33e87f404bb735f40
BLAKE2b-256 dd4c8f3f9d9a3006204769fa7e3bdee1f6de8015d6dde7ac0c2ec2bee638f150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff70bb90dc73fa2d5c5f255a7a48913d76b6b8a9583ece5ed83a9cc1a24301e7
MD5 17f621a9e5e8e956477751445cea0844
BLAKE2b-256 447e02d150f260ed4ec1e43e9f897f821d37b17f676c71c5dd257af8f92801c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e4953c93c2f375951074ce75d93d1a10ce98b4f6371df71d960300e58c68d76
MD5 da5824d0d21d5b3cc09f27f195a22d06
BLAKE2b-256 f62dbec26461fa56e5bb8fd66d2801c713fe2b1b1062d10496b8350e9759eada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12d5b622dcf2daf650b1cf1ad4e011af5d752abd880a6636ccdf31d252da5594
MD5 cbc0afab20ec22ee8487f0986ac47439
BLAKE2b-256 4ba31e4a03c8c3aeef92e04db0ff45082b4f40c5c106715db965ed22119bf36f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9c6141b3e47dd20733aa91c1ee9d606ee3c610587192b6d8d599c4733e003d9
MD5 8421d4436fc5ad035d981e05c49c1da3
BLAKE2b-256 0b7e1192455d514b23a9e4f2a205aa3bcddd45444f5d725753744a2d7413b156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.11.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4607268f97a5477052800040d5e4164d698e7f40c2416d9d30d313d6d3629a98
MD5 371361b3b36717a7357f5a18c0b6c26b
BLAKE2b-256 32f64194bd2e91c01b5519cf757fbac71557b9fce9a08ff876b58f3d25dbef3c

See more details on using hashes here.

Provenance

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