ee.carlrobert.llm.client.openai.embeddings.EmbeddingData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of llm-client Show documentation
Show all versions of llm-client Show documentation
Java http client wrapped around the OkHttp3 library
package ee.carlrobert.llm.client.openai.embeddings;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class EmbeddingData {
private double[] embedding;
public double[] getEmbedding() {
return embedding;
}
public void setEmbedding(double[] embedding) {
this.embedding = embedding;
}
}