Package dev.langchain4j.model.anthropic
Class AnthropicTokenCountEstimator
java.lang.Object
dev.langchain4j.model.anthropic.AnthropicTokenCountEstimator
- All Implemented Interfaces:
TokenCountEstimator
@Experimental
public class AnthropicTokenCountEstimator
extends Object
implements TokenCountEstimator
- Since:
- 1.4.0
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
int
estimateTokenCountInMessage
(ChatMessage message) Estimates the count of tokens in the given message.int
estimateTokenCountInMessages
(Iterable<ChatMessage> messages) Estimates the count of tokens in the given messages.int
Estimates the count of tokens in the given text.
-
Constructor Details
-
AnthropicTokenCountEstimator
-
-
Method Details
-
estimateTokenCountInText
Description copied from interface:TokenCountEstimator
Estimates the count of tokens in the given text.- Specified by:
estimateTokenCountInText
in interfaceTokenCountEstimator
- Parameters:
text
- the text.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInMessage
Description copied from interface:TokenCountEstimator
Estimates the count of tokens in the given message.- Specified by:
estimateTokenCountInMessage
in interfaceTokenCountEstimator
- Parameters:
message
- the message.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInMessages
Description copied from interface:TokenCountEstimator
Estimates the count of tokens in the given messages.- Specified by:
estimateTokenCountInMessages
in interfaceTokenCountEstimator
- Parameters:
messages
- the messages.- Returns:
- the estimated count of tokens.
-
builder
-