Skip to main content

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();

Parsing vision generations (unary)

Parse/OCR models emit markdown interleaved with [visual_element]…[/visual_element] blocks. Use the unary helper (full generation text, not streaming):

use cohere_melody::parsing::parse_vision_generation;

let parsed = parse_vision_generation(model_output)?;
for segment in &parsed.segments {
    match segment {
        cohere_melody::parsing::VisionSegment::Text { text } => { /* markdown */ }
        cohere_melody::parsing::VisionSegment::Element { element } => {
            // element.type, bbox, description, html, ...
        }
    }
}

Go: gobindings.ParseVisionGeneration(text). Python: cohere_melody.parse_vision_generation(text).

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.

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.13.1-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.13.1-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.13.1-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.13.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.13.1-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.13.1-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.13.1-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.13.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

cohere_melody-0.13.1-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.13.1-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.13.1-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.13.1-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.13.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

cohere_melody-0.13.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.13.1-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.13.1-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.13.1-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.13.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.13.1-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.13.1-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.13.1-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.13.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.13.1-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.13.1-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.13.1-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.13.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.1-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.13.1-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.13.1.tar.gz.

File metadata

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

File hashes

Hashes for cohere_melody-0.13.1.tar.gz
Algorithm Hash digest
SHA256 3232c0bc99416cb2ef69970e61a497b99ad45c9db1c9d9742641a64cfb1f4b3a
MD5 af4fd510f8561fb15c6c631d93c2622a
BLAKE2b-256 2b2459d995740bbacfcfb7bdf9a315205e8e06628fd5d97ce1605022fd650382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38721fc8f7a183081d644768c5602e98975978b9bddb87c28dcb756279a64a79
MD5 15ded8ab7b0788cc815fbdc424d2607f
BLAKE2b-256 f2f8d96bf4657f44e981e96737ab7ee3cd0143b4187b29c3c5ef8a41ff23d020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 327c6a3b04cd6113168cd3f10527b382fd5bd83b0564c5245ffd0f97293a24fb
MD5 45607c2bd987ec443c8d06689d2321b9
BLAKE2b-256 423ce86faf650021a832384aa34e082a68e870bbf792441e599faa53d8a1cf14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b4edcfc19810fb80d328ae7ad75f6ab76fa36d4385bab29b7606a5d378d5315
MD5 04b080c70926509c035f948bdd6878ee
BLAKE2b-256 19e09217f6e6e1d584820871f299b193352006dd734a8ab949f44ee51efdae9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee710e8f391c4be4ac8da10f5ddfef406f3c25d1e85fc6f76caa7cfcbf4bc022
MD5 2d2325c7848e1d02557b3ad363fb19dc
BLAKE2b-256 6ba107f00c4ebd195aa661a96651b0b535be29b6b6cbb4a02f45f4ac694c980c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68a7a02c7fbaf15ab955a6a72215b43149d3263b71e913a57590576072fa496c
MD5 dce3fbda3ee184db15e07e1c6914bc8e
BLAKE2b-256 bc994b98005c3ea7c2b352d1b0ca5595e98a5e578a8b2b49fcf00705e687d86b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98d4e2b781a99d7f1d0084134908a36025cb7fbec6001941a1f9c59ab60f0121
MD5 44cea6b08519fbdee2bba85115900596
BLAKE2b-256 265f170305ecdc38f8343fd8f2537f0a6a8329c345f9f29453775b40e03000ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a43fc24d7483c2ba07d4aa7cde19505a09b07674be00def19978616972d2cf6
MD5 d9a096f667387912ed69dd42df66c790
BLAKE2b-256 a3aa924ae5341fa61fc11ced259325a665eb62612173af83a51776dfc4ab9d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 928aed41016ff5e35af307d914f19e5d2ed9f57dd6ff375aaa3281b1aeeee0f9
MD5 072e5461664898738ca5b9eb300bc20a
BLAKE2b-256 5027a30ed425114228336d2741bb1e4b79c6aad8beec70e602ce6ba8f3e81146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d062fdba9d81e7eed07c29b25e2d48e6911259677d5ea0bc18dece42fe798119
MD5 d92898c183cb7210e91ed1977fa9b190
BLAKE2b-256 b13cdd28e78821d4d613ba8132fdac5f583a52b1892f8f6064453415c0d234e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1e20bab8c956dd2f3fba48f61e7fcec4325b7a11f0a65edb4b1387cc6f53618
MD5 1036b2f16640ac59d45385446a1cded0
BLAKE2b-256 68727281dee338c3e2642af242a91e3db38a8b9173bc36dd9ff528cb3847896b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70bc681b10a2dae75ee92d23f8577cf56c10b3c80e58cbb3de27f6662360b24b
MD5 428b81dd08a954c5a451cd1b87d21bda
BLAKE2b-256 2ff8d76d9bbba3af0b4f11f5021cdc0cad54ab24bdf2f1ac2256fd896631122e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b0c8771d40876d38e7c3dffe2c8ad1165ae60a033698625261a8f968bc21d32
MD5 b1e6680e6f76e0bea89912855ae6f588
BLAKE2b-256 4cbb165de9e2eefcba3f61545d30b09683a52bb1ac4f3592e3f0d28d9c7473dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0fd78a2daceb6369c1a05f899540c88b44fb8ef2d351b4915ae1ddd9cddb4e92
MD5 125eccca11e286390cf3c46324b59aeb
BLAKE2b-256 4fb058709a5cefea997122fa714cc04a73242482af2bc437353f369d183c8baa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5991594e7dd855d2a36104ccfc4e7c3f7b2efb63b3de426d50d93eb9c8ba51e1
MD5 d6b745f9efc6e8fe4bd1505becf20463
BLAKE2b-256 1e4347db83a15c4514c45bbf56112ae0278412174a8a0cc1fe3fb373d697206d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 817e94e85ea04aa4fab2ec81370bd62877dd373a815be827be9bdd259a67afab
MD5 acb93fcf6f555dd36b52bae1d6ddc617
BLAKE2b-256 cee92ec47cc365ad09ab4aa7071d54ce048d0a49d15880964bef527ca885dcfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 267f3fc3f4488e1c8f2eabc5d39334604123fc5c6867b243384099a2bc4c85d8
MD5 983daebd44647e985edf27238bd87e7c
BLAKE2b-256 fac1bc7de2fa68c2d6e043f3119a5c5ca642aa215e9fef551238b1330176f0ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6871765fda185715a4f8b7e62dff144e699996abc25ee1909c611085d3484201
MD5 18ef80e59ecb05db49672c8621b100a2
BLAKE2b-256 a8e99347df7d8e8c085417728d81bcc6810a578ef23799e7332a42e1dfaf49f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7bb31b74f1b194f33f51d636093acdb72d4585417c92c7ac78a83c916939996
MD5 8192c5d7861bc456a40df3877c0e8c8a
BLAKE2b-256 3de0804d0c880566ca48231c658e712e2c8dc319379f59b06222d34946d611f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6af83a4ac7648d40fe1b10cf1bf7245917690245e9d4ad96428bad901c7c785d
MD5 f28f0b129f8f57c8138474617919e259
BLAKE2b-256 78ff8db42ed7d48d3f8f304310f5e87cc3f928d635d1b1d3cef6e625b05997f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d8a2974a46b0dcd509ce816b37f6fc6310f2b2147b9c1712c85cc258dab4c684
MD5 956a7288f5b442c5ad4436b930c56c76
BLAKE2b-256 4abb5a10f191549bbec8e180494d378b3144ef4b096c43169953afbedc8e9be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9f0359f29aac0fdba5ccf3fd96170ab8f5afcccf4b0203fcabe088a6566e217c
MD5 bebdd23a82f7fed7e7e65fbfeb2cf959
BLAKE2b-256 58b1c35ee935f2da6ad2c51a4be3293a9edae33355a8d878f92453a064616218

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f3a30e9787a18e25f7db2aac826733a5db55c7cbef37b2d0bcb32d02db11225e
MD5 f86c52bc8620a85f0f9ede5bdf962211
BLAKE2b-256 b6212c6659512569c90b4623f49c64258a90d497892f4541d386f80e3c9f4109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ec9d101c0842ce6b44934d5545c8ec5710ce9cb86da05b1065f2fe5acf31b73
MD5 9c5c96fb75cb198a3a28087b11ac1c6b
BLAKE2b-256 77f43f65ddb598de0cf017f1882b6664806909842c9f36c935f46c6f92d52980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 162b446a788142d89415b5be4ab534b267c1d3f9776fc9cce7694f443ec4ecdf
MD5 d3b9d29de692f77624a7a6d4d4e23033
BLAKE2b-256 399581c2f8d5f5551418145d956ea00493ca8145d654627d7215451b68486e6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8064cd0f7bb5d92657dd0644b0b262d7ca10224eb5b6b00c91935a32f5940dc9
MD5 50258cc016b7be08169fda03b6005306
BLAKE2b-256 5a914c46e60fcbdb25e77c690a3fc9557988d469fec701ad9aacf6bff1555388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1a0f960122df3c260965c43937d879463019fc1141bd67c9cd9499032ad8bc4
MD5 f8e29e7ffa7c5f7d1e25d9e59a3d6c36
BLAKE2b-256 12a2ecc8b241416dd298cdbfc668efde0af5a78611c7e9b702def8b103350546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de1c734f52b0fc925d98577f47f659e4d68c7a855d83445e17e81fc0839907f8
MD5 a393fdaadc2a15c9c717c34fff1303ed
BLAKE2b-256 076cb508ce40e960602762df6a7b1019e46e2cbf4905583e0c6acafd557a930e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64622b907bc2977626e2cdc59ed0313a9110db4a63eab9dd1733dbda79fee7bb
MD5 51f2b82d6d3e980326e7ed91dabedab1
BLAKE2b-256 84d59e626cd91f0f67cdd67de686f2a787c75fb429c639ce788f35450df4a2ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c2d15d8d4f787b03560a2e5e8c32968e3e39f16c198b6114077ab652aec6aa5
MD5 741ccf6588af17708e9b1fc42d57fb96
BLAKE2b-256 8cc30d70b1707611c45fdfb24b9ac216b1c4562523089390dc067382a10aefcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0c385e9ad9ccf548a8ad19a71be7a6cf8c0d694a49dff7c4cf8bacd26fcb800
MD5 664da370c3f88ee9bc1831f58e6cd30a
BLAKE2b-256 b103903fc7c5f7f3f2467cebe58bcd5dcce0d9e541292ec8001c5b539692348e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e4ee6d9bb26a8ceb7498329a9bc56c9c17ce1e17ef4dd8462e2a95f518399a9
MD5 32c727daa6c501ad69cbbeb6632b95be
BLAKE2b-256 90dee173a0b0c7980e37f44ebc4b012474ea527bcc36de81401548afc06959df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3f5b2a4c5809d8ed4ee1d27a46e811a5632696d9ef2bb5c93280f64cbaa188a
MD5 6fa8e6a1a9ec31cc66ce4d9fd353ce63
BLAKE2b-256 0f445b12c17f4cf0e2fe7dd16a2732a3fdc6fa98628a28e7af39839b55bf55ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d76b77c3826e53e90fe49e7381afb5e80e48c28e83cfa22750781020d5c5b3d
MD5 83b899523ba5c941289f2e57bb3e05b3
BLAKE2b-256 71232c5f9cb431aed2dcf5ee4cd6fd5c15bf3aab1c2adcec9c02a68ee580e769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38d6ad34ff40df50013ceb94ca7a90e07bdc0158e0a425427d5c1d0ebda89695
MD5 ee51a6a42715d7ce1e427d785f086b3e
BLAKE2b-256 ee3caf3efe6c105bcb0f7858bd61e26c1e98fdc53945d71d42637c8d12d02cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66ba9a379767b65b8f58d4b55e59bc6b64853637c951524f4ea3b628a1d58694
MD5 18dc73a849d762cc8e7ae7dc60148b9c
BLAKE2b-256 46ec8c8bf9a04392ec30a02107a1262a4d6ddf071b313835f82bd20920420653

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88820102d49f67f0a9d34af619917bc59f17bb7dde76cc0b606aadb79b8eef68
MD5 8dfc809c4cbec894d12a83de87a643e2
BLAKE2b-256 cc5ef5c6696a8451fc96e51ed15835fce77686e9234f533c6f5f53c1d5ea3e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0081664ffd664a335d83a41924afbea6b79e87b41945e5cd5832ad81edf8db11
MD5 b5f9f8f85218225dd3ff54dc61f0b6c7
BLAKE2b-256 6b83e98e06f267f68b7b47decc6d13672040fca1c7bd674d519dfe729e5f4f69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a1b9358b9803e5a6912dea49a43924939255e84d8e272ac7f034d252d4aedda
MD5 6aac5377892e635b28de2f2c52ed71bc
BLAKE2b-256 cd5b2fbffb1626405255200be8d20816ac033926f3b96ac8e3af4ef220e06d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9bddbe57a4b0313ec4fcbf87067ea6f1f6138fd9a4c43758232c4b4e873dd05
MD5 f31f37a784af5a13763e49aa219e16f5
BLAKE2b-256 2deadcf36dbacd411e782c6d6ff38a1e2084e09271d5baa4fb39405fa8e487a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 964320256dc9b1d49a672db2d14c258090e44249e74ce2a3bdd2961b3d03e4cf
MD5 076f5ce343efbf7eee38d8ce70c7038f
BLAKE2b-256 d600fe754c05c428822f9b3195fd45d88e94e99c58ad51e0f484a50989bb4cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5beff7701ed551ba297159d2216a643464cace0bd23a1a2836c047120f65b972
MD5 70bec8f914bb5f3631b969cfe9e0fee0
BLAKE2b-256 7b80ef831803337a9618857446969b53a743853c20439a48d2e55f7c58d5cc85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02e4dc312bfbd7ee2254fe390dfa040bd436cd165416c17dfc83a05173826ea4
MD5 cd4aca9312ffc954bfd0c34d6e29b7fa
BLAKE2b-256 37dcb4d55554160c7805a824feaa5f435c3cfe45a29e1047ebf85a4c6b5b05dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a509949f21d0b34f53e69f7ea970c83cfb8eb28544863e7fb613b03fd9512519
MD5 596b4e21a7d80d4f9f1b1f43ea377e1b
BLAKE2b-256 a7014f8e82b6594dbad3e3088000941c65eaf978ff9afc9f81020c102d1aacc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d06b47596d11f9d05ad11a004c8553405cf41dda4de2f156c6b7f3170c0c85eb
MD5 397abd6585852486b8f104742c4e2058
BLAKE2b-256 1069c47057708d86b1421f113d98eab7f7f79bc222b797907a715e636087d1af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9de0d994c870a88d1efe453c4177b0cb9a27096b6daa3c42f1a13533a5235a20
MD5 ea8de7702bad5fc0352d9553aab8f188
BLAKE2b-256 6ca3284127307b6bb51a265705ea1730049fb8d5b519f7f9b41532332185ae10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ef9f40abfca97e658ed65affa71bb0406dcf93e94e439f65454401c23e5cab4
MD5 352743e7dea70ab6edb2246e4095bcd8
BLAKE2b-256 743bf0c40ffa87017b0ec98106c0d6c0c5bd47a41a9cb03ef7fa689b99419407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2e2b849761ca2c1719a5d2198474358717054feaaf140d91878551d7e5e04ab
MD5 024922755103d878b07116393e64d580
BLAKE2b-256 290283e36d0cf1c94e579ceff69e638d6e8836e45d4c50717e1fbe3819d0c4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 14108933ffc221460927ce2a9ba0b1a6104e3b491036972c2e543ed3b3e8b77d
MD5 1ffac9aea9a681455a12bf13ca87624f
BLAKE2b-256 23ea5e2acc636693e63d009456c8b7796a6e9be9361279ad9acbacb41ee9e52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 741944482b122668fae53d3833217970677bd2461361bdd22bb178b4d62e1ace
MD5 279ee5868f552269e9764b0af8d9351d
BLAKE2b-256 29945f0bcea348da40e655297a883b516d2126624bf40645175d08c56918e572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1198ddf12c497099b64cd87697c1b1155793604d5c3e85f77b997e9ee96b4f44
MD5 366360d2421024e15ace2721aef21dcd
BLAKE2b-256 1a5e7d6a1b2bccc89857020a8a19ef32a1d8bba22480f6af3a3554c3c5b0decb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a19589272b39eeaa443c0c4ce60258092c5ee5dd01feb3a1c0b82ee761c9079f
MD5 8334d5fb50464cb332dbcf8b17d05265
BLAKE2b-256 c771dbd72d93b59f0d031381bf65e3352d71da4366eb646370743cfecd3f43d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45a7af8f1daeae8525cf5e85785e5fa02686f5d5c3f0eab652568e6d961596a1
MD5 86e3374cd1a62323931b4f856811b400
BLAKE2b-256 fc4003a5ac6a6b450c1cbb5c33cace28a2b8b4be085bb63751c85438524b178f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60b2aa27843efee481f1c3d48e5333ccf1e3ca040da7488e6fe86899ebe6d2c5
MD5 14a10eabf912bccda4e540b557ef3bba
BLAKE2b-256 eadc7b849082bfc4622b4bf186c2c70bfa356562bbf9287e2bf6bc0ccf30b919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7729b43061729e665a9b098af5d6049577bbc76b24c7d668504ea944531656ad
MD5 fdceada7a35633dac6971b68eef0bad1
BLAKE2b-256 48979d6809c2fcd9c6b8dba845011f21a592668afaf20e3b87b9a25bfd454f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f127ff331e5f9d773a4da08e7a185d017bbee53a01779565d54a2a1d83f6b98e
MD5 fcaf60d5043bf1e54667072f49bce33e
BLAKE2b-256 b5b967f10a7b9eaccf3140848a9a0039b252cc45b3decf6facd4f3a93226de12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64b21cda9c0fbf55bfd4fd2800707955b8c0fe95260b23d8379ae404cc14c189
MD5 71d46fcf44ade693725f191acf4f4653
BLAKE2b-256 1980920eaffbefad83e382d646094d45089de7b42804e7e9ce8c3c28e1044e25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35aadca4b6f3150e95745b35e1d55959e2f52647a4e508d8c8474e836b60d50e
MD5 93e48726872fc79d7928ef9cd439e118
BLAKE2b-256 11e2d8dc0da2522d0cf11412a6aa8db4637e58cb41ffa8fe9f425932b232ebc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9d339e3995ecf62e547f151e3128998cdef20118fc47db0e91b3eb30ee3641f
MD5 091e427c65f9a1e93ced2cd8911e2104
BLAKE2b-256 5d4d2e6ed826cb133296b212f7efcb1f1270d5ea56308c7a4e932b414b53462e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d00bcbe1390eecbf66540a8bc18b9b6cec709926668482dcdadec8196c89cf8
MD5 f2f2a1da6c6467190a22edf0d9f17f61
BLAKE2b-256 a28cf10b24750978a6536e0d3bc2c96318638c35f59f47e8da422f279cb23d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78d930830df31e75f9fd65e7a80253a2fb7dc9b788cba89c596cd57fd713744e
MD5 3d1a17980a828e6a9af202f1fd3b0aa5
BLAKE2b-256 a77cce79da6086e4619bcfc55580d827098bb812c235f07fdeccc140f1c881ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 845792e582bbf796aca8cf885512697f898066f3c742038f2c5a9aab0c1e735e
MD5 8f5a9d1f3051449588dbf7243c0e0707
BLAKE2b-256 c4838a4f623578574a7da219a261d7416aecaf9d202b31bd1b1e318db5a78b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fa09fba2cf4db8e590a741c1ebd25aa669e31e43532683e4c53dd8cd7fed08e
MD5 9bd512befca86c9bbccbe60060d66979
BLAKE2b-256 3ab62eabf127aa6a3e6454191ca8f38ea45a9d7d5d600e874effdd5676ad77e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 343dd9dfd9be22450539db037998eb7666d9ed7928059160dafe8092002a50d1
MD5 b2f7a4eb91c33cf31a4189dedb134f5a
BLAKE2b-256 949c674919737da592bad9a4a529131de467c876bcf1e0d09f9e60b9e57a305b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73af51dede95cc032c8275b411523bb424a3d040f72dee3aea5bdcbdd94d1c51
MD5 5bb67e65e8ee8b79bd487ae9fa69ca45
BLAKE2b-256 0760528382018f5b765df437e1e70e04a049626b8cd59bc1605a398fe3e85244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 963ee908f1c8c902811c527027373996747028543ba2143061ee0436fe225031
MD5 6cef66beb5187b0b006a65b0fc6a037b
BLAKE2b-256 8e1a6bbd6437c395e17ad7f4ddb2e9a7bcc096371162b64781c2302541207f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19cd1187a62b9372882c84de9781d0e62f5b34f4d4758b617c628090d9f6c17e
MD5 9ce2f4a40b773a00f397a5fc0489858c
BLAKE2b-256 12c8766efa85fbd4d12840a35f2210bcf0be1f8830a2c86e203ec8cfb0436174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33d86cbfd84f801dc7a05467684b3e07ca152b1120346490f34586965377913b
MD5 920feae4d64ced912967cc09710f463c
BLAKE2b-256 8c41b2bff49ad577fbca75ee4b6aa12c9ee488d385c58ba24e20148d5a8bdea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28405059b91c92b4c6219c13acf86fabaf781061447cfef4559d229deaa246cc
MD5 6b93b6fcf8c4ffd776c29d81675759bb
BLAKE2b-256 064afc351f52432abd22f807f9d848c70d989de89450f419ab0823c35c352289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df0e93974c991a3b249fc153dbef7f490015e81f54b655e3f4f47acc968fd799
MD5 3b520e22b43e7a263c4aa579f71ad1f9
BLAKE2b-256 80dc4b136b48f50e938b298ff679fb8669b9c35e897f6c661808571f9df7627e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecae6483b50a8f158739288d1ed96cf7e33583edaf1782b47df84c5005778956
MD5 c51b8cf37ce721a9101dc21fe199b163
BLAKE2b-256 9c2bbd4b167db72d62144aaa7846a6a4d2fd6950e0b3abe19976dd605897c9e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 699fea95661c75e111b7dc1815e7a8997cda967671e353e45a3f077599486437
MD5 2e6bc9162dd6becf9d9d382237d3a415
BLAKE2b-256 81a9aab1b4daa983314954633364dacfc3d474799373e939cd147fc70dc91cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b4129004f018f49f06c642ee281bb8a71451d918e7b51a18700843abbedcfff
MD5 d63d2726984b4dead09b269ae151ccdf
BLAKE2b-256 02d3e374333fbb2dafaccb64c023bd45f3e1d9c33fdfe45fb33917e3bde058a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 717c01be174ba9f810ca178a5d469472b4b42d3f96c43fa6a3a68df24529098e
MD5 ff28f4914858b650cb48d112dbe81f30
BLAKE2b-256 485b259454d352f8c8318b89876ceba3368450b42fb2481e994899447766882a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2bca942f78fb29f57e08e0b2615bb5df110f9eba85073ecdde5764c752d74a5b
MD5 a6814e39b2ab9b80dc91606e75c6a355
BLAKE2b-256 ffc3830300039ceb24baba2f1eb82728c99199f9c4eb980b5fe3101a9897e828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74a98c6f367c8c7802e9bc7d9fc6ea09fc4444c9313701b02fabab084aaf0195
MD5 ef5070349e0d261f65db91b633d67271
BLAKE2b-256 844471eea6c74550dffc9a4e30215e92deab98db0072d8c8314b79a462ebf8d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d217b19f9ab856a4a5fdf17e7c1aa6cd11d97fd3fcdee6a24d2451aa38510be7
MD5 1cf54ddd9ec9224383d7708f9035e1fe
BLAKE2b-256 a80bddc24be4ea2cc61a0afa12d6c9b7330147907c5d71d25b4f11aabd53fb02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3ea85bf9085f190ceb5fb0070fc4d2b91a678d0f2c548da8da1e649fda0f05e
MD5 f300f9c255820802fcba2a948079b1f9
BLAKE2b-256 72d3bc935a7b2e9b208a316e64354b6af208dc86b01921d3e3f2d79651c2ae7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ff4b611bf808b1c8000ad670115a560781ee98fcaae303a50b99e291b7417fc
MD5 a75064204e9e56072d7ef9bc23ee8cab
BLAKE2b-256 6f0fb1d58e05eafced494dc181d70c419b289b1ed2262333140ff974383c9bb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab1822aad15f7262915666acaa8fd71d7c73c09fc5d8068c787db8d067061f43
MD5 78c67c0fcb1549d82a48fa66cc0fed0c
BLAKE2b-256 1755fb06cbc4dd9865621f6cece7b7530f6f8b66dd6d7ceeb175b2db319cd97f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91860d6d7ef5ba2b50f01a899ce1f975433de6aa36b7b78c28eeed298826394f
MD5 17c21282cba9fadcbd80f0f477394c15
BLAKE2b-256 1a817a62ae160b66df18d6f00eb48a733de9aeadd4d9c6b535b742c2b955bd24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b642cf3c3ae1933cdb308754c5d0edd13b603d57162eb2c6bcf5b587e4f8a61a
MD5 c58fa36553b7f7ba8ee928b4cb5a343f
BLAKE2b-256 91d073aa07ef85ca5470a0a4568c78fd3c94560107fdabaec0d6dd07f20a02a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fb6c856af60b5a87443783b5f76b5d807a9cd00e3e61faa46ab1653a3a32c25
MD5 c45d846fe56c4f683ef645c020bd8117
BLAKE2b-256 4ccc8d9144d6b07e3b8d7edfc2cafa032822faafa7f01aea09abb3b30adfa44f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdd07cc2f1c17f1bd802db44e92cace45953180fd76d1a433ba28c434264b7e3
MD5 fcd40f1ee6cd0903ef7a10928f229730
BLAKE2b-256 c738d82c5e0eff1c156f0d38d230af5a84cc3c7a2581cf2a5039db4860a1b6f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aeb5a9d72107be4ba8bb93980638911597c6b7d7419a470d2388ec6ef8758d5c
MD5 e39cc9d198f08d7ea94d7ded269d58dd
BLAKE2b-256 4e9545c602ef04154dd6d9d42c2ae69a683ed71fe745cf4befe896fc614c27e2

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.13.4

85 files

0.13.3

85 files

0.13.2

85 files

This release

0.13.1 This release

85 files

0.13.0

85 files

0.12.0

85 files

0.11.3

85 files

0.11.2

85 files

0.11.1

85 files

0.11.0

85 files

0.10.0

85 files

0.9.0

91 files

0.8.0

91 files

0.7.5

91 files

0.7.4

91 files

0.7.3

91 files

0.7.2

91 files

0.7.1

91 files

0.7.0

91 files

0.6.8

91 files

0.6.7

91 files

0.6.1

111 files

0.5.5

111 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page