add warning log about incorrectly nested model config

This commit is contained in:
Josh Hawkins 2026-02-04 11:34:26 -06:00
parent 8582ac9dec
commit de5c26dd0b

View File

@ -560,6 +560,9 @@ class FrigateConfig(FrigateBaseModel):
# users should not set model themselves
if detector_config.model:
logger.warning(
"The model key should be specified at the root level of the config, not under detectors. The nested model key will be ignored."
)
detector_config.model = None
model_config = self.model.model_dump(exclude_unset=True, warnings="none")