PlanningEngine constructor

PlanningEngine({
  1. LLMCore? llmCore,
  2. ConsciousnessLogger? logger,
})

Implementation

PlanningEngine({
  LLMCore? llmCore,
  ConsciousnessLogger? logger,
})  : _llm = llmCore,
      _logger = logger ?? ConsciousnessLogger('PlanningEngine'),
      _uuid = const Uuid();