Class CsvToolOptions
Configuration options shared by all CSV tools.
public sealed class CsvToolOptions
- Inheritance
-
CsvToolOptions
- Inherited Members
Examples
Capping CSV processing for an agent that may receive untrusted files:
using LMKit.Agents.Tools.BuiltIn;
using LMKit.Agents.Tools.BuiltIn.Data;
var options = new CsvToolOptions { MaxRows = 1000 };
var parser = BuiltInTools.CreateCsvParse(options);
Properties
- MaxRows
Gets or sets maximum rows to process. Default is 10000.