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.14.0.tar.gz (9.7 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.14.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.14.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.14.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cohere_melody-0.14.0-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cohere_melody-0.14.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.14.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.14.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.14.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cohere_melody-0.14.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.14.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cohere_melody-0.14.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.14.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.14.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.14.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cohere_melody-0.14.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.14.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cohere_melody-0.14.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.14.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.14.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.14.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cohere_melody-0.14.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.14.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cohere_melody-0.14.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.14.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.14.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.14.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cohere_melody-0.14.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.14.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cohere_melody-0.14.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.14.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.14.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.14.0.tar.gz.

File metadata

  • Download URL: cohere_melody-0.14.0.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.14.0.tar.gz
Algorithm Hash digest
SHA256 b4463295587c4237fc7fd46df640a72b841d4084ff2d61e97e4ad55129ef9495
MD5 e87faba96f6dfc18952b7f46db0ec638
BLAKE2b-256 b00f2891dfca846219b631f85a640e0c5862a6ac8fa3891af47e65efa14ffefd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6701b1079023aca7818f7f2301305746f89741cb3df9811b7b2facb7920a716
MD5 15edfaf61d903f936767df2fb3d9e955
BLAKE2b-256 fd4d740063953b05c30dba3f7c98f3aa6597f562d7effcf8ad0fd8fa461d0b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef491084f3f4fc6b85e47ac8000ff89e138340a7eb484cb564e99eb8d64ff9f5
MD5 092985f19acc7b55b4d0dbc99db51219
BLAKE2b-256 12ec923c958bc6fe1bcc7a8d63bb36d5b48eb76b9cf6972fcb4ffeb9a944be0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a345f59b9f6b91ab625dcc733f83c187b68d918b61adac28323a5aa6f4f89d5
MD5 95d95cbfeca0e202ee2d505880338baa
BLAKE2b-256 c869607dd39ca36864b403f81b44952014120cd1b1addad1d676a86047ce41fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a598f6771cadce826dc8c6c28bb5bd9774c3695bdf04d61721c4f4ed9ea05fe
MD5 586fffda4bd64e208e384a5c4aa5b185
BLAKE2b-256 bed9bc5d59736680077c7a5ed45f413abad7723e0169f22fc8cd102d4e9a3045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99e3e60d9b92dff245bd130b290d2473844ed25d2fd458a1ab0d10b6afb5d857
MD5 e8e82cbbdec3cd03e76778031bc13910
BLAKE2b-256 53474995e3976f673cb8372b13c45f2d020ed246a0196987d475d7542c6f5fb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc36ad1073c62c2b6cbb484857ecd9ad50cc75eb050316d8ab0dbe54ef73ca70
MD5 f09311e01559c747ef9f89fde41b59e5
BLAKE2b-256 9c3e3508610380343ce10762ca19fdc5b29530e8f77b71b6b0b7011d662ee84a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b375a42d14991fb450d75e44369167feda90cb604813a2ab289bab6cb4213adc
MD5 67286018d7acf7836951db8ff205544d
BLAKE2b-256 011d98448c10d2ee30800576d0ed27a72787a94eb3b2739913d1cda0782acd29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40b13d3b48135e5fb88872bab6bbc93c27564dbf1856d3abb643026234f96f19
MD5 64ed89479a71fce3b9956610b8f25b7b
BLAKE2b-256 2fb79ab17e2e7a721e02f63d6be8584b4bded39f65c28c2d6b3311282fb6aa37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0e0bdef4ad903338cc26a8047f57f42c1774848d2e89cecf3a55611d270c8ae
MD5 65fff67deb7cae9fe4a2eb28c3a43be3
BLAKE2b-256 3d93efc05163907770003673d0efd4b1138d69e722187cdb90d7b3fcb70dba5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73866fdc8bca8884d5e4b0c7c2e6a83057ad2ba6bdbe3647bb27c8c42ff1bad4
MD5 b1f453b57f4449ea2a7c1f1e61218f19
BLAKE2b-256 9fba9589a6d7c5f6ea9b52811e608cb65989ba65be59c91164a6abd8a37c04a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b4f073b4530577a4bf15d382995237611dc59e305d8ac053089872b5a32291a
MD5 d0e1567e17ef9dcb976c1bee7a1e6e4e
BLAKE2b-256 dffdf555bb350a622e6a89e2532129d6cfb040716d77fccadd1485adb091fff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0c8f1254147e2730ea86dcfc75caa8ea6ca5efad73bf4132f8f7a0a2d4e0528
MD5 9e5d88ff2a6dd164e8f0cd9142a0d8a1
BLAKE2b-256 49d09170e77a21a76c69a248fba98be9934e5c3f41dcdf3a4522593d765ecf34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22443edf62723943b727cfaf8a808b610ac4743835014c846c5e687d4467b748
MD5 6579657dead7825004e9451e16558f6d
BLAKE2b-256 447f3d034068d48edd99144729bc69818846d6306661bee016210997e2c26de4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97d4621a8233ecff1e826a68211c77ca359a364a56606566d5879c9921795255
MD5 53c01c3c5f55f4e5e8aecfd61399ad1c
BLAKE2b-256 aa57a8130d82c5ed322703aec6a5c74ae06db62dd330f2fea4715e3130cc46af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31b65963dcfc84ecd2d68dc6a8f50beb3c29b61f1fe288988165bb298b3fa6d0
MD5 20c92feb60bc806f9b01ad236f213270
BLAKE2b-256 a24dbc9783577e28633911898e0cd3bb3a2528c78880cfaf0ccb055b6cdda421

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66d3895265ce8456c21062666b8b6164ba266355551f4b54f5ab028296e9f287
MD5 273d4de3c40a2cc65d5bc8965bd243f0
BLAKE2b-256 0fb8a864d26dce9a6714e403e0b825f5e5b59fdb353556d86039aed26bb159bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c75c5f22bbaa870b51ee7c762c966aab8bbd3bc76c01231e7543450b9359aaf
MD5 ae4b815d387a55cdedb95b9ae5db3b92
BLAKE2b-256 c7f618cb2a7ec3cbb02f73837f929dc01d1f92d2bf60f0298df064c70a7caeca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4540ea76f48bc9b59322a62e886d0a3a8482c0164209ffb682bb8c25a5316cc3
MD5 8bb4cf1877b33bba821407dd14426ab2
BLAKE2b-256 aea341151a88a74b6c143c07443232243219d353b490e43169a1b846acd4525e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a10098908208544e1d9e86001b268be22882828d820546734393575b4d4a5204
MD5 392168b189895285edbd606c5ba4f49a
BLAKE2b-256 3174613393bc29fa22e7b379777aba72a7c0f6aaea02e71261522e3774ac8aac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fec4237c3a462bd1c82db3867c1a698b269a94b71111f4396f8b260532b9e34
MD5 97181baa7b546561bd9c9d70e5684155
BLAKE2b-256 04829478b99bec9ae49fe5f3780167b124d6067baa692f1350d3b1e1147e977c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8cd3f3f23680ac0c3af9f9167a031faebab2b418cd0cac819be8c04bc4c92134
MD5 cc6886c66e6e13416330108802a353d9
BLAKE2b-256 80856869d81866aa7ba74064fb7965fee30fe9396ea90d7d5ddefc31d7e0b833

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 594c6aa3aab7c9e64c963e3e3ddcb4eff5f3395a09a5fcd197a1180e21390072
MD5 705f057f96bcd256209fb858307f9aeb
BLAKE2b-256 232fd6ce072a0d85ff2ac42e5b355effb33aff95abbceb21d334b392e12dcc91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a2df1feed140becba39feed6a0ab2a3d4c5abc868df81a9cd0328b52723c18e
MD5 765582976e266e069664db40c0d39c88
BLAKE2b-256 4f7ef016a30d97803bc2481a832211f61804014df20e5ff52dd9192f142bd1f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 010a6be13fb1502d2a2cbf9666b3f87926f9e19255357e0a206aa85107f29f59
MD5 bfee473ad13dbcdd26a5f580b2f41167
BLAKE2b-256 31b19f7154884f473ce6c145b7ab4fd964a9a1638ce62589b2c882e4e389486a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b3eaa243c7be212d051f361893a8f3bde33a3d52c10d62ff7278fd2b9dc1ae1
MD5 609934ba0cc751bb2117cf846f709825
BLAKE2b-256 e36617ef16a77ef21f398c6f0e5b39813508f524cbb825386081accd5588649a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64183d2b54d939cb8a49933d4461e7a2f50abef453d41da26f376bfb077c9cdf
MD5 454616a408b60aa1b686b3c6a1a10a36
BLAKE2b-256 74f084bb0fe878a44d1e3dad3be59faea8d23f534f6222aefd7fa099886b3546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 021dfbcc8263d5d7460cb7c11a95590ca7a1ad9302690eff6612fea0bbd4d983
MD5 1e9f7d13c7df1b7c4cb0e4eb2d790699
BLAKE2b-256 ea20a0b6542d838e54e610f435fa96a7d7c964d76857dbd4655594688eb4424a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 214c19b45f66182a8611ddfbb9e0749d98180fde5864ac1c36402c3c26b261a2
MD5 bb08eb3f22ece4191d5a1ee309ddfe80
BLAKE2b-256 f08d2a91b1a0e18d22cb7a36a0d30932ce12ec5bbd6072e6635138e7653d06f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fd2cc3ed8ded411dd7ac85db1ab608c1c050ba3286c506bc50d417ead5c7b24
MD5 60d06222f6bf2f3eb24af5b8085187d1
BLAKE2b-256 1ef310e0853866ca94ecedad37c8b58ddac53baf36fe581d4d46c3f573a8462f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80d55fc4c11772b02b8af3ad2412a74e7529e820c559124bb84d3e88691b6b56
MD5 9e693723108a71b1e511f3545651f374
BLAKE2b-256 b20e6b4227f85cbb9431fb6f850e6ab8d88c6c96e19916300965b991a7029554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86a7bff557c2134c0ab943c7f2ef1222195489bdc1a9ab7bae8370ccd8d676b9
MD5 cdfc807e2d7e4a91035177371120af25
BLAKE2b-256 3f8e581019efc9b2ec228f5274f377f4607ada4398ed33d68a8787aa72394e25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bd4eaac59dd8693c5927b5a9ea57785e84bc87d2b6935872e00c367a1012886
MD5 b110c37b312ddabfb4314c0d7c2c92fa
BLAKE2b-256 9a5c90a5de6b32fefa34c800dbf60721ded59ef83102ef40e247b8fb37bcf9a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1dc2c60085d38f23cac08f64fbae08e7bb7c3a8993e7fe93211fd4867a57c91
MD5 2857e60f30c8a6983ef94f1df2bb31b6
BLAKE2b-256 2f52f8aec998d96d5a8e497f0133452eb657d50c725edefb33e76f316e0e24f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7b8d96ce4b39a4aa5bc496164b6d60cbda6f6b54d75b52f3dc0eb9a0d38229a
MD5 9bcd4f96cfb3d12b7dfcdbad9fe2aa70
BLAKE2b-256 97ae2e4bb979b07a9ab05f03011767676514163240763f1ff9dc5ef36b050370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52bbd16fafd68275ade8b28914cc47fcecf624191140cb41184cb92b480a59fb
MD5 2f16b5e875ee1e326026b9a52eaad818
BLAKE2b-256 626e5f46be6f3cbf8f7f6efd36e222e7a1d2ed15bfe62666a881b96cd2de2897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0563ea3c1c7ff1259aa558fe18c7ecc10ba6677a98f6fc47e51808921c740ca
MD5 431e55173750564034a32a0b2bcc2861
BLAKE2b-256 ddbe0e00dbcb6ce16f69785839ba03577f8986ae4d90410dab1617516d664d48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efd394141d361be5f1b10bc191d47c7c4dca400eea6310b4ce95ef2d0333de58
MD5 18622aed021b5a9a785868ded193a920
BLAKE2b-256 fdcf4eb7fe19795552c9e84fcdd5bd156713ca42e87feb4a4ab562392c88fc4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25f64fe99ab9d1f17d9ff3f856c160c164311a172920d268ab5683fd9c6e4728
MD5 89d316a5764d35b3c442f169c2bb38cf
BLAKE2b-256 879fc7d560bad7410eb2723f4377ec876fe180fd47d51df571f0ea95cd6db3e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f059a7266c5cf49cd267feed29672df2d086f2aae65dfa112f6b0900040d4693
MD5 954d7628fbce5c2e650d66cdefb6700f
BLAKE2b-256 ee39b0e84945e7897b3b1572eccc0e58a9cf0d2c207c07faa1a89cfeb7207fda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d2c7efdc11f91112b7f22e704b33ad8e9c19c53b18b5dc3ffc43ae8a268711f
MD5 8e2e8448489411e87f19d97e51db5d4e
BLAKE2b-256 844d32a868adf919f611e231ad8391a8fc757c4d31dc87d427960586e51ab585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56b903938935b48b5220e31c4820a5a5b5bb6caa1080eebb11dcfc526212594d
MD5 85315b2f261f3902045174612fd51288
BLAKE2b-256 7acd26db858a99eadef36c4cd5dcf13f1e3cf133a85522822f288541b3ffa346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f501825ffa5ec5d64ff7af3aa3bdede7edbaeb3fea86b570e1bd73855935de8c
MD5 6eb46139a6a4190713e18f75e12e37f6
BLAKE2b-256 93c27d3ab564690f00733cc447a42f24a9f0df7275e97d00ec24b3be6f707a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f55b2e75aeb01cea052f42ab7908a1efa7d001966d0f3c72c65456e1aa48b577
MD5 e35370b238ee5ca83a8af40adef3e962
BLAKE2b-256 6e2718b3c9b61d6404a9648acf11c6c2ff482170ded273a72ed0b3e25e419df7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19217561570842c46f233f6e7479b8822b5595cad886e2f4ef8009cef3fb0a54
MD5 51d1ba5b6b3f1f5a1cc78cf6955c02bf
BLAKE2b-256 58ddf0d4915f628a14d813038a3cc1572cc545f9bf3ade367504feb6b51494ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9a4131d61964ad06c4fbd8ad889a700198303880676891e20dcd62559c3cec1
MD5 584128f720ae45be56f32dc11656d425
BLAKE2b-256 cb64ca42b07b110fe55e3e9a8e97ba16fdc8f43a3d3d15c76ae6d270ed147b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a352bcc0e8da9a686b73bee1e06ae8dbcde0bedb08687f1d00d1824fff3373b0
MD5 a3bee08333dcfb9ed4f03030947703c1
BLAKE2b-256 7716898940a107ef12a9b09e206f8cc8a954b5d30fbbef7595cdb7823d90068f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00bd30a48bbf2086855f3173de32e36d8098cd141b0d863f47f750c1e6d426a2
MD5 7d36cb9b99dcab66abbfa660b8cf0c02
BLAKE2b-256 604230469a824c3a2dbdf530eccc34895b4567b2fd3c94842520f94dcd0b454d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2dab84d6a53fb41ec0e71e773c6b4df6519916dd6a4d6181143eeba4f8e080cb
MD5 b9ea83e80a2ae8a9c0d8a1da8e9a57f5
BLAKE2b-256 33540555466816586e13277a259083df2c70a0ac4f1dbfa2e75e36b0f073ebec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0df1fc5ece607a627fe8ab45df4208a634a374180185cba2ab838a0f4deffd04
MD5 8e9166f46023220b7ee9df94d320b193
BLAKE2b-256 7de0886b58be1de751d3bb650d4053c57f432e383b13a642bdf28fcf243c7a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa0740ac61b2be77b75cd15c670bd25f670e39e37be03323360bac5f2c3c300c
MD5 df04f49aa66c73b391228b174127e86b
BLAKE2b-256 470bf22da7f8d682bafeb36a7dae54123cd22582fb507e907062f2308543bf70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb98b735c90f90c8d1d08e65fd45842b95c788befb1a1a00cffe543fa414ca07
MD5 23b868897498cfca8cfaf34251302e88
BLAKE2b-256 262b765c49ba41ba387a937965af5cc4a99cae63a0a409b5042f28f496dba519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 880aec8fc870fa8e57a3cb0d50ca9299fe5745f2b0f74be60261f9977d75e85a
MD5 e597869f2c3620c9ac236c7f0338449c
BLAKE2b-256 36e348a61ac56b135ee05a14ece23ab08137f2d32569c5eec2c3951fabbfd271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6148ae0b095298b8723d6ca48c74517d171f9cd285aae6218ae35d0a66bde17b
MD5 1b1cbedd6e0a52b6d7a9f322b8223f37
BLAKE2b-256 01ab92e30cd2f42236e09062e13a51b3832567b2fca9e1996e30dd1bd2a48511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08487e9484101e4cab376a221892e0a5f7cce5f3eb66d8a720bea3d3ace0892c
MD5 a66b978ae3ddc077a9c756123ba1dd1b
BLAKE2b-256 1c39bc306b294a0c2f33ef35c34ff641a29628f946cf0d72bfe35f7dd3f4c5d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ce8ec61a3728df075030993263917bb85dea8bc305237bc0c40b12b0cea0970
MD5 07fac20e8cada43316770eebab106552
BLAKE2b-256 ccc8ff9b0fd50afe099dd0f5a9aa9c90c0833aab43b5626fc660dade37565638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94bdafa7156e8bb601cb57ae7f3af3151f3c3874b7004bd0f48cb33c50ca6d5f
MD5 c67ca157797e8d08180596a2a4053eb5
BLAKE2b-256 c1457598341f844773527cc40a30d90edb75afc4002ce083736303506f5769ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34490c7bfa197b8bd0a23826e9e841537e531c7563c6fc7ff6cea4b6e9192659
MD5 0b8bef847cb13bd04d18cf3afe13f4db
BLAKE2b-256 531b6f37baf4208f4fcdd78f952ef0f6d7041aa7a4854aa1d86537c153538f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 052d127e65f2b7cf1c906e45ec7d5b951b67862f003183b4982e397c7b4cba51
MD5 0f4fa38c35e3583cca5c0cff8530c8eb
BLAKE2b-256 ce15d34b704fabbe8ab04f7f3a3ca4e05e62b54f46e8a1682a0c45d8ba15600d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 064e014ae50e8b6b779c49d90a73af8ea6f2c8d057bcceda48316c1defe36fde
MD5 b79c994d83c417a19e47d59ba8687d9f
BLAKE2b-256 ecb7baed1a41705044e4da87c924512a3ccd480225b2009a95441fc23ca6a65b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 760f738c0b300d04bd36f8e5c57e03f62b42d7ddf547e9d21cdb7d54ed39ed12
MD5 90f5e22d7cfcc440d16cd597f6328392
BLAKE2b-256 322f445e73724064894f6e1358a87ccb9e61f36bd3c4ebde988e4dee877677c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5410549a92abd6cb05d0b6e065e4e60aaeaaca9c562427932dcea9c69d36caf1
MD5 4e62a81a11b88f7fb8b11a788eeeb5ff
BLAKE2b-256 bc009fd641d6f3cbb7bd6136b7d518b50d616bbb9e1a85f1c9e785d50db94f1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e19a3e2b28faba355d010b54244f8eeaedc1a3b4dcb30594fef3bfd483114583
MD5 1576c4612f19d12cbd0ce22c3d314e19
BLAKE2b-256 d84b339eb697daf78a5c2cb26ba42cb488bbb6848f9be10820e80c44d5837148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfa90514a40bb24681fe0def2465cf2a7ab6b32da7b51c3b97ea0f6f4ed2ad6d
MD5 256cf651d1556c4f0d3177b421968087
BLAKE2b-256 b26b10efc03eb8b1f65270e1d723a077e5723ad539f88f3c0535bc1b3ad2f617

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07b2a3a0a92bb5ea60b353de046a867c7490f02780ef719e6e8ab4088ffaa290
MD5 2bc7f1a4522babf50f870b7204835991
BLAKE2b-256 2ba24915277a0b6d7a86dd71579899c29c5e152975cc1ce3d359aaa8349be4a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2ac6d12c3662e1b61df52cb78f63e478f056e54cbf2e115356e3c6ab0733b0b
MD5 118db687179ad1e6ac9538f4986fd042
BLAKE2b-256 abde45f30e008288fb78b2c00454ccf986243e51bd54bfe71dda56616b66698d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fcbd65951fcc1075c7ce45574ec778dd32ea38948769414c19ee43a453baf1e
MD5 91263fdff8c2da50917a179d2b1859be
BLAKE2b-256 c714621e90b8d6e2b7bd2c7f83983afc084b89fe8024c2b6ee9c7b0f8dd5c613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37533d6235b97d548df07fbded4d2f36e2dad60e80fedecdc16457244c3a6d8d
MD5 ac6b0c21352153eb39d0890d6ad7fad9
BLAKE2b-256 d6cf50459df2096087fc6303102fe22d008441194baf64e2004bf6dff1f654ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec7f61047b8f1d0b89209d3522571be8bf0fbf5a4a2d99460ef6e19ce22d7c99
MD5 d062aad668ad06db0da829779ab67870
BLAKE2b-256 4b46e5d83aea1dcc720fbbf523f9faedc318693bbd1599ce15d4a5b866d759b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d5f293a8814464e12b3388de409ea7837f08a0d3df8998755f6df25045d7008
MD5 18800c26a990eabb65c69ddc5b5595b2
BLAKE2b-256 7801ca58e3505067c388c86e28f773a05ffc963039ab1a03b72252f0f6f6e1ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26ad5c19ac70314cdfa6a6f9b68a02359548eba0d84fa98374d5aad60f5eec78
MD5 0c9d8a2507a2facabd1f52d46abc5cb5
BLAKE2b-256 bc8e6650f27ef729a713cc81426a321ee75025f41104d947a34cdbdbdbe1f6b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fa2726ce3d57b871b47a5527498cae08093ea475bbfe653716d1f3d2dc39654
MD5 46bd25a980a43c3ecd78818930d5d059
BLAKE2b-256 a8191df1de0ca8e895ad0a17f136a659602e354a1c7bd93d98c3c208ab6e99e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98f6636a29ca1408a5daebbb38be3808c51055be51477daba0ac3080089eb5dc
MD5 b24e0b10f61633ba0e64a2ec09ef4aed
BLAKE2b-256 59f1de70a4507e7b67f26645ac8ce5fd2b85401ff8996d319cc03f2675e3e098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b68f2b4e3e16116a076b1b2022497b8f2cb95896079f63d48e428129a7e7c3a8
MD5 b5e007f55a44dca65e106ecefa6569f7
BLAKE2b-256 4c9b2ea63170a5f947bb2fd3e62419a3fa361717bb1dab7bb9502f4188102202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e7d0214324b42a99bb33fcc76e5de50dee61f4964d3cd206d259929d2366dca
MD5 414e472ef12526522e10ff8e2fef3685
BLAKE2b-256 2892ec5fb2aab14fe7240699a662cb44fb94a246be9f422cf490d697142a4673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 025aa045f3b90e55d959fcc761cbbba224d835760349f91c863a97a329243ff0
MD5 a6577d8ed28f4d16d0cca17081f648a7
BLAKE2b-256 1a75be1b907b7b07bbec79c8b876d6e54bff002aca259b7b42438501cabcf335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 892153f00bb9fdf391ff06b12ff5c31137f384b0ae769df8df2cc310c88aa2ea
MD5 a88ea6e0af5550357f28749c954b7c5a
BLAKE2b-256 939d49ae3b92fe283a057760ab474a8752ca81d8ddedb7249aa74d3d25e65fcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00a6093eab73a8844143ad5b4d28581c31162aaa854ec99a00f732c419b7bf97
MD5 2fc892b231fcfccadefcdf051b51fb01
BLAKE2b-256 7bfae794211daa4f11a48ab3690101be81f77669115bc2ffc911027e2136ad1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80ac0aac5c050c2744c49e0576017b6628446d60f6b3cc09e914ce31fc2ecdb6
MD5 d8e2d30c2e5960d00ab8c9a013730518
BLAKE2b-256 e4f661816c6c98cb2ca4b5293d5214d4e8c17882101a99d2fd066e65777ad7a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5efe01d7fe1e5283128fa26403c289f78f4172836457aae4bbf3a3ef01ffba43
MD5 bddae4c93ad456f94f67b6af8b472ca7
BLAKE2b-256 50a3cdaf1d3d9c85699b41d2e5a2a88cb5c94da5445a4f62278f9e662aa7197e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4118744e57c469159dc3b356a447cc62c836b93d34c20f6bef8b72345d7c7f48
MD5 80d34f3313563f824212ef542e7fa604
BLAKE2b-256 e6c005488bfa245b1fd9e74b6d7875199364b8a3d0b04c0578bebb612ba077e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb570b547c7c3515c80db67cacb5647a36d5db91d69a4ced05bf6847e0089f75
MD5 a45f7742f0017b7d8b6415ffd786496b
BLAKE2b-256 7344d402de825927f5746aa28e32d0bb5e5da210f1b552a9b3296510fdfc2664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 475385396e65e4b386acf2e1ee5960be5fa4ab55db819238838eb8d50e6082d1
MD5 81579358d7a99c867f9f785ac3ed1241
BLAKE2b-256 0f39fe446ede4dbf45fc139b380216190a2d088e12735910a019a1c6742b3a53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bd1ebe4801db839692a1587dd7fabb0600c684e647b4c9fdd4637ca89e5b7e1
MD5 6afecd512da282e660ced4860ec74d26
BLAKE2b-256 dc8e387546068dc5ed7d262998d0a20d6e186a68bd0ed19b5fa6b43e5da495d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd09652da349b0b8e550b8e53e9429953ec47fd1132438082ae96fceda54e33f
MD5 c6b80604f74fa7437d13c1b7648148c8
BLAKE2b-256 2798ec3a9ae773dc333bcad0eca798fe30878f0593a8f593bef7825cce7bd4b6

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

0.14.0 This release

85 files

0.13.4

85 files

0.13.3

85 files

0.13.2

85 files

0.13.1

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