Package dev.langchain4j.adaptiverag
Record Class RetrievalGrader
java.lang.Object
java.lang.Record
dev.langchain4j.adaptiverag.RetrievalGrader
- All Implemented Interfaces:
Function<RetrievalGrader.Arguments,
RetrievalGrader.Score>
public record RetrievalGrader(String openApiKey)
extends Record
implements Function<RetrievalGrader.Arguments,RetrievalGrader.Score>
The RetrievalGrader class implements a function to assess the relevance of a retrieved document
to a user's question. It uses an AI service to generate a binary score ('yes' or 'no') indicating relevance.
This class relies on external services for processing and grading documents, making it dependent
on network availability and the stability of the used API.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
Represents a structure for holding the arguments needed to process a user's query.static class
A static class that represents a score in a binary format. -
Constructor Summary
ConstructorsConstructorDescriptionRetrievalGrader
(String openApiKey) Creates an instance of aRetrievalGrader
record class. -
Method Summary
Modifier and TypeMethodDescriptionApplies the provided arguments to generate a score using a chat language model.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theopenApiKey
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
RetrievalGrader
Creates an instance of aRetrievalGrader
record class.- Parameters:
openApiKey
- the value for theopenApiKey
record component
-
-
Method Details
-
apply
Applies the provided arguments to generate a score using a chat language model.- Specified by:
apply
in interfaceFunction<RetrievalGrader.Arguments,
RetrievalGrader.Score> - Parameters:
args
- The arguments containing the necessary information for processing.- Returns:
- A
RetrievalGrader.Score
object representing the result of the processing.
-
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)
. -
openApiKey
Returns the value of theopenApiKey
record component.- Returns:
- the value of the
openApiKey
record component
-