feat: add Firestore vector search integration and noun type-based search enhancements
Introduced Firestore vector search integration using `@firebase/firestore-vector-search`. Added support for restricting searches by specific noun types to optimize performance and relevance. Updated `README.md` to document the new functionality and usage examples.
This commit is contained in:
parent
b10a32e8de
commit
725610fbe4
13 changed files with 2439 additions and 178 deletions
24
src/index.ts
24
src/index.ts
|
|
@ -111,17 +111,27 @@ export type {
|
|||
|
||||
// Export augmentation implementations
|
||||
import {
|
||||
FirestoreSyncAugmentation,
|
||||
createFirestoreSyncAugmentation
|
||||
} from './augmentations/firestoreSyncAugmentation.js'
|
||||
import type { FirestoreSyncConfig } from './augmentations/firestoreSyncAugmentation.js'
|
||||
MemoryStorageAugmentation,
|
||||
FileSystemStorageAugmentation,
|
||||
OPFSStorageAugmentation,
|
||||
createMemoryAugmentation
|
||||
} from './augmentations/memoryAugmentations.js'
|
||||
import {
|
||||
FirestoreStorageAugmentation,
|
||||
createFirestoreStorageAugmentation
|
||||
} from './augmentations/firestoreStorageAugmentation.js'
|
||||
import type { FirestoreStorageConfig } from './augmentations/firestoreStorageAugmentation.js'
|
||||
|
||||
export {
|
||||
FirestoreSyncAugmentation,
|
||||
createFirestoreSyncAugmentation
|
||||
MemoryStorageAugmentation,
|
||||
FileSystemStorageAugmentation,
|
||||
OPFSStorageAugmentation,
|
||||
FirestoreStorageAugmentation,
|
||||
createMemoryAugmentation,
|
||||
createFirestoreStorageAugmentation
|
||||
}
|
||||
export type {
|
||||
FirestoreSyncConfig
|
||||
FirestoreStorageConfig
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue