mixtape-core 0.4.0

An agentic AI framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cohere models

use super::define_model;

define_model!(
    /// Command R+ - Enterprise RAG and multi-step tool use model
    CohereCommandRPlus {
        display_name: "Command R+",
        bedrock_id: "cohere.command-r-plus-v1:0",
        context_tokens: 128_000,
        output_tokens: 4_096
    }
);