Enum QAOutputFormat
Output formats for QA responses.
public enum QAOutputFormat
Fields
Natural = 0Natural prose response.
Structured = 1Structured sections.
Json = 2JSON format.
Bullet = 3Bullet point format.
Examples
Configuring a Q&A template to return structured sections:
using LMKit.Agents.Templates;
var qa = new QATemplate { OutputFormat = QAOutputFormat.Structured };