Added quantizerType support in vector embedding (#2471)

* Added quantizerType support in vector embedding

* Fix build issues

* Address PR Comments

* address pr comments
This commit is contained in:
sunghyunkang1111
2026-05-01 12:38:53 -05:00
committed by GitHub
parent 7014981807
commit 4e8410cd66
8 changed files with 143 additions and 31 deletions
+25 -1
View File
@@ -33,7 +33,8 @@
"publish": "Publish",
"browse": "Browse",
"increaseValueBy1": "Increase value by 1",
"decreaseValueBy1": "Decrease value by 1"
"decreaseValueBy1": "Decrease value by 1",
"preview": "Preview"
},
"splashScreen": {
"title": {
@@ -967,6 +968,29 @@
"bucketOptionLabel": "Bucket {{id}} - {{percentage}}%",
"bucketNotActive": "Bucket {{id}} is not active."
}
},
"vectorEmbeddingPolicies": {
"vectorEmbeddingTitle": "Vector embedding {{index}}",
"path": "Path",
"dataType": "Data type",
"distanceFunction": "Distance function",
"dimensions": "Dimensions",
"indexType": "Index type",
"quantizationByteSize": "Quantization byte size",
"quantizationByteSizeTooltip": "This is dynamically set by the {{containerName}} if left blank, or it can be set to a fixed number",
"quantizationByteSizeTooltipContainerName": "container",
"quantizationByteSizeTooltipGlobalSecondaryIndexName": "global secondary index",
"quantizerType": "Quantizer type",
"quantizerTypeTooltip": "The quantization method used by the vector index.",
"indexingSearchListSize": "Indexing search list size",
"vectorIndexShardKey": "Vector index shard key",
"addVectorEmbedding": "Add vector embedding",
"pathEmptyError": "Path should not be empty",
"pathDuplicateError": "Path is already defined",
"dimensionRangeError": "Dimension must be greater than 0 and less than or equal 4096",
"dimensionFlatIndexError": "Maximum allowed dimension for flat index is 505",
"quantizationByteSizeRangeError": "Quantization byte size must be greater than 0 and less than or equal to 512",
"indexingSearchListSizeRangeError": "Indexing search list size must be greater than or equal to 25 and less than or equal to 500"
}
}
}