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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cohere_melody-0.13.2-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.2-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.2-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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cohere_melody-0.13.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: cohere_melody-0.13.2.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.2.tar.gz
Algorithm Hash digest
SHA256 cba23c2c7515ac8a96bb402d8a793f02aae7711404b39d688d3672c56c082396
MD5 56fc9ba4328b5169065ff9afc3aaa06a
BLAKE2b-256 590c333e68fc52a91d3c6e4b132d72a81ad65f3687cbc2d8cadcef8277b7eb86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52074fdbcb4f35c6eaa6fc9de43494fad342588072c099830ac1f2887ddf9cc0
MD5 a804b20c429747c10910ef058dca6bf0
BLAKE2b-256 a181cf07d741c54bf2f16d8da765a7c45f4b9bdf40239db7a6d9dc51dc36de69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f99f61199fb4294080f72f9d615b51e9f8c01489565451ff2cc145638bd42c9a
MD5 6dfd6cdff71ecce3764b59c954f3622e
BLAKE2b-256 8cdfc9f10f091ea00efbcbf6cf2390e8f06c14fab42fb4745286226a9efcd213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dabd11310e9c4c7968a273ff0553e59c8c5b6146642ec0c42db74580f4526a6
MD5 09e94bd1beaa72388fe27961ed407f85
BLAKE2b-256 1ffd171808727323ffef126cf203e524dd02945790c26d134ba58e70cee3675e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5006f1cd5205689efa34b9c9aa47e3c325c08b6b6ccb4239c4ee2593a2560cc
MD5 8cba8caa79ffd1a8da60c342f504c409
BLAKE2b-256 52229bb0efbb57d21ffee9d6a661ac26284fdf96dba2680602bdf54039eddb44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55ba9f774bdea4ca41f305255f7f21f6afc56213e82103a592bdc22980f08060
MD5 a2611685639b6a98e53ecfc6c8305947
BLAKE2b-256 643e3cdcc289b3a577e62f49dc52d6080e362f5f7903bb419ba1afde3193afc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac31e0328a833cbe1dbf236e211d323eae3ba8157f67fba47768387e5fe4030c
MD5 5c19569ac29e2395812dbfbce8d62750
BLAKE2b-256 856e790014faca30d4544b7e275fed29c1e658fd07bbc4cc45a361557a03e597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88f662272bee4e75a17a249e69534e50352576220653e3606cd4b3cdad8df9aa
MD5 18db9c0bc32e2b0b603af6869f23cfe0
BLAKE2b-256 ac80f4b11183b501c7c39cd71a464f12f158cca60d80fde3cffe5264b04f5ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a018a6a7ca20336f8ceae97cf6ad2601befc4ffba914954c86b10f0de89d50c7
MD5 666551a31ff810aa779ccb44aae2fa71
BLAKE2b-256 36cfcdd53d899cb89e1e869cd7edb30a306d0e5d9a70f61dd75e793c850a4acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e09b40e0af96346a79cf7ab1c6088dd919c391e9fb525b08eacc4e6c301261e
MD5 9310cb85ea0a2c3e6815fa4c53d46020
BLAKE2b-256 9cdd3b71f0519aff3101055f089414915f6739756993e33f44d26eeab7324dfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 022e1cf4c611e117421237f2fc30772ea13d3b7f36a321b3f4eb6d039df09a08
MD5 0eb3ac525960123f116d02101daa9f13
BLAKE2b-256 3a77e06c66edb43d0b60d269c706c346c5f44aebeaeef46385890442a828f604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75a7ceb464346832de32472cc2d2f170e00c7c87d6edee4044a7f592ce29d87d
MD5 d8231707dca5097d7315181e8d63b545
BLAKE2b-256 43052f11dcaec23468e62674c0e011ef2f5821a7b7f95c96f5ba271d4b7ec8b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dc6cf30fe1a7950a0f68a04e20d288068ffc6b1e6d9f9980115fb094c9b03be
MD5 5222f9d52ba7476bee57cce3ab95d9f3
BLAKE2b-256 b22b9497bd98b11391745902001c07c4c240e6d71d19b63aa7531d0b0db7b33f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 352cb4497eb9df86dfb018b6a6154df28dea47353ff839bf5b87dafeda5357a8
MD5 7bae8825d608f19363993772791b8d84
BLAKE2b-256 374eb5c127ab706ec24c522297b49e044bd6c2c86d87feced2cbb72e3f70f29f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d09a75afc0becedad0b227491a1148a8619302bee3f41d41eb1cb422d654b0be
MD5 7b2ae0d36a88d510054f34794f152775
BLAKE2b-256 80e7729ba485c896c90f8caf56d7fa85aa554595c81a507f417dbb76dd0455d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af7affaaf6d43a370dac63c026892230db573ccdb9a66881425e6b30f563d415
MD5 0610c6868f2efb3c1e5da3f45e338eb6
BLAKE2b-256 8802c2ad6e9e448eb898bb3bdf1090ef06bfc9d43e4e16d70ab60c9257200db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 439b68f575d11e405d439a7d44f6f44232cc6a95d2f183ff532dd808d9d37e96
MD5 b6c6de790265b9b946c1d793edd6ee75
BLAKE2b-256 81a5d5ab973620b1a09527faee73ad3d404ad0cf6414f11ebb5148f7d3379c09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11a5cc0125f017d6cb57bb9cc984ea43d49fce1542acaebae9d477e103f47e1a
MD5 2e3f9fecc76d4fbc25da82eb7710154d
BLAKE2b-256 f7ba9a957b4a7f7b8385bb55d9121988c548fae75c79b4bbe9cc4facf01865da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b58686705e7556c1176eef6cf750c7e5eea9f74fea85d6962695a654290548fb
MD5 b6e2c899c56458ed7c684802ea4427c5
BLAKE2b-256 91db54cd56f6dab340c44e81c3bcd42e321c7d85ccdb2fae09a2770ba7ada23d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19f45ef4da55bf3ca3019baaffab17d329fe20900f5f84fe93f0e0849cf1b575
MD5 b31ebadbc509d1bd1e4150e0a4d0d76e
BLAKE2b-256 eff3711459f83379dfae09189624272797b27a8e92ab06e05a7733b0d7237320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d0f7dcb6d368b160243d9b4486f3d9537e6d7ee15170cd327c1d9c15cd7ab98
MD5 33ab6b822608905a3cbc09c5c64b90ba
BLAKE2b-256 e68426ec9554bc6e979a88d3a2f7878756872a4e360c6b322f53462762a9477d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c4d18ee49aa8c6e70cb617db5b48d732cb9e5006c1dd20ad422d62e874385526
MD5 25cd08214094f12ff29ae8dcf3816cd7
BLAKE2b-256 1f9f641dee3b03e31a27411c99653cd0ad79bec1f4783dd9bce0d63f766e9f6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cohere_melody-0.13.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 056ef701f0c33229b982e46eff2d83ad4d9e7ed0d6aa1d0be4f7f95d7964b6f9
MD5 8772d8375d58b671a1b6cdbbedfa8d95
BLAKE2b-256 be763f2b8ad131389e5c3f1e67582b2a51edcb8c8784d364b49efa57567db0f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa1d3177d27961b1022f55299ed9788e31da3f1ca2257681811ce14e297855a6
MD5 92986f4fc96c6007520aadddf829ef8e
BLAKE2b-256 0e4afd06886817a27baeb677ec63ce3b030aae2e81d430a1aa7cac1677c822da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17452634daa5bb309d19835ea70d5f4d010b151af0082591d04a55111d867742
MD5 5628907d7e31c3096a3a505fecb61946
BLAKE2b-256 b6b1ab22c8eaf43daa80f2ae239ab308e78e51e13fdeb47a94cb8e0b8290cd57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65e0c83cccfe0b84cbbcad01e757af12a07f24bd07f9f6b083b686c714d7a0d9
MD5 b6f795a4392a2cb831a3a29a93caf5b8
BLAKE2b-256 a9a423e9f91d8db54e2db3e293d1bd19ce9ed476d184c1ba460a643cfc57c66f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5df85907f7d4b97159c7c595f9e467d6a4191a77d8b8492bed7d52c2b9eaea8f
MD5 2c245cab24e3d9c5f096cc02422b7705
BLAKE2b-256 4ba54a1089945c74aca48ef43eb1cf7b210d7966cecebd2b6443ad322120e9a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3f693387a71e2d1e73a552463d9b03bc9ed6de8e65900652ee257f2842f3567
MD5 62c7ff4b6aa4a3ba7870a7be20ae8b86
BLAKE2b-256 37616b05b70410f62ea5c92748e1df093822f52ed25a21534013aaa3fbb2ac63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd651f2b46063a0d6d551ab316b8d6a482c0c20538d09adb51709e6f85f0ca10
MD5 628a873ccc32a4cd00dd0f5cdadce110
BLAKE2b-256 6b2cd18f7b072f0adefc71f56fd45307d90956e183ca00108b53006ad60a2424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42ab5b8d09774410995bb2ebb39efcb55b2b93c222e3f4ca5441ae7f0cc82b2d
MD5 e2ba935453bf554268db3934c2415a3e
BLAKE2b-256 2b33ec23c01df01de8729f0c54afc0e5eec9044847d1f43f8959e30bfe8063fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6529091d884d54756b4e2e70f033e4f7e8b5176c321ac204a096c0aafe5b4fb8
MD5 756b092e6b00a86e04b42240392fb491
BLAKE2b-256 f497c34561f62b445277e7e544274159979c9943ff7ad70819823bf63db78f85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70721e63690da4e19cb693c565e527b2c2372e8383cbd12e2f373c364988fca7
MD5 e8ef27e096a144b305f6332b7e787842
BLAKE2b-256 8a901cb8823e43aecface19f2de855c18a7e2cb8a2ed175b1682859236e9f62e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06962208316f8076bb7d20505f37f647da64f397a20c5d5d4b23d037fbad4357
MD5 350d1386ab78e682bded570e9f097d26
BLAKE2b-256 fe34c80571e1609e6f298432c007362d5f071b10924c11ce71d98a82a16af452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86bea9b3bdb3d2e0cba382c206a0a26a9c714244519e139fa1beb2faa2c9550a
MD5 ddcac1eb7b25f43b35213c6d0bbe954e
BLAKE2b-256 9ca02e8b8b4915beea0ed7ef67fff5d1e022772db3743a6af458f593acad38f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a4ac1f3325392bb4458ba68e8cd47ecd97ec0ee761f07baf8b9912e8c7eeeb2
MD5 5c760c722488ad29f7e51a4f7f08db92
BLAKE2b-256 c253345ee4e8590c1963374e1b81f06c77d327449cb592eda96e37c9842b9294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd5ed87fedaef88d1259c4a11932cc6291f214c5a9d53c78dfcb289a177976b7
MD5 ede0f10f2891e1085e85b54deae2fa18
BLAKE2b-256 cb8390c58adb803e5f47d985b79ce04830f257255a2fec1c85d9ce25054ebb43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a10cd6f5f1b2ee4807e32f022b0888c1ef8636be90b99cb79a9a6256abe70c9f
MD5 8c1b03f1ea11199e59703b248e43c800
BLAKE2b-256 ae910099643ef67334ddccf1e723218e50dedae6308f6f70b56bea0f66e07f35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 293bf0f727ad2490081b1562d465fdbb74fa1cafc0f53c6a6e540195aa3b6240
MD5 db50d57561ea48c58ab209ebd62d49ef
BLAKE2b-256 779867838d40c5491ec006769a3dfdadd32f716c1f839ed8e4a58bff8d44877e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 733172b6e460803101b79bd6ad789a410e544dc47c5020723cb3d386e37c21b1
MD5 1f9b5f708666f81354b131b0166e0925
BLAKE2b-256 ea843d42d04d6e62eb2281ad7b19c94736376908e140cb8ec33d27b8035f45fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32e8742133f708c5523fa89ba2810e88aca7d590db1d87002db00cd8aecf33dd
MD5 b540de40737e554882a10fd1549f1ce1
BLAKE2b-256 cf9166a461a16d37811eb47ce503d968d25a329451fe77ae1741b93435b0fb6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d88f344e28cfa36600c3225bee64fb2cc6c94430b4028e6cbb586434ded6286
MD5 f4c20a1aadd120e4854973085d66813d
BLAKE2b-256 34b153b90b4b4da97dfe3352ad1ced1725687bc1a8012b1dfa5500b14668b300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc65c85a7f46f0427261c12d4d3e49d27b1c986f9a4d3b6e4a59db2746b32c5d
MD5 5486a8d1c95cf5b75c5caf272847233c
BLAKE2b-256 def476b9e3e047a925e233948a4a749683b1772567527165e856fef32c260fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ad53d9f96adeb7cb17c32831575acbe70d56c40dcc6ae89b6b4d4d199dbecbd
MD5 84e0d97fdbaaa77850119009dde74508
BLAKE2b-256 9ef3db8d52b78c8fe327219e92d60b475969882c1935c08060ac1370c15b95d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 055f004a559d3e0f56b1c9c5551234324942895a89165245edfcbd003d1578b0
MD5 1c5126c1c4e9ae080c46843ef6260489
BLAKE2b-256 2f76aebc6306ee32337622667dfed570f3b4a9154a6a49ccc970f9a2caaf7180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba60234ccd0d250cd09304da083255a4aa4d9489a5fcdbbeabb1a7410473d9f8
MD5 0fb1e3184e5ab953624e0fefe697aea8
BLAKE2b-256 91fff8b19940f05612c2448216e48412965b29ef35d303a66acbf7a50c03f133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a187024f87c62cfa2720451b7ec995d0ae0640319786f778b0f8d16a86e4cfd
MD5 03666fadfa8b31371b888c3fdf392937
BLAKE2b-256 1f8659c9c0172245dffd9ffff80aeab14fad2f668f56a9559994f83b261b3145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b97977b3a3d697377fce746247cc7096008593c91cf907cc6aae5068b5e55259
MD5 fe1c95f4083451e1713a34a1f94f0e88
BLAKE2b-256 c8489c913acc864ad4f59fcbb79fcfb1590eddf8ea3ab441def27702125393df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f6b19382eba4530c32105a10f94f2a1188c2b573b817dd59169075f96d6437b
MD5 56f0991b324c50a4768ebbf9bcf233e3
BLAKE2b-256 68f84de3b85a612a5ae57b58b191c1777914a533219e56f3b53a8dc2bcc8f743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5f66c790f78b2b28ab09253e4a908fb6ea309a7b37a92dfa6c706a11a718157
MD5 1fdc0579cd95f7c275b3ee99425a4835
BLAKE2b-256 7842b98dd33576509d7dadb88f258c17ffd9e1ecf745d3ab516a2042c03758bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf55efef6fd01e6cd8ae84c9ca714649e7f3cfdccf3f9fdbec5fc54d63236c79
MD5 6784885a0f0c9375d200d21ee9b38044
BLAKE2b-256 03c21d05392171753e492351020152c4b3ce50d6cbda9e35a271f1b9fd3237a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af1f577944cbe61fdb96d100490d05034d0af15bad5ccdd90c35d76bb42abbee
MD5 6f0413e5495d8fe58c77c8790c6cc7cb
BLAKE2b-256 718d0e5a109e7b5ccc09035330b780b3a214329aa30b101e9e15bf707a028d79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae04e82abc2a63c9a4d2713381ed615ae30f678e4ab50b74c4c85ce37369f9ee
MD5 e488383aaf096168e6f300b6bac25f20
BLAKE2b-256 027ade3c0a22a84f6cc54f4df0ed7518775324562b9da14906e0223509e87f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa02de9fd63dfb259f04b8e585b54ed07c00adc6d5dc66d97d87c4645f3e5249
MD5 c88db6d9c5514acef3a3658ebe015774
BLAKE2b-256 fe21048613ed8656ede2f05f2bcb691578fe27ec09fe4c7fa062aec10f314d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8608edf5f60f9b74cb900811c9e5fe777db9ddfd46db93a1d9e2a84f11947a45
MD5 c2de54f10e41251c6ff4a38d06203167
BLAKE2b-256 179aad661cb00c74013ac3934b83a418f696327d40f1dac68807e2abf4032697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a61cb5475a27a0de8a276ba8aecb4260d6467a18203dc61935d6bb3f761fd417
MD5 1a3bd983ede92cd6dee17cdc00e9f563
BLAKE2b-256 4576c5d5da7029daea465bab2763d5bf385e2d2c439f8dab3effc0a536abb1c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2895dc86588d4627c811e8229b012d389faeed2bab3febfdbc09c082cb2ef4c3
MD5 f8a3d1857f8e3d0ce23f6649f6d59cf4
BLAKE2b-256 43b757d459a1b927912956bfd2cffa112740e52c5083802c55a34dedfc095f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93c675b4a63446db2b0317bae5fd0a1cf51388bc6cfeabd019112cc7979eea4d
MD5 eab0c3d6a052cc2785bae6ee4cf6b0cb
BLAKE2b-256 816aa805555ff8a3ffa6bb026547c5df0732fb47219f6727beb73449c1d6b211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89bb0ced44f45275910793c1f23a958589c428e033ac5265217d00264ff5ead0
MD5 da6c343554eae9a5237dc7e7284a653d
BLAKE2b-256 6eaca77bd27f0f3b836f493910cd53e8343207cee53c75dcfee82d66c13453f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8529ff01c84e0dfdb3633dacb4888531b9f81d259b0d7609f0aed45e5403b6e8
MD5 87ea45862187dc5c64d9881f359ef2ce
BLAKE2b-256 75a2d6103a721a5e59eafb6accd551851641153dd63f43e2ad40c361c68c4a19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c6f9f3cd3b17ffeb384856804b05db3fd32f9f60f589e40f613f970039056c0
MD5 14f065b1b498903c5ab0524e92143257
BLAKE2b-256 93d78a322cc7e98c31cb2ffd16ee499983c721d5980251303a904c30372b4c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c480eb111f877adc3a9600edc713d7b665bcf2addcdf90cd7a07edb7933bd015
MD5 c8cf96baee56da7a12d036a1522459fe
BLAKE2b-256 d82de44b5bacf8208595deeaa616ae39a5a64213003422666e60ee4b5b560346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8f7788c22aaf22b39ebc225479b949fa7100668220fad9b228268583c77ea3f
MD5 8718d7361b775b6275ee5c026a4f388e
BLAKE2b-256 b4e9c1fbd58b6bbce209e47b0d9f0eb7eacd49f3abba224b83cd5663b3185765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cb637088039be615aca3b19d7ef9e3bf871f6fa16215aca60aac71529b7de18
MD5 8e7ef87c7e90a1426a2ffcef66bc4e51
BLAKE2b-256 559b6f7b556b17fcfdefb5a83e097a7cdfa098929711830f73a81e74c35d8cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c86205792eb74aeed4036edd65dd3dbdb935afbff583b7b3600da7029f5950db
MD5 dcbc04fc523fd5d4b4bc665f69f12404
BLAKE2b-256 ff00086377d3ff9610c55b421925fdce32ebdaa84a191f20df8ae9c392862068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69f3edfee7f13205a0cd441b0598cf6b70fd0cb1fdee0d2062ce7b92b1fde79f
MD5 6ead21d5ffe8074cb0e381ba9dcaa5d1
BLAKE2b-256 b256f3bd9a537c2e3aec77bf1e9d02088a9315472d0c21a46273925e48bd8785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b5bb5795c7e08f24c84108713fa150a708ea58f0b2a9e784d303881ffc575db
MD5 b6e3b36d7e416ce8251b07f4087e2839
BLAKE2b-256 16b07dcacf13245170c1b957e2da99e93b8f8cc47532f116b9d630bc39fedbf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9169519113d4c408c241b6a8765ba98a9989b88d0816ece88d2561d3c92d91c6
MD5 66315a8ce083fc68eada59db531427b1
BLAKE2b-256 43575f54dbcc4da0672396980d1cd8349a7351bd7b64b977347934568705c388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28d55c5576f45bf9013e4072f2233d71bf24ceed81bfe293954956ad569a2a0a
MD5 e173d0d8f1cf6208a6adb8fa1428053e
BLAKE2b-256 3d0c464bb519eff53a76462dad15bd4e4bc7536ca64bac9bc12a43934d23133a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2682b98483a114d06974be537a4563547368a01a3dd5d913afad2ee70d46883e
MD5 7d356160095ef694451ffa310dc3b3c3
BLAKE2b-256 14a320510693dd992bff7c9639f41dc28d42ff39dac58fb905093281f924d506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4c44d2c5ca362578b3f0491da24e7787ec2bc04ea297b8985abcdd139834bfc
MD5 595f82f597b7b88802a81352983632b5
BLAKE2b-256 eeb66f01be14881005d880622de6f08ff4df466843fdd8d753eac2f0a3e2d71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79edf894fc39aa166457a03cfb64c8f64878fa30b1cd816446cadcc8e0590ae4
MD5 2cb0342b83eba9e1dd743cf5b17e15da
BLAKE2b-256 2b1239faa00ca2c244d18fce40350a9242b5c59b9bb4d20f6d72fbde2f1170ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e089cdd69b05be73ac5d0749c9c395befe2aec54f2269af9c82c96347fcb291
MD5 cd621ae1f3d5d53926974e20d180a1ce
BLAKE2b-256 dfc391933b2a6bdd2ea0b7c8a1ea15a9eaa87c81c5aff90040b21314d9a89fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01c9137b9c5974c044b2a65fe825ef0c3f8e3384a0b09408e1ee88aca02579a6
MD5 40d4c395f104bf60e14dea1f8c84b6c6
BLAKE2b-256 d1eb2081573258f2e7279158e5a7da34a612caf1798574c74e168df266d5585b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0acae4e93b235279596e7d993553aaa6a790e202de3470a890285569a36a1f3
MD5 12ba51bde1e36967635d9130f6cf9743
BLAKE2b-256 1268e9c2118a616e1d91a7348d1b0705a9aad48d38685e78e110ebb920d591a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9d5d1d6c06ad5fb67ffce3f697076bae7a48bed86b22f366fcce5740ddba0acb
MD5 180a675f9a0ca0b641cfd80d92e924bd
BLAKE2b-256 79c2c64730e8289084988fc3aaca2f4daaf5c218e2ab14f153b8b07f1bb75269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c286aa6153794654b85ac79267499c905124ab9cd6c93af4384158a7ec27759
MD5 958def05064ddede666c43ed71c064f9
BLAKE2b-256 76e17b566a0bd0df4a039258bf881584a64d32da8c4b766863dadda14e51a922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab2b18d89c891878d74afa26c94a50948a842b180d6a257195fbbede5befbdf4
MD5 0810afe94e4e0f0edf9ff25d8ea7be3a
BLAKE2b-256 0627349011c52b36e8f1968ccbf8c0faa74d3f968597096b8457b0f9dc22136a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95bbee24d98ddf94fb28bdecfbfa00f86c48cd610cd2e7d012b4a485b828bc56
MD5 5077926de1b8b443f32939609bfcacd5
BLAKE2b-256 0feff8eb7e8284d5fffa278ce353d2b9823abd4e9069d0b4b2b8a9fc414a1bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 718d4172ece87f6a80e18b9bf2b9b27fe9c9f723099f4ad02dc97d9363fd172a
MD5 c90bd8745419b9b1a3680b9257bfaec9
BLAKE2b-256 06d8d64c5d71b855f393e1c0d5e2762b391b6a8ccb3617a6bdf876129a279d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3f2ffdaf9871cabf1b8d77e846ec55ee92cdc91923d433e8fbe1e2605baecb0
MD5 950a008dc05b25ba88dd4046b48f73e8
BLAKE2b-256 65673e5da10dae534b1de6bef217939c14b13b9259cfda85cb2643291c26fe73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c0a4d0d504757c4646ec741c2a42677bd37f807e7a4920a0e52a226bd18ed99
MD5 4f51dfa029e73e298b1fb7c64cee6c10
BLAKE2b-256 623b9bf83c0fdf87b34a79fe3817a32c2b5ff28642bae9a018b84cbcd7f1caed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36787d49d6be853596d17c9cae9bb842006721cff88cf82f2872812488fb15c5
MD5 fc001f112d15b943919244d23f74c9a1
BLAKE2b-256 a56baa39b6650d2253941ea497dcbee518a5af37923c41aa43fcc24b8ced0c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32002326c4230c859f1736723a271528a9fcb9254bab2a9ba17ab7d32763c50d
MD5 79c1e5d30e854491c8c60e6e08616525
BLAKE2b-256 991782e9e09a966554b5b13e3657588af8d44725b5365751008ba6f8e1059857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d39cc1aabdc55876a69a2690a915821f7007b825542f3e6e015a851ed81a0a7
MD5 a5653796245edf6f06cac8c3a4e22a16
BLAKE2b-256 8ae5e96901b05ac170f131160572ecee4bc710535b8c2ebb0975e2301ef27ff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cohere_melody-0.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd92f81b10b76d360983caf8764bf9e353c79f340b85fd3fe517bfa6f8634325
MD5 d01ad9fc45868406798f2cb994633204
BLAKE2b-256 e697dfdb8e023ee0aca420c19ab13957c2144e1fc7fb8a65281511239ae516cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cohere_melody-0.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

Release history Release notifications | RSS feed

0.13.4

85 files

0.13.3

85 files

This release

0.13.2 This release

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