(options = {})
| 137 | } |
| 138 | |
| 139 | export async function createVectorStore(options = {}) { |
| 140 | const store = new VectorStore(options); |
| 141 | await store.ready; |
| 142 | return store; |
| 143 | } |
| 144 | |
| 145 | registerBackend('memory', (options) => new MemoryBackend(options)); |
| 146 | registerBackend('indexeddb', (options) => new IndexedDBBackend(options)); |
no outgoing calls
no test coverage detected