mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-06 11:52:10 +02:00
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
23 lines
535 B
Jsonnet
23 lines
535 B
Jsonnet
// Embeddings model definitions for Ollama
|
|
// Defines available models and their configurations for Ollama
|
|
|
|
{
|
|
"type": "string",
|
|
"description": "Embeddings model to use",
|
|
"default": "all-minilm:latest",
|
|
"enum": [
|
|
{
|
|
"id": "all-minilm:latest",
|
|
"description": "all-MiniLM-L6-v2"
|
|
},
|
|
{
|
|
"id": "nomic-ai/nomic-embed-text-v1.5-Q",
|
|
"description": "nomic-embed-text-v1.5-Q"
|
|
},
|
|
{
|
|
"id": "mixedbread-ai/mxbai-embed-large-v1",
|
|
"description": "mxbai-embed-large-v1"
|
|
},
|
|
],
|
|
"required": true
|
|
}
|