mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-16 08:51:14 +03:00
language consistency
This commit is contained in:
parent
e7ef6139ec
commit
231e60d10a
@ -49,8 +49,8 @@ class StationaryConfig(FrigateBaseModel):
|
|||||||
class DetectConfig(FrigateBaseModel):
|
class DetectConfig(FrigateBaseModel):
|
||||||
enabled: bool = Field(
|
enabled: bool = Field(
|
||||||
default=False,
|
default=False,
|
||||||
title="Detection enabled",
|
title="Enable object detection",
|
||||||
description="Enable or disable object detection for all cameras; can be overridden per-camera. Detection must be enabled for object tracking to run.",
|
description="Enable or disable object detection for all cameras; can be overridden per-camera.",
|
||||||
)
|
)
|
||||||
height: Optional[int] = Field(
|
height: Optional[int] = Field(
|
||||||
default=None,
|
default=None,
|
||||||
|
|||||||
@ -29,7 +29,7 @@ class RetainConfig(FrigateBaseModel):
|
|||||||
class SnapshotsConfig(FrigateBaseModel):
|
class SnapshotsConfig(FrigateBaseModel):
|
||||||
enabled: bool = Field(
|
enabled: bool = Field(
|
||||||
default=False,
|
default=False,
|
||||||
title="Snapshots enabled",
|
title="Enable snapshots",
|
||||||
description="Enable or disable saving snapshots for all cameras; can be overridden per-camera.",
|
description="Enable or disable saving snapshots for all cameras; can be overridden per-camera.",
|
||||||
)
|
)
|
||||||
clean_copy: bool = Field(
|
clean_copy: bool = Field(
|
||||||
|
|||||||
@ -444,7 +444,7 @@ class FrigateConfig(FrigateBaseModel):
|
|||||||
# GenAI config (named provider configs: name -> GenAIConfig)
|
# GenAI config (named provider configs: name -> GenAIConfig)
|
||||||
genai: Dict[str, GenAIConfig] = Field(
|
genai: Dict[str, GenAIConfig] = Field(
|
||||||
default_factory=dict,
|
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.",
|
description="Settings for integrated generative AI providers used to generate object descriptions and review summaries.",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user