Merge remote-tracking branch 'origin/enrichments_gpu_id' into enrichments_gpu_id

This commit is contained in:
baudneo 2025-08-01 17:04:41 -06:00
commit 95cdf5647c
No known key found for this signature in database
GPG Key ID: 51445F2ED08EBC7F

View File

@ -49,8 +49,8 @@ class SemanticSearchConfig(FrigateBaseModel):
) )
device: Optional[str] = Field( device: Optional[str] = Field(
default=None, default=None,
title="The gpu id to use for semantic search.", title="The device key to use for semantic search.",
description="This is an override, to target a specific gpu use: '0', '1', etc.", description="This is an override, to target a specific device. See https://onnxruntime.ai/docs/execution-providers/ for more information",
) )
@ -94,8 +94,8 @@ class FaceRecognitionConfig(FrigateBaseModel):
) )
device: Optional[str] = Field( device: Optional[str] = Field(
default=None, default=None,
title="The gpu id to use for face recognition.", title="The device key to use for semantic search.",
description="This is an override, to target a specific gpu use: '0', '1', etc.", description="This is an override, to target a specific device. See https://onnxruntime.ai/docs/execution-providers/ for more information",
) )
@ -157,8 +157,8 @@ class LicensePlateRecognitionConfig(FrigateBaseModel):
) )
device: Optional[str] = Field( device: Optional[str] = Field(
default=None, default=None,
title="The gpu id to use for license plate recognition.", title="The device key to use for semantic search.",
description="This is an override, to target a specific gpu use: '0', '1', etc.", description="This is an override, to target a specific device. See https://onnxruntime.ai/docs/execution-providers/ for more information",
) )