aboutsummaryrefslogtreecommitdiff
path: root/apps/docs
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2025-10-07 17:32:21 -0700
committerDhravya Shah <[email protected]>2025-10-07 17:32:21 -0700
commita6223183259996ad756df22effd4ea1dab8d43cd (patch)
tree54c0deae540c1d5bc58487da38292d7e09115a79 /apps/docs
parentdocs: fix indent (diff)
downloadsupermemory-a6223183259996ad756df22effd4ea1dab8d43cd.tar.xz
supermemory-a6223183259996ad756df22effd4ea1dab8d43cd.zip
remove comments
Diffstat (limited to 'apps/docs')
-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;