From 5a1a7441aa13150695d3932f506fbda7552c0142 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 8 Aug 2025 13:12:16 -0600 Subject: [PATCH] Always start the embeddings process --- frigate/app.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/frigate/app.py b/frigate/app.py index 00d620666..453fc77a7 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -246,18 +246,7 @@ class FrigateApp: logger.info(f"Review process started: {review_segment_process.pid}") def init_embeddings_manager(self) -> None: - genai_cameras = [ - c for c in self.config.cameras.values() if c.enabled and c.genai.enabled - ] - - if ( - not self.config.semantic_search.enabled - and not genai_cameras - and not self.config.lpr.enabled - and not self.config.face_recognition.enabled - ): - return - + # always start the embeddings process embedding_process = EmbeddingProcess( self.config, self.embeddings_metrics, self.stop_event )