Table of Contents

Enum PlanningStyle

Namespace
LMKit.Agents.Templates
Assembly
LM-Kit.NET.dll

Planning methodology styles.

public enum PlanningStyle

Fields

Agile = 0

Agile iterative approach.

Waterfall = 1

Traditional sequential approach.

Structured = 2

Structured hierarchical approach.

Lean = 3

Lean minimal approach.

Creative = 4

Creative exploratory approach.

Examples

Configuring a planning template for an agile workflow:

using LMKit.Agents.Templates;

var planner = new PlanningAgentTemplate { Style = PlanningStyle.Agile };

Share