ee.carlrobert.llm.client.google.embedding.GoogleBatchEmbeddingResponse 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.google.embedding;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class GoogleBatchEmbeddingResponse {
private List embeddings;
public List getEmbeddings() {
return embeddings;
}
public void setEmbeddings(List embedding) {
this.embeddings = embedding;
}
}