mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-05 11:22:11 +02:00
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
39 lines
993 B
Jsonnet
39 lines
993 B
Jsonnet
// Mistral LLM Model Definitions
|
|
// Defines available models and their configurations for Mistral AI
|
|
|
|
{
|
|
"type": "string",
|
|
"description": "LLM model to use",
|
|
"default": "mistral-large-latest",
|
|
"enum": [
|
|
{
|
|
id: "mistral-large-latest",
|
|
description: "Mistral Large (latest)"
|
|
},
|
|
{
|
|
id: "mistral-medium-latest",
|
|
description: "Mistral Medium (latest)"
|
|
},
|
|
{
|
|
id: "mistral-small-latest",
|
|
description: "Mistral Small (latest)"
|
|
},
|
|
{
|
|
id: "open-mistral-nemo",
|
|
description: "Open Mistral Nemo"
|
|
},
|
|
{
|
|
id: "open-mistral-7b",
|
|
description: "Open Mistral 7B"
|
|
},
|
|
{
|
|
id: "open-mixtral-8x7b",
|
|
description: "Open Mixtral 8x7B"
|
|
},
|
|
{
|
|
id: "open-mixtral-8x22b",
|
|
description: "Open Mixtral 8x22B"
|
|
},
|
|
],
|
|
"required": true
|
|
}
|