Skip to main content

Templating rendering and generation parsing for Cohere models

Project description

melody

[!WARNING] This library is currently in development and the interfaces are subject to change. Be sure to pin this dependency to a specific version.

Templating rendering and generation parsing for Cohere models.

Dev Setup

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

Examples

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

cargo run --example basic

Usage

Parsing

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

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

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

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

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

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

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

Templating

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

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

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

Releasing

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

Building Python Bindings

Prerequisites (from pyo3)

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

Debugging

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

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

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

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

Project details


Download files

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

Source Distribution

cohere_melody-0.8.0.tar.gz (9.6 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.8.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.8.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.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.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.8.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.8.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.8.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.8.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.8.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.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.8.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.8.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.8.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.8.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.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.8.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.8.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.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.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.8.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.8.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.8.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.8.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.8.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.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.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.8.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.8.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.8.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.8.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.8.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.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.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.8.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.8.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.8.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.8.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.8.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.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cohere_melody-0.8.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.8.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.8.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.8.0.tar.gz.

File metadata

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

File hashes

Hashes for cohere_melody-0.8.0.tar.gz
Algorithm Hash digest
SHA256 a4a505537b658a720497680cb277b3106f81213f43a0ca485705aec9894612b7
MD5 e7ea130e200d72779a8e2305a7cc3ad2
BLAKE2b-256 3cd7066a2ae7284ccbbce0a51e4406b8c1eb1284c7841a71d40466b37935d349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbca066b6227591defecbac0cf5766108e8bb32be48849cff1365d3ae2f3c67b
MD5 2f6ce5479910ffc39b93bb1303484d6a
BLAKE2b-256 d9f6bc8b6e2686e7e943e7977335d27c194d6281c13597a7f97083e15a1362d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92f296693d9e76afb955cead907ae102fa79b0b4f460bc41140641da86eda1e2
MD5 08db5bb7927626af0dfc26ae09e99894
BLAKE2b-256 b22c2e73bbb06614c082302c531481f42ed767c5140c85c151075a1257d754dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f74c111021f9d5d0323479c771dd6e490fd53ba1d2ccc13319c49934942319ff
MD5 e60c46b58230416c645d61a025226b58
BLAKE2b-256 ea79b359dea68200df9f2172d89b553187294bc5bfb1a72a795c068e6d2f8bbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26cd0379e8eba157af221e20e702ef641c196b1f0dc8c04ba835afb6d4289772
MD5 205f8f337e4d14a4d6770cc53636c8fd
BLAKE2b-256 3361e11cac7dcf5027c578e82863a593bc52907042729174d8feb95e69d7bb5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7f427f7a26bf325759e64dfd9b16a7332438553df1e291a1e8b388abbd5b73a
MD5 c58834815826399a28fbdfd291db4a1b
BLAKE2b-256 dbcd581f29217f67c9a0df4fc13ae26a7faf32b1366f45e8c112fb658a0439b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d201865eb2c7d211dbf3d6d68ce22e83e22bf4954fe6c313b91af3cdc9d6167d
MD5 4046c780e2e4dbee006f5f56fe3c29b2
BLAKE2b-256 8631dac971f2d181f81ebb4522cc929787450705d0781870aba985e1391895d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d414547eebda0ace21e8f17fc867b801910b60991e4efbefdf072bcf3ab35cf7
MD5 2d681b58bec58e2c7a4a549b387f7f5f
BLAKE2b-256 c20cc02bef68712661808df67f4369accfde6a4b2569fc19532c03541be045ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01419bea969dea1d54a7e17c8db482ac1286e1af91df13d7b1c53b44cb0ee488
MD5 182c82336e0f4665564c643f9a87be5c
BLAKE2b-256 2b62c8ab834898512ad11fbbb7fdcd47d37d068fb4dac853e8b1040fb8fc04d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d52080798b12c7f86de4ef4f81a1c809494f8b373d680c39c70b42d01674303a
MD5 850ba8dd2d657d28b20f36dad7398629
BLAKE2b-256 180e0e76a1be32e700922634ddf57472ebc78a5c82e3be3d64613d9640ef60cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58264c3c6103c30f9309ee59518ad4b0ac3e0c98b816943f833afa73eece287c
MD5 e0766199381d5540936b87940bf15f99
BLAKE2b-256 7214e2b2aea6a9350cbffd30c8092938cd71d4cd2307ccb5a9953b2fd0a065b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b633e77fd57b0d28bf1f1843ea4077d1511dc5d72b51e6f5340df597d85c108
MD5 1c45d1381a690b4760c64d9f4fa901ba
BLAKE2b-256 20055e0693433b13a605fd1675007db4b3ca45753a49ae388b5e621e105aaa69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f21570ef8b96d7619ff3f3550fb21c238a894a4ea8cf850861c86ab0b146e9a
MD5 594a24f73734e16d4e31d62a143dc621
BLAKE2b-256 a7ff536e2863a69f37d7115c208c5164ff40292247fe4d6838512584de6528e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec989d172ab19ee09fc15db067551f0a62a289bf01e8e80075b5bad75fd75f1d
MD5 08501aeb6cdb68a5a0e58473027c4f60
BLAKE2b-256 344a0be0a6ced24ab4081ad18e97bd951c5d299793217cbc9396824c9262ebae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b40be341d49ab3e548c37b5e9b2636b561ab95920d35222f391fba64b22c295
MD5 ea5bcdc1d4980add274b430ef78554b2
BLAKE2b-256 7ec8393ee0931de07a1ceb0e96cd22050439abc72aa520a43a4939ea1ded19be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68f47d126987372c68c5d3978cca2b6e957c0d9ca7f2385bb3478be638b1e80a
MD5 419ee07cee47c7bf2a4b2d6d22a1a718
BLAKE2b-256 6ee4931c89ee2ccdcac34672d4a3f8d547af195ee804e92b9bc414594cd26f5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92063d2b1a33e5991f9732f5ebdf98e8ff8257af212d9f86e11385aadbfb6aab
MD5 0b86a5bfd1c38496f03ac8d3f4ae165c
BLAKE2b-256 626bb0974ff8f0f10fe1761333c497c5180f69f47635cd635addff0845de399e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a70a86948c28e329f4043aae9de5f82222a2271cbccdd3f9642967f8afe0c6d
MD5 ec0c8e99f61102ebe1a0312721fb90ca
BLAKE2b-256 dd1ee96597bd366157f5fc2ddfb8e74c16c7be2efbe51062669cc3c4379c0fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ba4e50c26eeaf66ea0868ba4c21bf319ac19058de461bc6d084aefbd2d16761
MD5 30ce8eac4e40111adb09cde65c540126
BLAKE2b-256 1e5e89556710e972627fc4a39278ff00c376d1d8c77544619e6930dc743a25de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2bf0422d83ab5c622b06b77f02f2bb2a828a80fe646e9e4442d3b50fe013f08f
MD5 b3f200f2a122365b3f0bc772b4625c49
BLAKE2b-256 57e0df41fc8f98552fb1472757d314d05da4f7ab51600165bebe5f69926e6c47

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ca3f41a78aa3940241ea38fb85623afebbac8c7323d0aa6cdfe4db98c4b7f278
MD5 cf8845cc005e2c308b4dd7e4fba16743
BLAKE2b-256 0f74c0547ff4974e5f1dbf3c694541e787e9d1c76cdb3fdc953428cbdb241a8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b97e849968fc022b179b3b74689108daf5e81c57117a6da2c4d838da1676422
MD5 3017c3814d4270bedccc92eab0a5dde9
BLAKE2b-256 146e0a13a1f213720a32d054f8b862df9e0018c40188f7bc8ee17c15e1897fe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 155655f43ffb50fdfd1ffc19d93582f4bc1170e6fd84b4f940ae868e01682f3a
MD5 0dc697f2986a2562dc7d54bf8eca7676
BLAKE2b-256 405730dbefff96bf002839cfec86a28378470814e214465c4b1c63c20958ba5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63df6913e9f2780519d94af7c208831e8814f86a34779018229173d82f5062fc
MD5 d20164f9ef917bee4a42e90fe625b603
BLAKE2b-256 36070a7c7fb53418bc76f12381d90c2039eb5d36f2ed88d5783c471caf633637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 878ba31057c865452d0bcd88eae8a65c491b2c39501d93dd13acf387be21ffdc
MD5 93b92b67dc1ca8f005e4d1a82d19e180
BLAKE2b-256 7fb713a3edb65df47a6f2973f93925962e76bf6447b65102d48f348f8d997202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa824c80f678c6fbd508caa5c610693de978c39cc5b785e90d953a3a764b89e9
MD5 78ab48857512b95e416abaa8bf3062f4
BLAKE2b-256 6e0ba4d781c6f1d78f0ac7aa7f6a527e422f99f9d9055ad8108cc7a2aae66a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99b6d1e05bf18a1dd646af8710977883cdc1f0222e79af976725796e3b095c31
MD5 cc478964ff5e5f168a61ddecb7027050
BLAKE2b-256 93d21ced19fb6b6c7f6886a8b408b427d441ff41187534f8b5fd7eca870b3cea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 251ec420c595aede4029d6eb6c89671351099a891e4eaa3a13ce60fad9b234f8
MD5 e42d9a003c1f7c5e79ca9a0eb5d4a2f4
BLAKE2b-256 cf313cedb8e5ec0ba0574c6ac1b67396ffeb95c011e8c5b4c35c4e711425d91f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 339f6a713a663e98656147b486f635b6bb54f98d40fcdbafb997b85243a5ad03
MD5 4f955182ba712cc2d3c101e3441593ae
BLAKE2b-256 205b0abe54078c12218e5d879f15120591a0e49be4b1bf6eb1850dfb3367b3bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c443923bbd1eba94ca72939e817f068047fa7f4a67455be869bd53e91febf70c
MD5 7569c7e8728f2182da0fb7f8e761ff22
BLAKE2b-256 3d1c271e52a50e9d5a22f76e6cd927bd1476858517c263b7d6796029dd830576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9b47f0ff3f7e26f7ce2d364e391cfbebc86eea984834156a6ea90c13679c096
MD5 3669afe7d5c02951d16bbc09066b5d2a
BLAKE2b-256 9cae4a3e7bccc05a7c5dad87e36e1d9b636a42671e64e82f60e2c04e8daf8f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb26f55fffaaf090212e01726b6318c059024d48eb79ffa9fbf7f05ac71714bd
MD5 e6a84ac81765e4c23f940742a76c974b
BLAKE2b-256 007b2e94506e58aaac5c7fa5c69c19fdc11e7ecba5279e2779e7c22091670969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b96dee19d78e03bc33270861cc29e8d626437447f1fd894a96af2a237e0d48c
MD5 2ad0a39cab0541d1d67907dc32944175
BLAKE2b-256 5da80e39e25091506ebed374fdf2b12f74df925446b66c27f0ad0b16b900c6bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58151ffe445ec4064402f5c2472f9795cb91bd7ed382d09c8cb73d64cf5d61fb
MD5 e3dd432613b27995b12a9262a2acb060
BLAKE2b-256 945b87ec7ae0f66b718b037a5e4de8700a1d363ef28b72c007143ed0fc5c1699

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b41c7bb1413a6bce8dd56602cc6206abe17e39fcea322db60e34c742621318e
MD5 d6b987fe60a75f1a140e4550bfafece9
BLAKE2b-256 299c16610d523dbb1d0f7d5104763e4b56d542c0944c2295d7e0e0280c6181d8

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 625bf66722acda51682cbbd4d9e0787464bb542526296f032b511a02605bb8ff
MD5 0a882b3f0929dba06888b2f740d6f1d3
BLAKE2b-256 54d25a6c93da710a28fd3c3635f20c3f4d390786d81b8fd51520a58e70aad4c2

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af4ffa2d22188b8a846dab9e52edda9940cdf3865eba3899cf991105a6846981
MD5 1cbdb025fbf12c93bc41356dbe8eb720
BLAKE2b-256 27bf4e37291f5aeb9a63fe7ff1d45f35a4a770f08224393f399e4f12b5e56754

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 956d07c90495249beca970b7d7ad5d8048bf6c4481a49769bc427da378e7dfcc
MD5 bce4e1356f4e25b01c0aad3960391cb5
BLAKE2b-256 c55ec818d7710f949340e537ce8e1d9581a9c9a27bdf5e7ed2120b5dfc4cf8ee

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d90db8c0bbd701095743d13bd59460a7bd8273169f93f868bfb2d5f37dd5c93
MD5 cca76f5077116663a2073384e78e685a
BLAKE2b-256 91e2562b4046a21e3ffdf503a756de4e623778e680ea1a74492e3c5bfc03eaa7

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 955c23d6461cacca94bddefdb0bbf51911688d13fbdd1748227912fcad816cdf
MD5 c32e68b01b3e2d2380a92c2403a88519
BLAKE2b-256 6de6d2d9e5931fdbdba18efdb95af91871a45058b1059cb5e755d94008123d0b

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab1f1d9638c0212fc77829f496de04f29b46a8041cb327c8ecff869ae4855d34
MD5 3f000b32b973852b08f8462896710f44
BLAKE2b-256 a11cab3b843116978713506f97809875eb73a81b73b88b29ed1afd4611a70e00

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file cohere_melody-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb245ace9d53402063e71548a14f938db7b8b96a5087acee054faf36b9d21a1e
MD5 29168e65bd01f9aa09663314557eda19
BLAKE2b-256 263e85797e70de7f8f4b659ff4ae07812120bbfdc6f451ec69c04fa80941708d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28af22a343d933a693b66d64c992dd69572506f0a0d27b2ef9c42a6e4f369fb0
MD5 ec8a5a422e53f342bf811864642f1212
BLAKE2b-256 5cbc371edee1e2a23523766a7a7b17671a6b2e4778f27ba9e5fda446fdef8757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 300823af801978b5bfac2d3fadcb338bc3fdda9083e8d3d6f39cd5d4cfe2edb5
MD5 6aa05c892652442a1b9e8e2dce1f4db1
BLAKE2b-256 0bdfc3277dcb01e64bbedf1be7ee44e80c8458d8601729358b01316f971e7d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f72e3c1d4bbe417d7d5fae7dc0c994393ac7cb23b3fd76ba1f17a87824a54fe8
MD5 909ab1c732cd81c52c28f177350b0e18
BLAKE2b-256 bb25a802fb7c267ec1f1dfdbef621f0e7be24ae37488e8cdbcc5bde35565f5ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25df3786d7fb6b768f283dbef4518380fdb57e7ea7eaa7c6de7bfee777e3c932
MD5 8ea6375a4e6e69c381cab4ac8cc592b2
BLAKE2b-256 8dfb69d2e062909c97d7bc15146530a26bb4e5fddc945c229a31d1ca292fa407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5f072250937932f130b96f21be043a9a1be44b5f86a6ed82b9c01bd3fc24be0
MD5 dad552360673a590326257e0d168075f
BLAKE2b-256 14642a3ca1d156a5358fe7b12f5ee01cbd26aa7b9fd54601768ebeac1cdc2f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48e665d0e2a2123adf4af025785b5b613e5dc2ab24f1a723a44e7ef05adfd52e
MD5 5e0afcca0f52ed8957a075115f1919d2
BLAKE2b-256 847ce4428f154193ca8ae0cc341a3719b570d7bbf37b256adc2b6c60d72344db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9cae086695a60fd9c8b9773f5657c0979fba94f5d8237d0fabc40e53ef1c248d
MD5 9aed3ac0c1876893ee732ddb694bfcf5
BLAKE2b-256 75a37a6f8d3ffdab5c6d9f03bbdc87c152df68dc9b4fd5eab8438fea4ea267d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c70920553cb8f60db71ecbe5fe0e80c0b1dccad0db373def598b29a8af872218
MD5 ebbf2492efc18f9a4b844a6e3d940b82
BLAKE2b-256 2ddbbd884daaf25d2eed8e16d66a6c4ab09af641064a2e982125f71d04c838ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10dc9d151db3423c5f80cc42d6160d8f7d2f6d7de0570aad9854f46f7b3942b6
MD5 78ae38c1a6e21778cab05271f294828c
BLAKE2b-256 d741191b0e9b69da6c7fb3937742960d50e8f19e619c638636b0954132796b80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b1bbee230fddfc8b9e0c9828e0e893e2110272dc1f182c545daa8d5105814f2
MD5 493a9c30b9fd25b0462bb1bcdfd235c6
BLAKE2b-256 5c8898f705d5793702d8dba5a4cd10ad61971fc578e792ebd92333a412134c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1bba72241c9c3cdbe398e6be15bc3bbf01a3095b7ea23bbbdf089e7cfed3f93
MD5 026d550d5726b9a21101075f0d881be1
BLAKE2b-256 5606fb28b7839277873960eb4b3e063c891f48acccc8cb429bda7e7a08265514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a90cb5360c447bab613ccfb9844a0847e4b220d5670bb5b61fb869d4fc695b07
MD5 a0c6ab820f3d6b3a1fa0311c6a57c0df
BLAKE2b-256 825f3799324ad0a2de2e125b8dd56c79710defbe47124f148c87b0683d65ade8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8013f9ccd03607ae167fcf82362b0146da83eb1c11c8da971c347db1d278f5c
MD5 e998d45da26b2745bef070fc2a9baeea
BLAKE2b-256 012bed47962e49f23071c925c93c824df07208baa8c2fe67d4fc952b7d0af962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa73549c2a1f0b5487a44d9d211a93c12bda49adcdb163bea7cbbbfd97c12db3
MD5 0134a0740a8b8a273e5cdefafe9d7c11
BLAKE2b-256 1986e959fd849f3e2169b28e44f2c08eff5492ffc125bb362819e5d8f969e016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0e045b9282c33d40f7fbb1da2d5296f7b49e2b166d0abac08a6200310fcbd46
MD5 8705e697f6a05e2a341ca774f523c9f2
BLAKE2b-256 1b8ee9709c7ab4507f270cee0758ac9f3937f03a89b8db77bac030c9cd60796a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42b265f4d2213896851c0c5e100d5e2dfacd347f86d7e917eeb9622b075809ca
MD5 1410b0c7ecf4feb054a296712c7eb0dc
BLAKE2b-256 6e965709bab91ed0d3faa8fc20aee732a1ffb76470cc09f4dcec08d1e3c588e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85760cc2f3752737c7df4c671af343a720b1384817b1404b04a02e7ea7bca561
MD5 57cdb2fb3023040853064fbca3c856d4
BLAKE2b-256 c7766c20c891fae840d1395cbebfb777ca3c5a3a252a9fa96b30106c9e8b2543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0cedb2177fe537f1efe70fdd628bdaf8fa2924b96acacb9d208f03613deeacd
MD5 01fdf555434d50dbb7fec7c4df40b9d9
BLAKE2b-256 4ad1768c2fda459910521e815298c6dbedf797a476e9acefe717767e3c85ba32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae016f61b6f8c3317c8b0c3e62dc43d08eaa08cb0e539869dedcf766ad736b20
MD5 508b6e53685f8c2ad3dc87884f9c915d
BLAKE2b-256 ab5a6d0610f2b47f01a7fcd314d91ae6f3703fb71e1c7850c8cbafb996a6b7ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b585063491fb65302d8fd16f1bd52fb1db42e9a25f61b0773e8bf6a44d97eba8
MD5 f3bf9c25640be3e93a18227fbf438991
BLAKE2b-256 c84228b9d24938b0487f6715abc5b2170d2863e46bc69704aa50fea97dd0c1ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4def2cc1a8faa1c5ff2ef10e8686d00044b94d936c4d72618a876835a2e7a9d
MD5 c9952cace6907700893e51916f9fd87d
BLAKE2b-256 96fe59ea9d4a027827ce57b99cf79ea2dd5f8e42b833674ca4ecd90957301f19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a37d98a850d22725f3ff0a7e0e3c049870a72a7acc490bf798847e2ce0d27010
MD5 31de10c8c576668b26fc96f08bbcb169
BLAKE2b-256 6fa0f95ed96cb2c7434c758eabf39b149cd6efbd34f5fcc73eb544faffadb759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f62c1c7902e2c40a0101a092c8ca69155cbddb8a109776c22922539c5b750283
MD5 5ab94dc456b1295e30dac020a95bbf18
BLAKE2b-256 7f89e17aa6fc8ad02087757ed784434637d90b8403b53f37e5bea0192b3b5304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39cd10a9f61b579c67da8c7eca4e5cc42bcda026dcdde40f4239bac373534d17
MD5 960c8e097666ea9243b4360f7c4ed344
BLAKE2b-256 89d4e19fa8f0b363dee52c835996d17f84c5f044f70ad9ff7060d1f7081c668e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 879ab562695c3f9e7060788f40bc984a2f49f6a2f81a8567c167741c03c3d18c
MD5 77d4ba6663302e7eb66a420ec4ece2a3
BLAKE2b-256 8eb0e406b4747a3c87ad6d40742294f695327ddf3801030fe4f8808a693e6527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a7d857db2d7623e07f2528629fd136f11855c14cfad6e8ab9cd31ad45c9f755
MD5 1e33006fbf42f5c285657082f878f121
BLAKE2b-256 81900c38c0254920cd12946594bb9f255d429516f5ffbb0f09242937f55ad40f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a24e551d47084c73ce67af3bca3b8c15ae7454c306572cd9a97e2d8398a312c
MD5 e6232c8765e5505712b4950bb8e11366
BLAKE2b-256 0c0b21fcd02a32b046d372760a2bdc4518aed513cdaa65c40f1603ecf5c5abdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d0000cab82f7b932dcbedb7e55d64a6051dba44edd3b05c65af3274f4eb9001
MD5 3fc57b62d7ef489415ab29d4353ed2d9
BLAKE2b-256 c7300580f1cbaef0e8155c900777bab5a5a94339bd7e5d4c3e92e59e8d40dd8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be958a2da03d40dab59e27d9d17d71d21e5e5c9370ece91b1690460829854df7
MD5 b1b060f115d5bad90d0a6c83c22a6784
BLAKE2b-256 54a6f5affe9ec4ccd92dbb692ab1bf4000d04de2bb77bc45e516e0975947dece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e36265656d14decf499b6daf1b0aaa86d1534968c9a0cd2ca013c85da055057
MD5 ce74e2047ea4305bc64b3d58626bedc5
BLAKE2b-256 a85a76215c8c20eaeffc57f5096be94da45f6a6843a64bf61e0aae0478e18607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f989821a78015aba9a24684f1d19bbb5d7764efd3d7289fd8fe89dceed84db5
MD5 94047cb9cc28edfe82b2e13b94141998
BLAKE2b-256 00d03854eff0f8dc2900537437aabb646abe5b731cca0d5876a7b90910de055b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6b78124b7dd6d7fa077702e19092aba38ae8c665436960a120e95942ccbf037
MD5 097eed208291cf276eba5b4dec2c0b17
BLAKE2b-256 6b7f4a741c04ed0a9b2b525b9633eefabd1636ed9bf0a9fe3bcb4590a2aa248e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e7e1337a2eb90be762512fe7faedd72f4b72dd469fe8eeb2c4c0ee0132280f1
MD5 171ccf9b981da4291481d85611aada58
BLAKE2b-256 2987c83f54091e9c42f0c890a4cfec1e7e66788f680418f63275e74585e6c183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a4a65f758ecb9ef1701a300cb2c9109064bf6a64ca3bb5f4da2df10c3a24e93
MD5 5f5aa2fa0859d6193b6d9b764bfc1a41
BLAKE2b-256 52a7ace4bebc8fa90e8f12bc96e5dbb072744a2af36bb644b8deb267c29b2539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de67eb595ee00e046c88db530f0006a7f788f8e6fc223e91b5c410b182eb4cfd
MD5 9cc34419bed1ea737d3928f513116364
BLAKE2b-256 06fc31ec1b3d9862f8567d5a3fe94df1c5003254f5e2e84dd53f074666a2bca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51724f9d79ec5fe8bfba24d068710fe24062c206f31fa15247886ad1b222b044
MD5 621ee73fc21980950973c68932b9f55d
BLAKE2b-256 89100b253020b7a1abbf2dd2328fe67a0a4372e1eb68449b5188f3e9b4709983

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 302e5a870885ade3d0bff8a96f647c6fffc8d5e18e0e13d0cd5585d1a19a8ec7
MD5 c9f74193504ec87b653137106cd8fec1
BLAKE2b-256 89478bd2a8184e3e905b5b10c2a9a014dc1713ebb3bf3d93e7343800fdabe228

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01acff0d3d300db60ff51849f08ec1677ea63c04e1f4dc38f75230111f239f0c
MD5 9ef86da37138f40ce128f6557706e2fc
BLAKE2b-256 abf279bc90cff531d0dcda983e8a473c3a1454008279d112ea6a74ed61f3dc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97fd06c97e1f84347253edcde1549bc7553ff3db5c64d2a26b0f462d6e688119
MD5 05e43a533d5635b2c4e00167a1fd3787
BLAKE2b-256 deab5dab5db407558ad8f99f5f0a2b1d7de79440154560fa9619196aea56430c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77e64d86dc9af3b931ba3f67181ce97abef089efa37eb80da05fff3ddfd82403
MD5 82faa05696a3909839b85c188c3d4065
BLAKE2b-256 55965404ad38e392abcef351f95ff16fcdffdb75d1e22d43d6c4f2a85335708a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d11e366a97b112ac9ee5470b93ca86b5fd4d10adac891c50d1fafb050e2e681
MD5 f65b0f4d63f399d69090e65b4cec89a3
BLAKE2b-256 df637af420565e4084b659770be465bc77a97beb2cd949f3ba5100fa1dc3532c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e1b32872abd00fff77c458ae4783408049d293af16530d2ebf4e4e7400b0cace
MD5 a24f94a40fcf0343009e89907533de42
BLAKE2b-256 8deda89c31159f2757350bb7b5424d3ec1472c271a793fcb12150248c165e1a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 425514c49a2cd92877d8d54a39143eb4b3749c46e857d4750486d03f17d10636
MD5 536ca22b5fa252cc7873199edeb02955
BLAKE2b-256 c6d66a96fc01cc88fb906db76fe4e59e8d5fd694d7a017287c9697b109b36d6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7028a79e4df28427f3e26dd4eede366948ea35bf3e088b52e9fa06f4567c0d6f
MD5 ced2311fa503fc77c1650ebb137b59cc
BLAKE2b-256 edce60d3c9d5a82b3e2faed5da336455922c779818f6385f9f0dc1522b3004b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 141b63fd1198246ef3d39f7aa74fb556eca60a9f6f3b93fe6d5651fd2d2a53b7
MD5 c8b7fed61dc67470b42dd2f85021baa2
BLAKE2b-256 b8e63ddfc5dd025d0bc75e3dd60d77765f80cc58c4149e27e318ba084c508282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8628f6f4288c04f1b65eca48199ec8fb70b05b2e2d99b89493162b1df14abd3f
MD5 a1153b823e6da0f3807192f732464cf8
BLAKE2b-256 e90924f0b1dee829802816084a540fe45e629dd804f95c318aa9fd45c8897bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51c1f086cd80dfecd1e1a0ea6a855598f83a73509e012dabc6bd73e643e81bd9
MD5 fbb68eb319104546da4a61ed1a4f334e
BLAKE2b-256 ccf601a465ed55f798e92213b41a88feb055d70f4a4d372a2081e9c5bda5bc1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 486515289e361cd652ee5d2d7d81830cce120f2694b788e493173b12d086a8fd
MD5 d54906e25e8b9b65dc0a8c12704ae649
BLAKE2b-256 e1332fe2ad9ed01a3bcbc3596aa7c2e6aeb1121b3ff5177850e82f7822b1e84b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17f4d18fa6b8318e4f63c6a9227c8b383b7cf9ac325409a545fb65ce11856385
MD5 ed6c381ac891defa3371a941c4f7947a
BLAKE2b-256 13f09b2b38629f4a2190a184f230908cf3853c49714ef49b4fbf5e073b883fab

See more details on using hashes here.

Provenance

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