Record Class ChatResponse

java.lang.Object
java.lang.Record
io.quarkiverse.langchain4j.ollama.ChatResponse

public record ChatResponse(String model, String createdAt, Message message, Boolean done, Integer promptEvalCount, Integer evalCount) extends Record
  • Constructor Details

    • ChatResponse

      public ChatResponse(String model, String createdAt, Message message, Boolean done, Integer promptEvalCount, Integer evalCount)
      Creates an instance of a ChatResponse record class.
      Parameters:
      model - the value for the model record component
      createdAt - the value for the createdAt record component
      message - the value for the message record component
      done - the value for the done record component
      promptEvalCount - the value for the promptEvalCount record component
      evalCount - the value for the evalCount record component
  • Method Details

    • emptyDone

      public static ChatResponse emptyDone()
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • model

      public String model()
      Returns the value of the model record component.
      Returns:
      the value of the model record component
    • createdAt

      public String createdAt()
      Returns the value of the createdAt record component.
      Returns:
      the value of the createdAt record component
    • message

      public Message message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component
    • done

      public Boolean done()
      Returns the value of the done record component.
      Returns:
      the value of the done record component
    • promptEvalCount

      public Integer promptEvalCount()
      Returns the value of the promptEvalCount record component.
      Returns:
      the value of the promptEvalCount record component
    • evalCount

      public Integer evalCount()
      Returns the value of the evalCount record component.
      Returns:
      the value of the evalCount record component