diff options
| author | Dhravya Shah <[email protected]> | 2025-10-07 17:32:21 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-10-07 17:32:21 -0700 |
| commit | a6223183259996ad756df22effd4ea1dab8d43cd (patch) | |
| tree | 54c0deae540c1d5bc58487da38292d7e09115a79 /apps/docs | |
| parent | docs: fix indent (diff) | |
| download | supermemory-a6223183259996ad756df22effd4ea1dab8d43cd.tar.xz supermemory-a6223183259996ad756df22effd4ea1dab8d43cd.zip | |
remove comments
Diffstat (limited to 'apps/docs')
| -rw-r--r-- | apps/docs/memory-api/ingesting.mdx | 4 |
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; |