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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-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.13.4-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.4-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.4-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-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.13.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-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.13.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-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.13.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-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.13.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cohere_melody-0.13.4-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.4-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.4-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.4-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.13.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: cohere_melody-0.13.4.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.4.tar.gz
Algorithm Hash digest
SHA256 fb8a2ba3b50354cd5bc37f9c4ee97668a03739a2cd70c1985bfb8dc0fec56be7
MD5 7e2aee2c8b11c28f2d1c751962cdcbcd
BLAKE2b-256 234af9cd314c50d03f0a103c8e8b7472979b3564659c9fad7b67eb86d570d05a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac9a68e6f1a0c76dc0febab5d63a7b59bbb89a626d5b08074a4acc55f12116b2
MD5 fe7d9215649e347406b1e337a1e36b71
BLAKE2b-256 f5ca3472ce2f018e2e9c7ac4a240f00f5dec541d9656413915680e08a268e33a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce507dab5521058dcc27e373155dea3098438ff9fbb84aefd2e2872f276c4cdb
MD5 8372a6412d9e895f0f6a2f1c1cc92b5c
BLAKE2b-256 7686ad09646ed863611fb777139fdbea781dd49d4f5fafb6bcab30f1fc39f062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c61b5438eb403dc55ff51a71f9ecec781c15eaf669772fa4a152d7210f49520
MD5 8c68ddc52ce521cb60b42ef6edc11b16
BLAKE2b-256 c5e75632fb9a4e2052ff7385d183aaeac0ff6e2052c436e433e84c79cc50d82c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82fabddd6628344fb8a65874ab238297e6af59c45652a7ab9afd56d401a712f8
MD5 c92267377a989374ae67c83cb813f51e
BLAKE2b-256 11a2a7e40f556dbcc89b07a11f396edfcd0363e1242ffd781ca036b8b79c9c72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a2d144bb51f83fdfa220d184748623b572aead0f95c800c05997f77e6fd18ba
MD5 cffa75bb0359039f9005f5e0e11eff7c
BLAKE2b-256 41a9513b426404291cc4b617b6fb48ec6071253275313646e8f80bde72b85a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f06deded0f87dcebf2ce2d13de23d9ce72a642a3dc72fb191d233851751f356e
MD5 d0c6dbb1eeb89dd3f1b3bd3dd0373bf8
BLAKE2b-256 056a1748ffa4c4e174ec2745410e7d5ddc6beb65be5e796a1ceb8c3fe70e7af1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24aaac23f522c06da76946e73289601fde0ce1c53e3290a89229d60b085b0dc8
MD5 f24de7e217174a3c6c0ae8e621f1f76d
BLAKE2b-256 afb3a5f8c7795a64de63257314395b56a881c09150e2d5271ee608ec650768eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 377cb76f7629de8549989b9da97ccae493f4b5755b385fe701d45ab5d9228c4e
MD5 e835ed1d69d984ddedbaac22fed5a29d
BLAKE2b-256 acc26085a7a7573224a7be7cf8e335d711a65f57c232cb6db4004636b8738405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59c5fe067b64e7c025180cd6333421efbc2dfc497afdf9cabd959faff58fc6be
MD5 a622a038692f99bbd16a7003461830d4
BLAKE2b-256 f5b44f2627b2123784628304209f55cb4398551bbab6a004dfdb75c6b0257604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e9bd4b27309d742686e096d0d92cc3241bcb5aee9bbda02d81c1f88e9bd1ccf
MD5 fe04c5c078083c8dd1935f4482802fef
BLAKE2b-256 5072c6ee175c99a0e6a5abeaf71237eba19b22af424d86442d89bab152d48ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de59622d1baa08e8cdb228efb1d2b2b17f00bd6f7de61ece529f1765d36183c3
MD5 eb568f1339bac35574adf7db19b8306d
BLAKE2b-256 e11f804b9fa87c98be2cc8b6ec37a83ea21060fff560fc9178e148bcf8c64fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60af7f12094be776d1155b3553d58e0f65b3380116b90bff83ee508c9aa35380
MD5 9204f8cd1a9a3b54387249decf3721af
BLAKE2b-256 44ffdc576ca2dfd759e42af9a7ae69cb2a8590cd94339034d50bf4ba99ceda08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39cf8a70df618a4acecf9b528b48bf27bb7463bc21f11c0d9c9fbc1d39c3306f
MD5 f7813198b9ab6ef4f65923291c58f76e
BLAKE2b-256 6a8b7755bc8dab197fc245298a6fe9c0ac7528287ff66391f3e757e484a81d48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec4f5687aacd7bc7728aed132016ed0abcf69073be1d6ab67ea656737d31cc8e
MD5 c7343d7f46ce1b2c3b77945831ec3ce4
BLAKE2b-256 4722be1d860764319d2e863f08b64a25d5880467d841c33558cdc97466aaaea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5bc0c9bc8fb7a6e5b8fe6c5e6cf0e461dc4c95f4ef6ca6a507f9bd7a341e084
MD5 020841de071bce33dd1135ae775bbce8
BLAKE2b-256 74ebc2beae8064c782e1510eb601f10d02add9d3a5c0a054cb4d896c921335e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 044db815ddc4c26e80f46e699faccdccdaeb55897326aed531f69a93a41e0103
MD5 a9909c7419d8eedb44aa60ae30d23bae
BLAKE2b-256 4fd91971cc357d813c4538ca28fd474363ba46191a578056c466a7a1fede7f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc7398221773d1538cb642d33b9f49f9aedc8d1c025dbe4114fb540866273444
MD5 ae2c75e2ff90f7e6f32a65a4bf437b22
BLAKE2b-256 9ffc3baaea0c8e02d2601087dd65fb7d2f99a59568bd26d4884f5ee41e736af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 873a9403c07b81538adfaaf2d3bad288920c7229def9aaead02ba6e42af83aeb
MD5 88d30a640d5410318769e55d65e1c5ce
BLAKE2b-256 b48719e2153ef074333ded0ddaae933f002d9ff2f3649d205dcbbcefc027fe6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac0fdaecd142491ee6d084d90b195fc26cba741f4d3515f75f31bfccfaaebb44
MD5 3f261f9cd986e2fd82dda5c7eda0b0bd
BLAKE2b-256 2c17c6ec72a10f91bf226a9511a94f7098e08f96b03ecafe7fade85cb66e16a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81f1895adc639c041770633533b635a6d92fefbcad051ef8ddf2e29f0afab9a6
MD5 3e6e9e8cca3bff6bccd6dbee69ed4b9f
BLAKE2b-256 781d5e90305519aa76516c3a753dca41bcd127d6661d2e24bf70e803e3819395

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 498396868f82b81329ed0d262f2941a6694635e05576a1a95d0ae3c74510281b
MD5 8f61e007a522f7de58eac9d4748c8804
BLAKE2b-256 d118b7bb90929051345e5d5dd4fa706afca0292d67ab46bf21be2dcd2c45977a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.13.4-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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9439e2250e39e66da9afe38c2cb0e4997fb7b0ff23e1fc345e37b09ae1a1156e
MD5 5ed684a149ec302e23f125e93a1e5255
BLAKE2b-256 b6b9a330f2a7ca5087c5036f53098cef7c45864b49d2213c18db78f9678a594e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75d33990390f133710e8c09ea33133bb30c22f5b8336c637986ec2fbc3eb2f7a
MD5 e6cf4ecdc342953955c956795f5eb3cf
BLAKE2b-256 1f833a1eb7cb475159d02a72fabefa478a143d0dc1c8ea9630d1e74c1386d2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86198baf61ce128ed6af335c8088c66378dc7379a76808c3a9ce51e6aee77576
MD5 08f7272a6425af7fed53dbdb8e75f3c0
BLAKE2b-256 d3612f33002387ebe22ea1c388a6f8e4d08383690752290316d6f2950452e574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd0bda02aee857da6aa15df8adf3b64878d933f609805c1621e0d5c662a759de
MD5 d11b322896bfff5d005375939b4e0bc9
BLAKE2b-256 a54d7aef020b2cd3bf423b5bed676d7dde803e9581784c47369e3556bcb0a506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3354a9ef55169f11b3e2066d8843460e3f410953a6c98cd80c4eee9a89a5e182
MD5 b9663fd86e2a4f8a0b8a67cae9612e0b
BLAKE2b-256 b727d7871cc727b8e4d19ebb81d3b578096173cb0a0246b5003d5ffdeb6cf5d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04ef37289658900665d29b075ede23faad515ec7c1a465f1abdc94b3a5e69883
MD5 fef15e5e94f24b82447f47ebc60b7b7a
BLAKE2b-256 84395d5f6634f4bdf98f4d050afd516c7a924fd661a9cedae36c5f0c64db9cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cde12d8da9ddde9289560fbbbcdce466f992f6aaadeea89f8cb9cef246b30d79
MD5 0c6d21b07207f0d77b708f3171ba5104
BLAKE2b-256 5391c1d8072c77a07189a162b65f76d20f67dcf3657ba2e4257148460c2cd52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 332f6c8645c8fa611ab493cfeb37c8ecbe2aa829c14f44c5eaa106a1ee7a7dfd
MD5 b2040dbc38b9227a8a9757cb710ac00b
BLAKE2b-256 49b4228b249dbc370ef0e0ab227cd494f5fe3724c30d0269df0dc0f28305c350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec14c52fe2366cd292ed1acbc1404a279bd215b5a9e74ec05bee9385bcfd99c0
MD5 98a2f42b19d40d856f6d563b6ace9267
BLAKE2b-256 cdf8c5e08715c6ad9b985224a1b377f4f38fc8a60fe06e54b21f600bde111fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f73884a3e455ced3cf76b82f04b1de3ee1ddf82bdd3fa6c95e932b275e517b7e
MD5 71ae205a2565e4c84901b456a8abe485
BLAKE2b-256 98aef699ed025b7fd3d0cb967be7ac2fe90bbb6af9311952a1593ec8d4022976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3ea81d4dcfffc154b7ebfa38664f25d705d76fcfd33893a8bb7f46751dc4263
MD5 690063a3a992a485f6701c9fa0da38cf
BLAKE2b-256 d7d39061ff2a67729116ac22e378ec365dbb6fee68a9699729a2854d94565c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f716d9e4a4c0d1bf98b411a56bc95a4dc3efdb9180e93a1a9d99f0e0a4478137
MD5 f94f289e2beeb1c9eb65a4c1166b1f3d
BLAKE2b-256 8d1b53b3236a5f8430500f6f5970960c6e947f937dfa899f6200f4e2b377aa4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b91c28e4dba5a6f59cc8e735254c83d318715dab0a9e85fbd316c75430088a1
MD5 73536ad8979728ea7e3cc1cdf810c064
BLAKE2b-256 a9e8d2548a71a94dc2a14d82754b5f51da3b2cef5705ead5d8f84f6cb9a526f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e2102ff23172fdca9e4d1865f7be622be928d94f97c14f46f3aed6fa2ecc14c
MD5 8ceb237bd5bbd13bcbb3bf6426983473
BLAKE2b-256 7a8b59279b6e7aaea5f61f326d910fa8a2479370e6d1afbc3863804130af8b5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f987516e2505b9153bee9ebb29ff890024a72255b712bc4581403fd0ad910bb8
MD5 ec3372a8712c84781ef51bb1882c345b
BLAKE2b-256 44579ddf658691ad1b5deb29f81c2ebdb7cd8135f41aac2ac9db4775e5c74980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bef786ef5b5395e607266b7085faacd9a9d7276e4138041629b9a88eb64f01b4
MD5 981eddee0ab671df82291a5ff0ad9c59
BLAKE2b-256 0935782df7f4f6a9ab5cf51802a9c844f4e9b44498e95df6f5fbd8d6e96c342f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a467d609d0ab6fffcc9490a84b8681061470a6254b2e730c90ba59de521b9c20
MD5 23a17568cad601699dc2365a532876d8
BLAKE2b-256 eea0e379ce67d8cb4945aae05186be5d168f042879f42623c9dffac0e4310962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 374a45717b5f8d5b35e1f25d1506846ae430e85d048c9708f67388f00222367a
MD5 0e8bef5c7bdaec3b05a3f8e739a83c25
BLAKE2b-256 a90b8be8cc6ab3c2c811ec8abb76424308dfeea8a02f6a3eb0db585d532d4b5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 474c893d8d2b82ff2a7b51718f1ec4ccfeea4a207f04db72aed1c3ea3f752265
MD5 8140823407ee6a4da8ee9df7a6f08cd2
BLAKE2b-256 b6dcc11e68e93555979a6930a79cc3e138bf792adc5bc83f7e3e7af1ad10de83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 653707e95b84b48fe2f564b18caf7d1e78088e8902e8df4c2b7a1a1f22d06883
MD5 da954e3004dec6f32152fefae4c16c20
BLAKE2b-256 216e9bd06562b803a0791892a83b7a8228dce1349e590fc19fadfac3e3354562

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98bc95ff6b0944e37126373252e5b85949d8b1bf731b8c2e46937649d1e6e6da
MD5 fde99e1955f0ea9a35facb57e7f43b03
BLAKE2b-256 0ebba6697f815b3cb95136bd20c913f4853d49ff84c665f88ae8d1586bbbcd23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40f654723c68d9151babc70d996bf4567cdc141dc14c189962b154425f971bd6
MD5 eb06df53037efe9b092571b5ddb20f8c
BLAKE2b-256 09b38c62ca62cbfbd033025b74d860787ef187ae5a99115335057b474d8fe8c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcfd88f3ba42e8bb39ddc0c5d7ff21d77a3a33e88a03394c5d53572fefb4844a
MD5 ca4a92ac0ae4dfb8f8f84c4cf44ea1cd
BLAKE2b-256 d8374d56996ce4161a54fe2face3715146e05a29ea7e90ec304c1a045f4ee391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 311b72b32781827880305945ee8ff4d423d732c1d09cfda10a758959cab2e341
MD5 6684a94111e46f6bf8898c51b8bc0a10
BLAKE2b-256 ca62955dcd4c70a90811468b87101a83d33858ec18d40f47b889ec2a99ea6a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda5ec19fb88ca8d33a4b86eb4171aa18a0bb99590ac4295f8d0afb50df0dce4
MD5 66f5bbc353606800d7ad7b96dbd335b6
BLAKE2b-256 575845be1ab8aca8ad43f09759b66a5590302af1bec41ceae3a4ab16350d9cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4da85214e3f6ee4fa94099b2c46d872ac5235861e7a11352621807544b695671
MD5 58d0dfec171cd70b39be8444ff4edefa
BLAKE2b-256 b7a2e97bdeb8434a4c1da013daf1be89b52da6b4e14589b202314d3010be4bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4614642d1ca36f265487de72c06949e9baaac7e493cc6356b64beccad2e85d14
MD5 2f90dd7cbcac47ff719e7db1945e4d9c
BLAKE2b-256 fc54715b1ec353db6346ccd30103a153f5fc054940282c47510211551e9a2da2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8710a9fe3f9e1e1fdb76d3b2eb8a44d08ed24b0ec879f476873f5cf1ff098075
MD5 19642f79afe8c220c2e1a481a0ff46e4
BLAKE2b-256 a49356c9a70a9cf436c68a6c2bfb2eda0f6b041654f7a12722d3b51accdc4a88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a1b67009489441841c59249b61eb7580ab65f4fcc4579371a890109df758122
MD5 c46daa909de50cc0835669d51a5407e1
BLAKE2b-256 3241c61f10804387ebf123ad67c4cf5c925e9e8387686cba63775b5a5a205a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31a23fea11b30dd03bf06c9752645c834385710ad80065ce6d7806da8d19d3b5
MD5 550d3c957efb833ea236b251648637ab
BLAKE2b-256 2d84fe5595db90dc17546ae7ee74dc560f0a3875ed3788cfcf6352fbb179ec5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13ac0b633bd28854adabfebd6bc735ec074b054fc1299654243bd86219c222e8
MD5 2489d0c95cfb2af2d75d32138782a3f6
BLAKE2b-256 63be272c8925ef38a64073e99f2c215e1b466647db344009da44fdb6af49f654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9025c945392e3f00ecc2ee567a6da263b25db1d2b4deb0ee36b7420bfffc2e05
MD5 7ebaa2168baaa9866a35622d9345ebb7
BLAKE2b-256 643f332c811e2f768afb4167dd7bf5459945180e173ff5c2cfb44d1f1326c3d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40fbb0adf280b603f7993e8a669be1f1d2f2f8d9ea9f7cc68109ddd728407407
MD5 ba5a0fcc61041ab842d574d97fef2695
BLAKE2b-256 1322739acefe88be2806c7ba0fc9abdd573ef6301e3682d6f3e0ed0649c1cf3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c92015ae3ef32c9199678e0c3fe3df9a10b5d4ad40607e879bf06c4017af157
MD5 e4876dab101ae741f637ec0c53165db9
BLAKE2b-256 c8451f7854c24d5fb00c8bd978665947c4d5c0f8e26452c2068968dc9574eb7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8210830145490213f463b6500f605939c34a513c1714b95a6eea41046c5c952
MD5 24619b4429b31e92cb3e031ca7a02344
BLAKE2b-256 bff65d7765b22a5af4b4ac82348ac6b5a50f46d3575cb9aab5c37d307ffd5389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 831d704f4dbf1b46f64ccedd1eb29f674c9249c61364216734220c078b7078cc
MD5 aefce1a0a06255f807909f38612a5f16
BLAKE2b-256 95bb802511f4dbde66dff6d3ebc8a953299a0e50d6ee70a77adaab9eb3d8a847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bb25bf5a3b6a45bef2a53fab8c2efbef322fe899e4a6cd1653d905f597b0433
MD5 ae12bf0c2656e790d012b23a3c1c76a8
BLAKE2b-256 0b63d02110f9753f042019421c23300e8e53ed891289a661ae8abd21d7d8fa7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 742450a6a605bfe6df50374b7b25d2ec6ba82f48cee43178a2905c9dead72021
MD5 11ff30b75e71ff8520c52ba08fb8ed42
BLAKE2b-256 0527104d0417e1653f895bcf0bf8a6034ff3ffcc56827d54c26692307cab6bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf8d5bb81eadd20e1b7c82c529e9c32cb965e382ac58dee47c208632d66923ee
MD5 ba8c075e37726afa199bbede86e73f14
BLAKE2b-256 45695907dec9017c06007352c2fe18cf0c849ea34185aaea8e18d2b79e9e4c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 848e61af377052d317aabe0576098ed55a1a62fa7ff852243e213a036477a624
MD5 09285d4ee09ae9e346a0f6f5ce44b237
BLAKE2b-256 6c81765a7cfec3ddaba59b68aa300bfea0e1f439af6833c3d7744c952ad18bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c1d7ee237df47886e2a51369caae32ce7c8ecb2b0de16e0911d72dcbd0ca596
MD5 87fec695c0ba8e53a366d25166cfb191
BLAKE2b-256 ec97b796fd91df315c34c7caf8d03bd86b408d10c416ff331fd9cad5f84558b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efe8ddf113bd483109ab6b8845891de7af274355a51e56cd89aeaab584eb612d
MD5 a5eb84a7b39818f9d6e076d60bde5bf0
BLAKE2b-256 4a0b107bd5ef36deadad7fd1c1b2b5b6d5d72f0793fe0b161940e4e903de6f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4b929224089ee516517b9da231174165e558ca2feeb80ac280cba526da10bb3
MD5 810fa199007ead2cba7aadd92bf73caa
BLAKE2b-256 492c405d81f1b44c65fc8e143b26066a206091a4de294ca676f1c5f71924bff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 baf470cee590b7dc3707554b55df7654c604cd17d5f5db727e7b5ebc7f492088
MD5 042a5372958d69bc5f8fd86bbbf95bdf
BLAKE2b-256 586b8d75ccc73cc4dfc96c08f9df1ce6250a2c6ef085226f5dbbb14e9cc4e85d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dc8d29da43e7ae0ad270cd77ea651e42e910684198c548fcb3da6028ef1a773
MD5 7d4b14492c0094df5ec7a51b6aa27196
BLAKE2b-256 48d43350960e00ecf11e2bbea8596cd04ed1b75a2af8ded978a8e74d0c434b19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 175f1ffa0738eb4feb8d94e73c52c7c3996abc65e4f383e2334673aa7e295d7a
MD5 43dd0ef41ef123cae0dc1ed1403f8ecc
BLAKE2b-256 a0da891f9a1bc0a812d4acdf75e4339d200d577aebbcec729e216ded41a8c0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fcc30503c1f71872fed60c23f6b49c5e2cca29294b2e174aabec50e29dc3915
MD5 1deb9904146b537a086c6b6c07a2bdb0
BLAKE2b-256 c00fe76c29a3a53bfd67d5b0f8cdcaae5e2064b203a1bbf677d68b27d89808c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9a938e4b8b0c3801c9c64488909b6c5a309cfe46d890cece9267b49b9853f9c
MD5 27e610d3fdf29b1439d28df7a0853e7e
BLAKE2b-256 148078d1ef1b9d8ad6df05cc440b86fe0846c9fea87926ad1b38b69f3be169ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51c78b663c9b61e09e473b91a2f8bea5a3ae949aca94e06c74b1a27079918526
MD5 8754d352d1eedbc745888fa5d2834037
BLAKE2b-256 69b3bfd1c4b7806fe88cbeefd525138bdde9509ba3dafdb8700658236573a992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a1fba15aad46589d715477853f83993056aadf8c6e2dc5c119926de7cbb036c
MD5 139222297488c188a592b6d88c28163f
BLAKE2b-256 1cb98ae6058825cf05c4d264b7cbc3edb01a8cc97fcf58755cbfc84b8d13bbb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8593e909489ec395e7824ec47dfc3f3a9db23ffda2aadb910d7f5530bc448e4
MD5 a9a781ac46f8d4080ed35b35050227d9
BLAKE2b-256 42184b043f5e582514d36279b1224d4e909daed580626ef0a5d20fad9aa91fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 674b84b64762951656c52b8c3ed42cbd6769d86950c4b3c63cad48f90da481ad
MD5 115f0cacfae1b6a964958d1348c8ad7c
BLAKE2b-256 24df4778f0d82cfa874b35777cc3193a0651fd485b369752fdb2013bab929d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87b2e5d5d471c55123d56609d8e29acdb93b276939072bdf70c53af607588c65
MD5 8ddba71e2d2dd1e0d9d80860d4fd9ec4
BLAKE2b-256 7c595920ec0b90c2a1071253ac7aa3ba4163c2e30187646c060c3b32ee537f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6594ba1b4d0ae1b31970b611074022fd555f3f7b3ac1adbe4d2dd4e5080e688
MD5 953292d09c5d998519cf1c9f7259a5e5
BLAKE2b-256 77373806f62e49ba2944e75d473eac4b83e4d419a9f3d98f32b76feec6b95951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 360dece03fb99a45ff7f035c4f08503cc3e9b7851436c2ea9a3c81240e53ffb5
MD5 ebb4ccb6e6237389c32576cc8898e579
BLAKE2b-256 707ecb1c7284ed29257de05c0d9ee3c71bb406665ce63a00f6461f1308adfb97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7d8eee7fd5070f49e11be1c26c4016baeef83921cd7c07c0c7ba22a9d8350e2
MD5 a0e11b35211482a40594a8f5b4fb7446
BLAKE2b-256 e3b4f2b8ae39cbc297f48549cdeb72b511336c756e6cfc4a82655df16f260ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a654c8d0bcb818946f302807ae66882f474843a564c67745e1ff30876ec08e2
MD5 35662eafa7a8e0a2e92d52fc588629f3
BLAKE2b-256 cc9220c14f6320b1da950c5200fb24b75e05532bbb6dfcb8e4cc9f017292906c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7e1f18de21a1350b3c92763ab2f3b1eb8e5eeada55373f6ff2a97012c2a83d3
MD5 61d3ead83ddfab106d9b9f88d37d079a
BLAKE2b-256 7904c8cc3d3b33a0566662c0cb63cdf19980c4f6a7540deb188a207d23e06f19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ec79f1397ab86af6f98a752206b91f40b5c6065fe26baaaf835859e780f8e45
MD5 38480f0177fdac6551ba51634088bc5c
BLAKE2b-256 60bc040b8ee89904d76a01acdcffdbd14b087687a215d12d80546337b01c84eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ab07b69ff893681ab299795c0cc6367064315fe49f7bc014ba2afb4b3dca924
MD5 4d64dfb731d41808272182c576ba1753
BLAKE2b-256 97a2740b8881810431818f82da0f0d334090e1b2f98cfa4aba2ba1500ba9b5b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80013dc78bf45a660ea936594097d2a9de135a49421fb6aa858dfd3e78ee1e4b
MD5 6ee374a5156d03bb539c225c3b5d87bb
BLAKE2b-256 cd9c9dcbda521841dab76c2ce12aeffc3a6cb0030f2d984025413109ee45422f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1970fd404cfcf546db398260c0b611bec00fa0f8d4c9326b9feb4c8142615ee
MD5 623abac0e8c29f90f6773834bae74763
BLAKE2b-256 74a96c8d11b2d3e034d3b202fd34b00533a43a63712f933a8406ea27b424a487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e58dacd4cb6cbe95dbed7a05a9ef2124a5b09832ce4bdf6e87b1f97b87173844
MD5 1b9acad009430e2b70700866c3a8ec3c
BLAKE2b-256 bb17841afc151c081a7abd84d616b6f86079125a90fabcd8a0b5a96006f0a9c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.13.4-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.13.4 This release

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