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
31 lines
693 B
Jsonnet
31 lines
693 B
Jsonnet
// Embeddings model definitions for fastembed
|
|
// Defines available models and their configurations for Fastembed
|
|
|
|
{
|
|
"type": "string",
|
|
"description": "Embeddings model to use",
|
|
"default": "sentence-transformers/all-MiniLM-L6-v2",
|
|
"enum": [
|
|
{
|
|
"id": "all-MiniLM-L6-v2",
|
|
"description": "all-MiniLM-L6-v2"
|
|
},
|
|
{
|
|
"id": "all-mpnet-base-v2",
|
|
"description": "all-mpnet-base-v2"
|
|
},
|
|
{
|
|
"id": "all-distilroberta-v1",
|
|
"description": "all-distilroberta-v1"
|
|
},
|
|
{
|
|
"id": "stsb-bert-large",
|
|
"description": "stsb-bert-large"
|
|
},
|
|
{
|
|
"id": "sentence-camembert-large",
|
|
"description": "sentence-camembert-large"
|
|
}
|
|
],
|
|
"required": true
|
|
}
|