| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package clients |
|
|
| import ( |
| "bytes" |
| "context" |
| "encoding/json" |
| "fmt" |
| "io" |
| "net/http" |
| "time" |
|
|
| "github.com/weaviate/weaviate/usecases/modulecomponents/apikey" |
|
|
| "github.com/pkg/errors" |
| "github.com/sirupsen/logrus" |
| "github.com/weaviate/weaviate/modules/text2vec-google/ent" |
| ) |
|
|
| type taskType string |
|
|
| |
| var ( |
| |
| |
| retrievalDocument taskType = "RETRIEVAL_DOCUMENT" |
| |
| |
| retrievalQuery taskType = "RETRIEVAL_QUERY" |
| |
| questionAnswering taskType = "QUESTION_ANSWERING" |
| |
| factVerification taskType = "FACT_VERIFICATION" |
| |
| retrievalCode taskType = "CODE_RETRIEVAL_QUERY" |
| ) |
|
|
| |
| var ( |
| classification taskType = "CLASSIFICATION" |
| clustering taskType = "CLUSTERING" |
| semanticSimilarity taskType = "SEMANTIC_SIMILARITY" |
| ) |
|
|
| func buildURL(useGenerativeAI bool, apiEndpoint, projectID, modelID string) string { |
| if useGenerativeAI { |
| if isLegacyModel(modelID) { |
| |
| return "https://generativelanguage.googleapis.com/v1beta3/models/embedding-gecko-001:batchEmbedText" |
| } |
| return fmt.Sprintf("https://generativelanguage.googleapis.com/v1beta/models/%s:batchEmbedContents", modelID) |
| } |
| urlTemplate := "https://%s/v1/projects/%s/locations/us-central1/publishers/google/models/%s:predict" |
| return fmt.Sprintf(urlTemplate, apiEndpoint, projectID, modelID) |
| } |
|
|
| type google struct { |
| apiKey string |
| googleApiKey *apikey.GoogleApiKey |
| useGoogleAuth bool |
| httpClient *http.Client |
| urlBuilderFn func(useGenerativeAI bool, apiEndpoint, projectID, modelID string) string |
| logger logrus.FieldLogger |
| } |
|
|
| func New(apiKey string, useGoogleAuth bool, timeout time.Duration, logger logrus.FieldLogger) *google { |
| return &google{ |
| apiKey: apiKey, |
| useGoogleAuth: useGoogleAuth, |
| googleApiKey: apikey.NewGoogleApiKey(), |
| httpClient: &http.Client{ |
| Timeout: timeout, |
| }, |
| urlBuilderFn: buildURL, |
| logger: logger, |
| } |
| } |
|
|
| func (v *google) Vectorize(ctx context.Context, input []string, |
| config ent.VectorizationConfig, titlePropertyValue string, |
| ) (*ent.VectorizationResult, error) { |
| return v.vectorize(ctx, input, v.getDocumentTaskType(config.TaskType), titlePropertyValue, config) |
| } |
|
|
| func (v *google) VectorizeQuery(ctx context.Context, input []string, |
| config ent.VectorizationConfig, |
| ) (*ent.VectorizationResult, error) { |
| return v.vectorize(ctx, input, v.getQueryTaskType(config.TaskType), "", config) |
| } |
|
|
| func (v *google) vectorize(ctx context.Context, input []string, taskType taskType, |
| titlePropertyValue string, config ent.VectorizationConfig, |
| ) (*ent.VectorizationResult, error) { |
| useGenerativeAIEndpoint := v.useGenerativeAIEndpoint(config) |
|
|
| payload := v.getPayload(useGenerativeAIEndpoint, input, taskType, titlePropertyValue, config) |
| body, err := json.Marshal(payload) |
| if err != nil { |
| return nil, errors.Wrapf(err, "marshal body") |
| } |
|
|
| endpointURL := v.urlBuilderFn(useGenerativeAIEndpoint, |
| v.getApiEndpoint(config), v.getProjectID(config), v.getModel(config)) |
|
|
| req, err := http.NewRequestWithContext(ctx, "POST", endpointURL, |
| bytes.NewReader(body)) |
| if err != nil { |
| return nil, errors.Wrap(err, "create POST request") |
| } |
|
|
| apiKey, err := v.getApiKey(ctx, useGenerativeAIEndpoint) |
| if err != nil { |
| return nil, errors.Wrapf(err, "Google API Key") |
| } |
| req.Header.Add("Content-Type", "application/json") |
| if useGenerativeAIEndpoint { |
| req.Header.Add("x-goog-api-key", apiKey) |
| } else { |
| req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", apiKey)) |
| } |
|
|
| res, err := v.httpClient.Do(req) |
| if err != nil { |
| return nil, errors.Wrap(err, "send POST request") |
| } |
| defer res.Body.Close() |
|
|
| bodyBytes, err := io.ReadAll(res.Body) |
| if err != nil { |
| return nil, errors.Wrap(err, "read response body") |
| } |
|
|
| if useGenerativeAIEndpoint { |
| return v.parseGenerativeAIApiResponse(res.StatusCode, bodyBytes, input, config) |
| } |
| return v.parseEmbeddingsResponse(res.StatusCode, bodyBytes, input) |
| } |
|
|
| func (v *google) useGenerativeAIEndpoint(config ent.VectorizationConfig) bool { |
| return v.getApiEndpoint(config) == "generativelanguage.googleapis.com" |
| } |
|
|
| func (v *google) getPayload(useGenerativeAI bool, input []string, |
| taskType taskType, title string, config ent.VectorizationConfig, |
| ) any { |
| if useGenerativeAI { |
| if v.isLegacy(config) { |
| return batchEmbedTextRequestLegacy{Texts: input} |
| } |
| parts := make([]part, len(input)) |
| for i := range input { |
| parts[i] = part{Text: input[i]} |
| } |
| req := batchEmbedContents{ |
| Requests: []embedContentRequest{ |
| { |
| Model: fmt.Sprintf("models/%s", config.Model), |
| Content: content{ |
| Parts: parts, |
| }, |
| TaskType: taskType, |
| Title: title, |
| OutputDimensionality: config.Dimensions, |
| }, |
| }, |
| } |
| return req |
| } |
| instances := make([]instance, len(input)) |
| for i := range input { |
| instances[i] = instance{Content: input[i], TaskType: taskType, Title: title} |
| } |
| if config.Dimensions != nil { |
| return embeddingsRequest{Instances: instances, Parameters: ¶meters{OutputDimensionality: config.Dimensions}} |
| } |
| return embeddingsRequest{Instances: instances} |
| } |
|
|
| func (v *google) checkResponse(statusCode int, googleApiError *googleApiError) error { |
| if statusCode != 200 || googleApiError != nil { |
| if googleApiError != nil { |
| return fmt.Errorf("connection to Google failed with status: %v error: %v", |
| statusCode, googleApiError.Message) |
| } |
| return fmt.Errorf("connection to Google failed with status: %d", statusCode) |
| } |
| return nil |
| } |
|
|
| func (v *google) getApiKey(ctx context.Context, useGenerativeAIEndpoint bool) (string, error) { |
| return v.googleApiKey.GetApiKey(ctx, v.apiKey, useGenerativeAIEndpoint, v.useGoogleAuth) |
| } |
|
|
| func (v *google) parseGenerativeAIApiResponse(statusCode int, |
| bodyBytes []byte, input []string, config ent.VectorizationConfig, |
| ) (*ent.VectorizationResult, error) { |
| var resBody batchEmbedTextResponse |
| if err := json.Unmarshal(bodyBytes, &resBody); err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("unmarshal response body. Got: %v", string(bodyBytes))) |
| } |
|
|
| if err := v.checkResponse(statusCode, resBody.Error); err != nil { |
| return nil, err |
| } |
|
|
| if len(resBody.Embeddings) == 0 { |
| return nil, errors.Errorf("empty embeddings response") |
| } |
|
|
| vectors := make([][]float32, len(resBody.Embeddings)) |
| for i := range resBody.Embeddings { |
| if v.isLegacy(config) { |
| vectors[i] = resBody.Embeddings[i].Value |
| } else { |
| vectors[i] = resBody.Embeddings[i].Values |
| } |
| } |
| dimensions := len(resBody.Embeddings[0].Values) |
| if v.isLegacy(config) { |
| dimensions = len(resBody.Embeddings[0].Value) |
| } |
|
|
| return v.getResponse(input, dimensions, vectors) |
| } |
|
|
| func (v *google) parseEmbeddingsResponse(statusCode int, |
| bodyBytes []byte, input []string, |
| ) (*ent.VectorizationResult, error) { |
| var resBody embeddingsResponse |
| if err := json.Unmarshal(bodyBytes, &resBody); err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("unmarshal response body. Got: %v", string(bodyBytes))) |
| } |
|
|
| if err := v.checkResponse(statusCode, resBody.Error); err != nil { |
| return nil, err |
| } |
|
|
| if len(resBody.Predictions) == 0 { |
| return nil, errors.Errorf("empty embeddings response") |
| } |
|
|
| vectors := make([][]float32, len(resBody.Predictions)) |
| for i := range resBody.Predictions { |
| vectors[i] = resBody.Predictions[i].Embeddings.Values |
| } |
| dimensions := len(resBody.Predictions[0].Embeddings.Values) |
|
|
| return v.getResponse(input, dimensions, vectors) |
| } |
|
|
| func (v *google) getResponse(input []string, dimensions int, vectors [][]float32) (*ent.VectorizationResult, error) { |
| return &ent.VectorizationResult{ |
| Texts: input, |
| Dimensions: dimensions, |
| Vectors: vectors, |
| }, nil |
| } |
|
|
| func (v *google) getApiEndpoint(config ent.VectorizationConfig) string { |
| return config.ApiEndpoint |
| } |
|
|
| func (v *google) getProjectID(config ent.VectorizationConfig) string { |
| return config.ProjectID |
| } |
|
|
| func (v *google) getModel(config ent.VectorizationConfig) string { |
| return config.Model |
| } |
|
|
| func (v *google) isLegacy(config ent.VectorizationConfig) bool { |
| return isLegacyModel(config.Model) |
| } |
|
|
| func (v *google) getQueryTaskType(in string) taskType { |
| switch taskType(in) { |
| |
| case retrievalCode: |
| return retrievalCode |
| case questionAnswering: |
| return questionAnswering |
| case factVerification: |
| return factVerification |
| |
| case classification: |
| return classification |
| case clustering: |
| return clustering |
| case semanticSimilarity: |
| return semanticSimilarity |
| default: |
| return retrievalQuery |
| } |
| } |
|
|
| func (v *google) getDocumentTaskType(in string) taskType { |
| switch taskType(in) { |
| case classification: |
| return classification |
| case clustering: |
| return clustering |
| case semanticSimilarity: |
| return semanticSimilarity |
| default: |
| |
| return retrievalDocument |
| } |
| } |
|
|
| func isLegacyModel(model string) bool { |
| |
| return model == "embedding-gecko-001" |
| } |
|
|
| type embeddingsRequest struct { |
| Instances []instance `json:"instances,omitempty"` |
| Parameters *parameters `json:"parameters,omitempty"` |
| } |
|
|
| type parameters struct { |
| OutputDimensionality *int64 `json:"outputDimensionality,omitempty"` |
| } |
|
|
| type instance struct { |
| Content string `json:"content"` |
| TaskType taskType `json:"task_type,omitempty"` |
| Title string `json:"title,omitempty"` |
| } |
|
|
| type embeddingsResponse struct { |
| Predictions []prediction `json:"predictions,omitempty"` |
| Error *googleApiError `json:"error,omitempty"` |
| DeployedModelId string `json:"deployedModelId,omitempty"` |
| Model string `json:"model,omitempty"` |
| ModelDisplayName string `json:"modelDisplayName,omitempty"` |
| ModelVersionId string `json:"modelVersionId,omitempty"` |
| } |
|
|
| type prediction struct { |
| Embeddings embeddings `json:"embeddings,omitempty"` |
| SafetyAttributes *safetyAttributes `json:"safetyAttributes,omitempty"` |
| } |
|
|
| type embeddings struct { |
| Values []float32 `json:"values,omitempty"` |
| } |
|
|
| type safetyAttributes struct { |
| Scores []float64 `json:"scores,omitempty"` |
| Blocked *bool `json:"blocked,omitempty"` |
| Categories []string `json:"categories,omitempty"` |
| } |
|
|
| type googleApiError struct { |
| Code int `json:"code"` |
| Message string `json:"message"` |
| Status string `json:"status"` |
| } |
|
|
| type batchEmbedTextResponse struct { |
| Embeddings []embedding `json:"embeddings,omitempty"` |
| Error *googleApiError `json:"error,omitempty"` |
| } |
|
|
| type embedding struct { |
| Values []float32 `json:"values,omitempty"` |
| |
| Value []float32 `json:"value,omitempty"` |
| } |
|
|
| type batchEmbedContents struct { |
| Requests []embedContentRequest `json:"requests,omitempty"` |
| } |
|
|
| type embedContentRequest struct { |
| Model string `json:"model"` |
| Content content `json:"content"` |
| TaskType taskType `json:"taskType,omitempty"` |
| Title string `json:"title,omitempty"` |
| OutputDimensionality *int64 `json:"outputDimensionality,omitempty"` |
| } |
|
|
| type content struct { |
| Parts []part `json:"parts,omitempty"` |
| Role string `json:"role,omitempty"` |
| } |
|
|
| type part struct { |
| Text string `json:"text,omitempty"` |
| } |
|
|
| |
| type batchEmbedTextRequestLegacy struct { |
| Texts []string `json:"texts,omitempty"` |
| } |
|
|