tech.amikos.hf.CreateEmbeddingResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chromadb-java-client Show documentation
Show all versions of chromadb-java-client Show documentation
Chroma Vector DB Java Client
The newest version!
package tech.amikos.hf;
import com.google.gson.Gson;
import java.util.List;
public class CreateEmbeddingResponse {
public List> embeddings;
public List> getEmbeddings() {
return embeddings;
}
public CreateEmbeddingResponse(List> embeddings) {
this.embeddings = embeddings;
}
@Override
public String toString() {
return new Gson().toJson(this);
}
}