Enum ExtractionFormat
Output formats for extracted data.
public enum ExtractionFormat
Fields
Json = 0JSON format.
Csv = 1CSV format.
Xml = 2XML format.
KeyValue = 3Simple key-value text.
Markdown = 4Markdown table format.
Examples
Asking an extraction template to emit CSV for spreadsheet ingest:
using LMKit.Agents.Templates;
var extractor = new ExtractionAgentTemplate { Format = ExtractionFormat.Csv };