mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Genai bugfix (#14880)
* Fix genai init when disabled at global level * use genai config for class init
This commit is contained in:
parent
580f35112e
commit
143bab87f1
@ -62,7 +62,7 @@ class EmbeddingMaintainer(threading.Thread):
|
|||||||
self.requestor = InterProcessRequestor()
|
self.requestor = InterProcessRequestor()
|
||||||
self.stop_event = stop_event
|
self.stop_event = stop_event
|
||||||
self.tracked_events = {}
|
self.tracked_events = {}
|
||||||
self.genai_client = get_genai_client(config.genai)
|
self.genai_client = get_genai_client(config)
|
||||||
|
|
||||||
def run(self) -> None:
|
def run(self) -> None:
|
||||||
"""Maintain a SQLite-vec database for semantic search."""
|
"""Maintain a SQLite-vec database for semantic search."""
|
||||||
|
@ -6,7 +6,7 @@ from typing import Optional
|
|||||||
|
|
||||||
from playhouse.shortcuts import model_to_dict
|
from playhouse.shortcuts import model_to_dict
|
||||||
|
|
||||||
from frigate.config import CameraConfig, GenAIConfig, GenAIProviderEnum
|
from frigate.config import CameraConfig, FrigateConfig, GenAIConfig, GenAIProviderEnum
|
||||||
from frigate.models import Event
|
from frigate.models import Event
|
||||||
|
|
||||||
PROVIDERS = {}
|
PROVIDERS = {}
|
||||||
@ -52,12 +52,19 @@ class GenAIClient:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
def get_genai_client(genai_config: GenAIConfig) -> Optional[GenAIClient]:
|
def get_genai_client(config: FrigateConfig) -> Optional[GenAIClient]:
|
||||||
"""Get the GenAI client."""
|
"""Get the GenAI client."""
|
||||||
load_providers()
|
genai_config = config.genai
|
||||||
provider = PROVIDERS.get(genai_config.provider)
|
genai_cameras = [
|
||||||
if provider:
|
c for c in config.cameras.values() if c.enabled and c.genai.enabled
|
||||||
return provider(genai_config)
|
]
|
||||||
|
|
||||||
|
if genai_cameras:
|
||||||
|
load_providers()
|
||||||
|
provider = PROVIDERS.get(genai_config.provider)
|
||||||
|
if provider:
|
||||||
|
return provider(genai_config)
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user