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

com.launchableinc.openai.embedding.EmbeddingResult Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.embedding;

import com.launchableinc.openai.Usage;
import lombok.Data;

import java.util.List;

/**
 * An object containing a response from the answer api
 * 

* https://beta.openai.com/docs/api-reference/embeddings/create */ @Data public class EmbeddingResult { /** * The GPTmodel used for generating embeddings */ String model; /** * The type of object returned, should be "list" */ String object; /** * A list of the calculated embeddings */ List data; /** * The API usage for this request */ Usage usage; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy