Annotation Type VectorStoreRecordVector
-
@Retention(RUNTIME) @Target(FIELD) public @interface VectorStoreRecordVector
Represents a vector field in a record.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description intdimensionsNumber of dimensions in the vector.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description DistanceFunctiondistanceFunctionDistance function to be used for to compute the distance between vectors.IndexKindindexKindType of index to be used for the vector.StringstorageNameStorage name of the field.
-
-
-
-
storageName
String storageName
Storage name of the field.- Returns:
- The storage name of the field.
- Default:
- ""
-
-
-
distanceFunction
@Nullable DistanceFunction distanceFunction
Distance function to be used for to compute the distance between vectors.- Returns:
- The distance function to be used for to compute the distance between vectors.
- Default:
- com.microsoft.semantickernel.data.vectorstorage.definition.DistanceFunction.UNDEFINED
-
-