Package org.springframework.ai.rag
Record Class Query
java.lang.Object
java.lang.Record
org.springframework.ai.rag.Query
- Record Components:
text
- the text of the queryhistory
- the messages in the conversation historycontext
- the context of the query
Represents a query in the context of a Retrieval Augmented Generation (RAG) flow.
- Since:
- 1.0.0
- Author:
- Thomas Vitale
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Query.Builder
builder()
context()
Returns the value of thecontext
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.history()
Returns the value of thehistory
record component.mutate()
text()
Returns the value of thetext
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
mutate
-
builder
-
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. -
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. -
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)
. -
text
Returns the value of thetext
record component.- Returns:
- the value of the
text
record component
-
history
Returns the value of thehistory
record component.- Returns:
- the value of the
history
record component
-
context
Returns the value of thecontext
record component.- Returns:
- the value of the
context
record component
-