Skip to main content

mixtape_core/models/
cohere.rs

1//! Cohere models
2
3use super::define_model;
4
5define_model!(
6    /// Command R+ - Enterprise RAG and multi-step tool use model
7    CohereCommandRPlus {
8        display_name: "Command R+",
9        bedrock_id: "cohere.command-r-plus-v1:0",
10        context_tokens: 128_000,
11        output_tokens: 4_096
12    }
13);