Enum PlanningStyle
Planning methodology styles.
public enum PlanningStyle
Fields
Agile = 0Agile iterative approach.
Waterfall = 1Traditional sequential approach.
Structured = 2Structured hierarchical approach.
Lean = 3Lean minimal approach.
Creative = 4Creative exploratory approach.
Examples
Configuring a planning template for an agile workflow:
using LMKit.Agents.Templates;
var planner = new PlanningAgentTemplate { Style = PlanningStyle.Agile };