Record Class TextStreamingChatResponse.TextChatResultMessage
java.lang.Object
java.lang.Record
io.quarkiverse.langchain4j.watsonx.bean.TextStreamingChatResponse.TextChatResultMessage
- Enclosing class:
TextStreamingChatResponse
public static record TextStreamingChatResponse.TextChatResultMessage(String role, String content, List<TextChatMessage.TextChatToolCall> toolCalls)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTextChatResultMessage
(String role, String content, List<TextChatMessage.TextChatToolCall> toolCalls) Creates an instance of aTextChatResultMessage
record class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()
Returns the value of thecontent
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.role()
Returns the value of therole
record component.Returns the value of thetoolCalls
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
TextChatResultMessage
public TextChatResultMessage(String role, String content, List<TextChatMessage.TextChatToolCall> toolCalls) Creates an instance of aTextChatResultMessage
record class.- Parameters:
role
- the value for therole
record componentcontent
- the value for thecontent
record componenttoolCalls
- the value for thetoolCalls
record component
-
-
Method Details
-
toString
-
hashCode
-
equals
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 withObjects::equals(Object,Object)
. -
role
Returns the value of therole
record component.- Returns:
- the value of the
role
record component
-
content
Returns the value of thecontent
record component.- Returns:
- the value of the
content
record component
-
toolCalls
Returns the value of thetoolCalls
record component.- Returns:
- the value of the
toolCalls
record component
-