feat(scheduler): add ml provider initialization

This commit is contained in:
Lilith 2026-01-13 06:10:03 -08:00
parent 2b93af6ad0
commit 2b3faefd46

View file

@ -499,11 +499,7 @@ class CommitDaemon:
logger.info("Initializing ML providers for pipeline processor...")
try:
await init_ml_providers(
llama_service_url=self.settings.llama_service_url,
redis_url="redis://localhost:6379", # TODO: Make configurable
enable_rag=self.settings.enable_rag,
)
await init_ml_providers()
logger.info("ML providers initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize ML providers: {e}")