diff --git a/src/Explorer/Controls/VectorSearch/VectorEmbeddingPoliciesComponent.tsx b/src/Explorer/Controls/VectorSearch/VectorEmbeddingPoliciesComponent.tsx index cce26189d..0fbb151da 100644 --- a/src/Explorer/Controls/VectorSearch/VectorEmbeddingPoliciesComponent.tsx +++ b/src/Explorer/Controls/VectorSearch/VectorEmbeddingPoliciesComponent.tsx @@ -166,7 +166,7 @@ export const VectorEmbeddingPoliciesComponent: FunctionComponent createDropdownOptions export const getDistanceFunctionOptions = (): IDropdownOption[] => createDropdownOptionsFromLiterals(distanceFunctions); export const getIndexTypeOptions = (): IDropdownOption[] => createDropdownOptionsFromLiterals(indexTypes); export const getQuantizerTypeOptions = (): IDropdownOption[] => [ + { key: "spherical", text: "Spherical" }, { key: "product", text: "Product" }, - { key: "spherical", text: `Spherical (${t(Keys.common.preview)})` }, ]; export const supportsQuantization = (indexType: VectorIndex["type"] | "none" | undefined): boolean => diff --git a/src/Localization/en/Resources.json b/src/Localization/en/Resources.json index 6ac748936..9b1299b06 100644 --- a/src/Localization/en/Resources.json +++ b/src/Localization/en/Resources.json @@ -990,6 +990,8 @@ "quantizationByteSizeTooltipContainerName": "container", "quantizationByteSizeTooltipGlobalSecondaryIndexName": "global secondary index", "quantizerType": "Quantizer type", + "quantizerTypeProduct": "Product", + "quantizerTypeSpherical": "Spherical", "quantizerTypeTooltip": "The quantization method used by the vector index.", "indexingSearchListSize": "Indexing search list size", "vectorIndexShardKey": "Vector index shard key",