feat(scheduler): ✨ add settings and llm client to ml provider init
This commit is contained in:
parent
2b3faefd46
commit
443d4fbf07
1 changed files with 4 additions and 1 deletions
|
|
@ -499,7 +499,10 @@ class CommitDaemon:
|
|||
|
||||
logger.info("Initializing ML providers for pipeline processor...")
|
||||
try:
|
||||
await init_ml_providers()
|
||||
await init_ml_providers(
|
||||
settings=self.settings,
|
||||
llm_client=self.llm_client,
|
||||
)
|
||||
logger.info("ML providers initialized successfully")
|
||||
except Exception as e:
|
||||
logger.error(f"Failed to initialize ML providers: {e}")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue