Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/voice-memory-demo/src/lib/mongodb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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.
*/
Expand Down
Loading