File size: 5,146 Bytes
59bb539 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | // _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
package modclip
import (
"context"
"os"
"time"
"github.com/weaviate/weaviate/usecases/modulecomponents/batch"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
entcfg "github.com/weaviate/weaviate/entities/config"
"github.com/weaviate/weaviate/entities/models"
"github.com/weaviate/weaviate/entities/modulecapabilities"
"github.com/weaviate/weaviate/entities/moduletools"
"github.com/weaviate/weaviate/modules/multi2vec-google/clients"
"github.com/weaviate/weaviate/modules/multi2vec-google/vectorizer"
)
const (
Name = "multi2vec-google"
LegacyName = "multi2vec-palm"
)
func New() *Module {
return &Module{}
}
type Module struct {
imageVectorizer imageVectorizer
nearImageGraphqlProvider modulecapabilities.GraphQLArguments
nearImageSearcher modulecapabilities.Searcher[[]float32]
textVectorizer textVectorizer
nearTextGraphqlProvider modulecapabilities.GraphQLArguments
nearTextSearcher modulecapabilities.Searcher[[]float32]
nearVideoGraphqlProvider modulecapabilities.GraphQLArguments
videoVectorizer videoVectorizer
nearVideoSearcher modulecapabilities.Searcher[[]float32]
nearTextTransformer modulecapabilities.TextTransform
metaClient metaClient
logger logrus.FieldLogger
}
type metaClient interface {
MetaInfo() (map[string]interface{}, error)
}
type imageVectorizer interface {
Object(ctx context.Context, obj *models.Object,
cfg moduletools.ClassConfig) ([]float32, models.AdditionalProperties, error)
VectorizeImage(ctx context.Context, id, image string, cfg moduletools.ClassConfig) ([]float32, error)
}
type textVectorizer interface {
Texts(ctx context.Context, input []string,
cfg moduletools.ClassConfig) ([]float32, error)
}
type videoVectorizer interface {
VectorizeVideo(ctx context.Context,
video string, cfg moduletools.ClassConfig) ([]float32, error)
}
func (m *Module) Name() string {
return Name
}
func (m *Module) AltNames() []string {
return []string{LegacyName}
}
func (m *Module) Type() modulecapabilities.ModuleType {
return modulecapabilities.Multi2Vec
}
func (m *Module) Init(ctx context.Context,
params moduletools.ModuleInitParams,
) error {
m.logger = params.GetLogger()
if err := m.initVectorizer(ctx, params.GetConfig().ModuleHttpClientTimeout, params.GetLogger()); err != nil {
return errors.Wrap(err, "init vectorizer")
}
if err := m.initNearImage(); err != nil {
return errors.Wrap(err, "init near image")
}
if err := m.initNearVideo(); err != nil {
return errors.Wrap(err, "init near video")
}
return nil
}
func (m *Module) InitExtension(modules []modulecapabilities.Module) error {
for _, module := range modules {
if module.Name() == m.Name() {
continue
}
if arg, ok := module.(modulecapabilities.TextTransformers); ok {
if arg != nil && arg.TextTransformers() != nil {
m.nearTextTransformer = arg.TextTransformers()["nearText"]
}
}
}
if err := m.initNearText(); err != nil {
return errors.Wrap(err, "init near text")
}
return nil
}
func (m *Module) initVectorizer(ctx context.Context, timeout time.Duration,
logger logrus.FieldLogger,
) error {
apiKey := os.Getenv("GOOGLE_APIKEY")
if apiKey == "" {
apiKey = os.Getenv("PALM_APIKEY")
}
useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))
client := clients.New(apiKey, useGoogleAuth, timeout, logger)
m.imageVectorizer = vectorizer.New(client)
m.textVectorizer = vectorizer.New(client)
m.videoVectorizer = vectorizer.New(client)
m.metaClient = client
return nil
}
func (m *Module) VectorizeObject(ctx context.Context,
obj *models.Object, cfg moduletools.ClassConfig,
) ([]float32, models.AdditionalProperties, error) {
return m.imageVectorizer.Object(ctx, obj, cfg)
}
func (m *Module) VectorizeBatch(ctx context.Context, objs []*models.Object, skipObject []bool, cfg moduletools.ClassConfig) ([][]float32, []models.AdditionalProperties, map[int]error) {
return batch.VectorizeBatch(ctx, objs, skipObject, cfg, m.logger, m.imageVectorizer.Object)
}
func (m *Module) VectorizableProperties(cfg moduletools.ClassConfig) (bool, []string, error) {
ichek := vectorizer.NewClassSettings(cfg)
mediaProps, err := ichek.Properties()
return false, mediaProps, err
}
func (m *Module) MetaInfo() (map[string]interface{}, error) {
return m.metaClient.MetaInfo()
}
func (m *Module) VectorizeInput(ctx context.Context,
input string, cfg moduletools.ClassConfig,
) ([]float32, error) {
return m.textVectorizer.Texts(ctx, []string{input}, cfg)
}
// verify we implement the modules.Module interface
var (
_ = modulecapabilities.Module(New())
_ = modulecapabilities.Vectorizer[[]float32](New())
_ = modulecapabilities.InputVectorizer[[]float32](New())
_ = modulecapabilities.ModuleHasAltNames(New())
)
|