All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.carlrobert.llm.client.google.embedding.GoogleBatchEmbeddingResponse Maven / Gradle / Ivy

There is a newer version: 0.8.28
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy