From 231e60d10a494cbe5fe939bb9b4ede53d7a262b1 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 20 Mar 2026 07:56:52 -0500 Subject: [PATCH] language consistency --- frigate/config/camera/detect.py | 4 ++-- frigate/config/camera/snapshots.py | 2 +- frigate/config/config.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frigate/config/camera/detect.py b/frigate/config/camera/detect.py index 19ba670a66..c0a2e70369 100644 --- a/frigate/config/camera/detect.py +++ b/frigate/config/camera/detect.py @@ -49,8 +49,8 @@ class StationaryConfig(FrigateBaseModel): class DetectConfig(FrigateBaseModel): enabled: bool = Field( default=False, - title="Detection enabled", - description="Enable or disable object detection for all cameras; can be overridden per-camera. Detection must be enabled for object tracking to run.", + title="Enable object detection", + description="Enable or disable object detection for all cameras; can be overridden per-camera.", ) height: Optional[int] = Field( default=None, diff --git a/frigate/config/camera/snapshots.py b/frigate/config/camera/snapshots.py index c367aad8e2..5a7f8480cd 100644 --- a/frigate/config/camera/snapshots.py +++ b/frigate/config/camera/snapshots.py @@ -29,7 +29,7 @@ class RetainConfig(FrigateBaseModel): class SnapshotsConfig(FrigateBaseModel): enabled: bool = Field( default=False, - title="Snapshots enabled", + title="Enable snapshots", description="Enable or disable saving snapshots for all cameras; can be overridden per-camera.", ) clean_copy: bool = Field( diff --git a/frigate/config/config.py b/frigate/config/config.py index ea21fa8314..699092d7dc 100644 --- a/frigate/config/config.py +++ b/frigate/config/config.py @@ -444,7 +444,7 @@ class FrigateConfig(FrigateBaseModel): # GenAI config (named provider configs: name -> GenAIConfig) genai: Dict[str, GenAIConfig] = Field( default_factory=dict, - title="Generative AI configuration (named providers).", + title="Generative AI configuration", description="Settings for integrated generative AI providers used to generate object descriptions and review summaries.", )