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
61 lines
1.5 KiB
Jsonnet
61 lines
1.5 KiB
Jsonnet
// Mistral LLM Model Definitions
|
|
// Defines available models and their configurations for Mistral AI
|
|
|
|
{
|
|
"type": "string",
|
|
"description": "LLM model to use",
|
|
"default": "mistral-medium-2508",
|
|
"enum": [
|
|
// Featured models
|
|
{
|
|
id: "mistral-medium-2508",
|
|
description: "Mistral Medium 3.1"
|
|
},
|
|
{
|
|
id: "mistral-large-2512",
|
|
description: "Mistral Large 3"
|
|
},
|
|
{
|
|
id: "mistral-small-2506",
|
|
description: "Mistral Small 3.2"
|
|
},
|
|
{
|
|
id: "ministral-14b-2512",
|
|
description: "Ministral 3 14B"
|
|
},
|
|
{
|
|
id: "ministral-8b-2512",
|
|
description: "Ministral 3 8B"
|
|
},
|
|
{
|
|
id: "ministral-3b-2512",
|
|
description: "Ministral 3 3B"
|
|
},
|
|
{
|
|
id: "magistral-medium-2509",
|
|
description: "Magistral Medium 1.2 (reasoning)"
|
|
},
|
|
{
|
|
id: "magistral-small-2509",
|
|
description: "Magistral Small 1.2 (reasoning)"
|
|
},
|
|
{
|
|
id: "devstral-2512",
|
|
description: "Devstral 2 (code)"
|
|
},
|
|
// Other models
|
|
{
|
|
id: "codestral-2508",
|
|
description: "Codestral (code)"
|
|
},
|
|
{
|
|
id: "pixtral-large-2411",
|
|
description: "Pixtral Large (vision)"
|
|
},
|
|
{
|
|
id: "open-mistral-nemo",
|
|
description: "Open Mistral Nemo"
|
|
},
|
|
],
|
|
"required": true
|
|
}
|