From 2cc42db8b868b8f7503c61d4ec12210f2ea5aa5c Mon Sep 17 00:00:00 2001 From: baudneo <86508179+baudneo@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:53:31 -0600 Subject: [PATCH] fix typos --- frigate/config/classification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frigate/config/classification.py b/frigate/config/classification.py index 113eb2df7..09efc0f1b 100644 --- a/frigate/config/classification.py +++ b/frigate/config/classification.py @@ -132,7 +132,7 @@ class SemanticSearchConfig(FrigateBaseModel): ) device: str = Field( default="CPU", - title="The device to use for license plate recognition.", + title="The device to use for semantic search.", description="Use 'cpu' or 'gpu', to target a specific gpu use: '0', '1', etc.", ) @@ -203,7 +203,7 @@ class FaceRecognitionConfig(FrigateBaseModel): ) device: str = Field( default="CPU", - title="The device to use for license plate recognition.", + title="The device to use for face recognition.", description="Use 'cpu' or 'gpu', to target a specific gpu use: '0', '1', etc.", )