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.", )