From d00a58c7f2ab99d25f4b4b814a5b7605e0a267e0 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 96b09d2b7..5898bd9d2 100644 --- a/frigate/config/classification.py +++ b/frigate/config/classification.py @@ -49,7 +49,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.", ) @@ -94,7 +94,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.", )