Class DenseEmbeddingFloatResults

java.lang.Object
org.elasticsearch.xpack.core.inference.results.EmbeddingFloatResults
org.elasticsearch.xpack.core.inference.results.DenseEmbeddingFloatResults
All Implemented Interfaces:
NamedWriteable, Writeable, ChunkedToXContent, InferenceServiceResults, DenseEmbeddingResults<EmbeddingFloatResults.Embedding>, EmbeddingResults<EmbeddingFloatResults.Embedding>

public final class DenseEmbeddingFloatResults extends EmbeddingFloatResults
Writes a dense embedding result in the following json format
 {
     "text_embedding": [
         {
             "embedding": [
                 0.1
             ]
         },
         {
             "embedding": [
                 0.2
             ]
         }
     ]
 }