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

ee.carlrobert.llm.client.google.embedding.GoogleEmbeddingResponse 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;

@JsonIgnoreProperties(ignoreUnknown = true)
public class GoogleEmbeddingResponse {

  private ContentEmbedding embedding;

  public ContentEmbedding getEmbedding() {
    return embedding;
  }

  public void setEmbedding(ContentEmbedding embedding) {
    this.embedding = embedding;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy