From 9b93d95380abce759dfb96c59d011bddfc82cc2c Mon Sep 17 00:00:00 2001 From: murrayhu-mdb Date: Thu, 21 May 2026 11:58:11 +0100 Subject: [PATCH] Update mongodb.ts --- apps/voice-memory-demo/src/lib/mongodb.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/voice-memory-demo/src/lib/mongodb.ts b/apps/voice-memory-demo/src/lib/mongodb.ts index c11eff22..1303554d 100644 --- a/apps/voice-memory-demo/src/lib/mongodb.ts +++ b/apps/voice-memory-demo/src/lib/mongodb.ts @@ -39,7 +39,7 @@ const VECTOR_INDEX_DEFINITION = { }, }; -// Atlas Search (text) index definition +// MongoDB Search (text) index definition const TEXT_INDEX_DEFINITION = { name: 'memory_text_index', type: 'search' as const, @@ -70,7 +70,7 @@ const TEXT_INDEX_DEFINITION = { }; /** - * Ensures Atlas Search indexes exist on the memories collection. + * Ensures MongoDB Search indexes exist on the memories collection. * Creates them if they don't exist. * Note: Indexes take 1-5 minutes to build after creation. */