remove comments

This commit is contained in:
Dhravya Shah 2025-10-07 17:32:21 -07:00
parent 1a6526dcc7
commit a622318325

View file

@ -670,8 +670,8 @@ Process large volumes efficiently with rate limiting and error recovery.
async function batchIngest(documents: Document[], options = {}) {
const {
batchSize = 5, // CORRECTED: Conservative batch size
delayBetweenBatches = 2000, // CORRECTED: 2 second delays
batchSize = 5,
delayBetweenBatches = 2000,
maxRetries = 3
} = options;