From 1cb7cb38e6aa8e7fd8d26e2aadd5036ab11d8092 Mon Sep 17 00:00:00 2001 From: Max Lansing Date: Wed, 18 Feb 2026 18:32:00 -0800 Subject: [PATCH] onnx detector: pass model extra config through to provider setup --- frigate/detectors/plugins/onnx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/detectors/plugins/onnx.py b/frigate/detectors/plugins/onnx.py index 6c9e510ce..6b0eb3ce8 100644 --- a/frigate/detectors/plugins/onnx.py +++ b/frigate/detectors/plugins/onnx.py @@ -40,6 +40,7 @@ class ONNXDetector(DetectionApi): path, detector_config.device, model_type=detector_config.model.model_type, + **detector_config.model_extra, ) self.onnx_model_type = detector_config.model.model_type