Package dev.langchain4j.adaptiverag
Record Class AnswerGrader
java.lang.Object
java.lang.Record
dev.langchain4j.adaptiverag.AnswerGrader
- All Implemented Interfaces:
Function<AnswerGrader.Arguments,
AnswerGrader.Score>
public record AnswerGrader(String openApiKey)
extends Record
implements Function<AnswerGrader.Arguments,AnswerGrader.Score>
Class to grade answers based on whether they address a given question.
Implements the Function interface to take in Arguments and output a Score.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
Represents the arguments for a structured prompt, encapsulating both a user's question and an LLM-generated response.static class
Binary score to assess answer addresses question. -
Constructor Summary
ConstructorsConstructorDescriptionAnswerGrader
(String openApiKey) Creates an instance of aAnswerGrader
record class. -
Method Summary
Modifier and TypeMethodDescriptionapply
(AnswerGrader.Arguments args) Applies the given arguments to generate a score using a 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
-
AnswerGrader
Creates an instance of aAnswerGrader
record class.- Parameters:
openApiKey
- the value for theopenApiKey
record component
-
-
Method Details
-
apply
Applies the given arguments to generate a score using a language model.- Specified by:
apply
in interfaceFunction<AnswerGrader.Arguments,
AnswerGrader.Score> - Parameters:
args
- The input arguments for the prompt.- Returns:
- The generated score based on the prompt and model configuration.
-
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
-