trustgraph/trustgraph_configurator/templates/2.2/parameters/cohere.jsonnet
elpresidank 74cc8a4685 Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b
git-subtree-dir: ai-context/trustgraph-templates
git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
2026-04-05 21:09:49 -05:00

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
}