Class MessageChunk
java.lang.Object
nl.dannyj.mistral.models.completion.MessageChunk
A chunk of a message in a conversation.
Returned when using streaming chat completions.
-
Constructor Summary
ConstructorsConstructorDescriptionMessageChunk
(String id, String object, long created, String model, List<DeltaChoice> choices, Usage usage) -
Method Summary
-
Constructor Details
-
MessageChunk
-
MessageChunk
public MessageChunk()
-
-
Method Details
-
getId
The ID of the message chunk.- Returns:
- the id of the message chunk
-
getObject
Always chat.completion.chunk- Returns:
- the object type of the message chunk
-
getCreated
public long getCreated()The time the message chunk was created.- Returns:
- the time the message chunk was created in seconds since the epoch
-
getModel
The model used to generate the completions.- Returns:
- the id of the model used to generate the completions
-
getChoices
The generated delta completions.- Returns:
- the generated delta completions
-
getUsage
The tokens used to generate the completion.- Returns:
- the tokens used to generate the completion
-