mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-16 13:27:35 +03:00
47 lines
1.7 KiB
JSON
47 lines
1.7 KiB
JSON
{
|
|
"label": "Semantic search configuration",
|
|
"description": "Settings for semantic search which builds and queries object embeddings to find similar items.",
|
|
"enabled": {
|
|
"label": "Enable semantic search",
|
|
"description": "Enable or disable the semantic search feature."
|
|
},
|
|
"reindex": {
|
|
"label": "Reindex all tracked objects on startup",
|
|
"description": "Trigger a full reindex of historical tracked objects into the embeddings database."
|
|
},
|
|
"model": {
|
|
"label": "The CLIP model to use for semantic search",
|
|
"description": "The embeddings model to use for semantic search (for example 'jinav1')."
|
|
},
|
|
"model_size": {
|
|
"label": "The size of the embeddings model used",
|
|
"description": "Select model size; 'small' runs on CPU and 'large' typically requires GPU."
|
|
},
|
|
"device": {
|
|
"label": "The device key to use for semantic search",
|
|
"description": "This is an override, to target a specific device. See https://onnxruntime.ai/docs/execution-providers/ for more information"
|
|
},
|
|
"triggers": {
|
|
"label": "Trigger actions on tracked objects that match existing thumbnails or descriptions",
|
|
"description": "Actions and matching criteria for camera-specific semantic search triggers.",
|
|
"friendly_name": {
|
|
"label": "Trigger friendly name used in the Frigate UI"
|
|
},
|
|
"enabled": {
|
|
"label": "Enable this trigger"
|
|
},
|
|
"type": {
|
|
"label": "Type of trigger"
|
|
},
|
|
"data": {
|
|
"label": "Trigger content (text phrase or image ID)"
|
|
},
|
|
"threshold": {
|
|
"label": "Confidence score required to run the trigger"
|
|
},
|
|
"actions": {
|
|
"label": "Actions to perform when trigger is matched"
|
|
}
|
|
}
|
|
}
|