(ctx context.Context, vec []float32)
| 18 | // and the serialised payload, or ok=false on a clean miss. |
| 19 | type VectorStore interface { |
| 20 | Search(ctx context.Context, vec []float32) (similarity float64, payload []byte, ok bool, err error) |
| 21 | Insert(ctx context.Context, vec []float32, payload []byte) error |
| 22 | } |
| 23 |
no outgoing calls
no test coverage detected