EmbedResponse

@Serializable
data class EmbedResponse(val embedding: Values)

Represents the response from an embedding operation, containing the computed embedding values.

Constructors

Link copied to clipboard
constructor(embedding: Values)

Properties

Link copied to clipboard

A Values object that holds the numerical representation of the embedded data. This could be a vector or set of values resulting from processing the input through an embedding model or algorithm.