Class ChatCompletionResponse
java.lang.Object
nl.dannyj.mistral.models.completion.ChatCompletionResponse
- All Implemented Interfaces:
Response
The ChatCompletionResponse class represents a response from the Mistral API when creating a chat completion.
Most of these fields are undocumented.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe generated completions.long
The time the chat completion was created in seconds since the epoch.getId()
Unique identifier for this response.getModel()
The model used to generate the completion.Undocumented, seems to be the type of the response.getUsage()
The tokens used to generate the completion.toString()
-
Constructor Details
-
ChatCompletionResponse
-
ChatCompletionResponse
public ChatCompletionResponse()
-
-
Method Details
-
getId
Unique identifier for this response.- Returns:
- the id of the response.
-
getObject
Undocumented, seems to be the type of the response. -
getCreated
public long getCreated()The time the chat completion was created in seconds since the epoch.- Returns:
- the time the chat completion was created.
-
getModel
The model used to generate the completion.- Returns:
- the model used to generate the completion.
-
getChoices
The generated completions.- Returns:
- the generated completions.
-
getUsage
The tokens used to generate the completion.- Returns:
- the amount of tokens used to generate the completion.
-
toString
-