package rag import ( "context" "fmt" "log/slog" "code.tczkiot.com/wlw/ai-agent/internal/ai/rag/vectordb" ) func (s *index) ensureCollection(ctx context.Context, provider vectordb.Provider, collectionName string, dimension int) error { if dimension <= 0 { return fmt.Errorf("invalid embedding dimension: %d", dimension) } collectionInfo, err := provider.GetCollection(ctx, collectionName) if err == nil && collectionInfo != nil { if collectionInfo.Dimension != dimension { return fmt.Errorf("knowledge vector collection dimension is %d, but the current embedding model uses %d; switch back to the original embedding model or recreate the vector collection and rebuild all knowledge base indexes", collectionInfo.Dimension, dimension) } return nil } if err := provider.CreateCollection(ctx, collectionName, dimension); err != nil { return fmt.Errorf("failed to create collection: %w", err) } slog.Info("Created collection for knowledge base", "collection", collectionName, "dimension", dimension) return nil }