BatchEmbedResponse

@Serializable
data class BatchEmbedResponse(val embeddings: List<Values>)

Represents the response for a batch embedding request.

Constructors

Link copied to clipboard
constructor(embeddings: List<Values>)

Properties

Link copied to clipboard
val embeddings: List<Values>

A list of Values objects, each containing the embedding results for a corresponding request in the batch.