Package dev.langchain4j.model.voyageai
Class VoyageAiScoringModel
java.lang.Object
dev.langchain4j.model.voyageai.VoyageAiScoringModel
- All Implemented Interfaces:
ScoringModel
An implementation of a
ScoringModel
that uses
Voyage AI Rerank API.-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic VoyageAiScoringModel.Builder
builder()
scoreAll
(List<TextSegment> segments, String query) Scores all providedTextSegment
s against a given query.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface dev.langchain4j.model.scoring.ScoringModel
score, score
-
Constructor Details
-
VoyageAiScoringModel
-
-
Method Details
-
scoreAll
Description copied from interface:ScoringModel
Scores all providedTextSegment
s against a given query.- Specified by:
scoreAll
in interfaceScoringModel
- Parameters:
segments
- The list ofTextSegment
s to score.query
- The query against which to score the segments.- Returns:
- the list of scores. The order of scores corresponds to the order of
TextSegment
s.
-
builder
-