Versions in this module Expand all Collapse all v0 v0.2.0 Mar 22, 2026 Changes in this version + const DeleteEmbeddingSQL + const ListEmbeddingsByTenantSQL + const UpsertEmbeddingSQL + type Store struct + func NewStore(db *sql.DB) *Store + func (s *Store) Delete(ctx context.Context, tenantID, memoryID string) error + func (s *Store) Search(ctx context.Context, tenantID string, embedding []float32, topK int) ([]domain.VectorstoreCandidate, error) + func (s *Store) Upsert(ctx context.Context, tenantID, memoryID string, embedding []float32) error + func (s *Store) UpsertBatch(ctx context.Context, upserts []domain.VectorUpsert) error