mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-03 15:01:00 +02:00
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
35 lines
845 B
Jsonnet
35 lines
845 B
Jsonnet
// Cohere LLM Model Definitions
|
|
// Defines available models and their configurations for Cohere
|
|
|
|
{
|
|
"type": "string",
|
|
"description": "LLM model to use",
|
|
"default": "command-r-plus-08-2024",
|
|
"enum": [
|
|
{
|
|
id: "command-r-plus-08-2024",
|
|
description: "Command R+ (August 2024)"
|
|
},
|
|
{
|
|
id: "command-r-08-2024",
|
|
description: "Command R (August 2024)"
|
|
},
|
|
{
|
|
id: "command-r-plus",
|
|
description: "Command R+ (legacy)"
|
|
},
|
|
{
|
|
id: "command-r",
|
|
description: "Command R (legacy)"
|
|
},
|
|
{
|
|
id: "command",
|
|
description: "Command"
|
|
},
|
|
{
|
|
id: "command-light",
|
|
description: "Command Light"
|
|
},
|
|
],
|
|
"required": true
|
|
}
|