Class DeltaChoice

java.lang.Object
nl.dannyj.mistral.models.completion.DeltaChoice

public class DeltaChoice extends Object
Represents a choice of a streamed message chunk in a completion. A choice contains the message that was generated and the reason for the completion to finish.
  • Constructor Details

    • DeltaChoice

      public DeltaChoice(int index, Message message, String finishReason, String logProbs)
    • DeltaChoice

      public DeltaChoice()
  • Method Details

    • getIndex

      public int getIndex()
      The index of the choice. Starts at 0.
      Returns:
      the index of the choice
    • getMessage

      public Message getMessage()
      The message that was generated.
      Returns:
      the message that was generated
    • getFinishReason

      public String getFinishReason()
      Reason for the completion to finish.
      Returns:
      the reason for the completion to finish
    • getLogProbs

      public String getLogProbs()
    • toString

      public String toString()
      Overrides:
      toString in class Object