Table of Contents

Enum SummaryStyle

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

Styles for summary output.

public enum SummaryStyle

Fields

Narrative = 0

Flowing prose.

Bullet = 1

Bullet point list.

Executive = 2

Executive summary style.

Academic = 3

Academic formal style.

TLDR = 4

Very brief TL;DR style.

Examples

Bullet-point summary suitable for slides:

using LMKit.Agents.Templates;

var summarizer = new SummaryAgentTemplate { Style = SummaryStyle.Bullet };

Share