Class EmbeddingResponse
java.lang.Object
nl.dannyj.mistral.models.embedding.EmbeddingResponse
- All Implemented Interfaces:
Response
The EmbeddingResponse class represents a response from the Mistral API when creating embeddings.
Most of these fields are undocumented.
-
Constructor Summary
ConstructorsConstructorDescriptionEmbeddingResponse
(String id, String object, List<FloatEmbedding> data, String model, Usage usage) -
Method Summary
Modifier and TypeMethodDescriptiongetData()
The embeddings that were created for the list of input strings.getId()
Unique identifier for this response.getModel()
The model used to create the embeddings.Undocumented, seems to be the type of the response.getUsage()
The token usage of the request.toString()
-
Constructor Details
-
EmbeddingResponse
-
EmbeddingResponse
public EmbeddingResponse()
-
-
Method Details
-
getId
Unique identifier for this response.- Returns:
- the id of the response
-
getObject
Undocumented, seems to be the type of the response.- Returns:
- the object type
-
getData
The embeddings that were created for the list of input strings.- Returns:
- a list of float embeddings
-
getModel
The model used to create the embeddings.- Returns:
- the ID of the model used to generate the embeddings
-
getUsage
The token usage of the request.- Returns:
- the usage of the request
-
toString
-