(documents: readonly VectorIndexDocument[])
| 42 | |
| 43 | export interface VectorIndexProvider { |
| 44 | upsert(documents: readonly VectorIndexDocument[]): Promise<void>; |
| 45 | deleteByEntityIds(entityIds: readonly string[]): Promise<void>; |
| 46 | search(input: VectorSearchInput): Promise<readonly VectorSearchHit[]>; |
| 47 | } |
no outgoing calls
no test coverage detected