aboutsummaryrefslogtreecommitdiff
path: root/apps/docs/memory-api/ingesting.mdx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/docs/memory-api/ingesting.mdx')
-rw-r--r--apps/docs/memory-api/ingesting.mdx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/docs/memory-api/ingesting.mdx b/apps/docs/memory-api/ingesting.mdx
index 135d8688..79468eaf 100644
--- a/apps/docs/memory-api/ingesting.mdx
+++ b/apps/docs/memory-api/ingesting.mdx
@@ -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;