chore: fix typos in packages/components/nodes/documentloaders/Csv/CsvLoader.ts (#5422)

Fix typos in packages/components/nodes/documentloaders/Csv/CsvLoader.ts
This commit is contained in:
Lê Nam Khánh
2025-11-05 20:02:20 +07:00
committed by GitHub
parent fe6f5f88a5
commit fdb6422aef
@@ -2,7 +2,7 @@ import { TextLoader } from 'langchain/document_loaders/fs/text'
import Papa from 'papaparse'
type CSVLoaderOptions = {
// Return specifific column from key (string) or index (integer)
// Return specific column from key (string) or index (integer)
column?: string | number
// Force separator (default: auto detect)
separator?: string