| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package modaws |
|
|
| import ( |
| "context" |
| "os" |
| "time" |
|
|
| "github.com/pkg/errors" |
| "github.com/sirupsen/logrus" |
|
|
| "github.com/weaviate/weaviate/entities/models" |
| "github.com/weaviate/weaviate/entities/modulecapabilities" |
| "github.com/weaviate/weaviate/entities/moduletools" |
| "github.com/weaviate/weaviate/modules/text2vec-aws/clients" |
| "github.com/weaviate/weaviate/modules/text2vec-aws/vectorizer" |
| "github.com/weaviate/weaviate/usecases/modulecomponents/additional" |
| "github.com/weaviate/weaviate/usecases/modulecomponents/batch" |
| "github.com/weaviate/weaviate/usecases/modulecomponents/text2vecbase" |
| ) |
|
|
| const Name = "text2vec-aws" |
|
|
| func New() *AwsModule { |
| return &AwsModule{} |
| } |
|
|
| type AwsModule struct { |
| vectorizer text2vecbase.TextVectorizer[[]float32] |
| metaProvider text2vecbase.MetaProvider |
| graphqlProvider modulecapabilities.GraphQLArguments |
| searcher modulecapabilities.Searcher[[]float32] |
| nearTextTransformer modulecapabilities.TextTransform |
| logger logrus.FieldLogger |
| additionalPropertiesProvider modulecapabilities.AdditionalProperties |
| } |
|
|
| func (m *AwsModule) Name() string { |
| return "text2vec-aws" |
| } |
|
|
| func (m *AwsModule) Type() modulecapabilities.ModuleType { |
| return modulecapabilities.Text2Vec |
| } |
|
|
| func (m *AwsModule) Init(ctx context.Context, |
| params moduletools.ModuleInitParams, |
| ) error { |
| m.logger = params.GetLogger() |
|
|
| if err := m.initVectorizer(ctx, params.GetConfig().ModuleHttpClientTimeout, m.logger); err != nil { |
| return errors.Wrap(err, "init vectorizer") |
| } |
|
|
| if err := m.initAdditionalPropertiesProvider(); err != nil { |
| return errors.Wrap(err, "init additional properties provider") |
| } |
|
|
| return nil |
| } |
|
|
| func (m *AwsModule) 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 graphql provider") |
| } |
| return nil |
| } |
|
|
| func (m *AwsModule) initVectorizer(ctx context.Context, timeout time.Duration, |
| logger logrus.FieldLogger, |
| ) error { |
| awsAccessKey := m.getAWSAccessKey() |
| awsSecret := m.getAWSSecretAccessKey() |
| awsSessionToken := os.Getenv("AWS_SESSION_TOKEN") |
| client := clients.New(awsAccessKey, awsSecret, awsSessionToken, timeout, logger) |
|
|
| m.vectorizer = vectorizer.New(client) |
| m.metaProvider = client |
|
|
| return nil |
| } |
|
|
| func (m *AwsModule) getAWSAccessKey() string { |
| if os.Getenv("AWS_ACCESS_KEY_ID") != "" { |
| return os.Getenv("AWS_ACCESS_KEY_ID") |
| } |
| return os.Getenv("AWS_ACCESS_KEY") |
| } |
|
|
| func (m *AwsModule) getAWSSecretAccessKey() string { |
| if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" { |
| return os.Getenv("AWS_SECRET_ACCESS_KEY") |
| } |
| return os.Getenv("AWS_SECRET_KEY") |
| } |
|
|
| func (m *AwsModule) initAdditionalPropertiesProvider() error { |
| m.additionalPropertiesProvider = additional.NewText2VecProvider() |
| return nil |
| } |
|
|
| func (m *AwsModule) VectorizeObject(ctx context.Context, |
| obj *models.Object, cfg moduletools.ClassConfig, |
| ) ([]float32, models.AdditionalProperties, error) { |
| return m.vectorizer.Object(ctx, obj, cfg) |
| } |
|
|
| func (m *AwsModule) 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.vectorizer.Object) |
| } |
|
|
| func (m *AwsModule) MetaInfo() (map[string]interface{}, error) { |
| return m.metaProvider.MetaInfo() |
| } |
|
|
| func (m *AwsModule) AdditionalProperties() map[string]modulecapabilities.AdditionalProperty { |
| return m.additionalPropertiesProvider.AdditionalProperties() |
| } |
|
|
| func (m *AwsModule) VectorizableProperties(cfg moduletools.ClassConfig) (bool, []string, error) { |
| return true, nil, nil |
| } |
|
|
| func (m *AwsModule) VectorizeInput(ctx context.Context, |
| input string, cfg moduletools.ClassConfig, |
| ) ([]float32, error) { |
| return m.vectorizer.Texts(ctx, []string{input}, cfg) |
| } |
|
|
| |
| var ( |
| _ = modulecapabilities.Module(New()) |
| _ = modulecapabilities.Vectorizer[[]float32](New()) |
| _ = modulecapabilities.MetaProvider(New()) |
| _ = modulecapabilities.Searcher[[]float32](New()) |
| _ = modulecapabilities.GraphQLArguments(New()) |
| ) |
|
|