VectorEmbeddingResponse

data class VectorEmbeddingResponse(val dataType: String, val dimensions: Int, val distanceFunction: String, val path: String)

Represents a vector embedding. A vector embedding is used to define a vector field in the documents.

Constructors

Link copied to clipboard
constructor(dataType: String, dimensions: Int, distanceFunction: String, path: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Indicates the data type of vector.

Link copied to clipboard

The number of dimensions in the vector.

Link copied to clipboard

The distance function to use for distance calculation in between vectors.

Link copied to clipboard

The path to the vector field in the document.