Package dev.langchain4j.model.openai
Class OpenAiTokenizer
java.lang.Object
dev.langchain4j.model.openai.OpenAiTokenizer
- All Implemented Interfaces:
Tokenizer
This class can be used to estimate the cost (in tokens) before calling OpenAI or when using streaming.
Magic numbers present in this class were found empirically while testing.
There are integration tests in place that are making sure that the calculations here are very close to that of OpenAI.
-
Constructor Summary
ConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Please use other constructors and specify the model name explicitly.OpenAiTokenizer
(OpenAiChatModelName modelName) Creates an instance of theOpenAiTokenizer
for a givenOpenAiChatModelName
.OpenAiTokenizer
(OpenAiEmbeddingModelName modelName) Creates an instance of theOpenAiTokenizer
for a givenOpenAiEmbeddingModelName
.OpenAiTokenizer
(OpenAiLanguageModelName modelName) Creates an instance of theOpenAiTokenizer
for a givenOpenAiLanguageModelName
.OpenAiTokenizer
(String modelName) Creates an instance of theOpenAiTokenizer
for a given model name. -
Method Summary
Modifier and TypeMethodDescriptionint
estimateTokenCountInForcefulToolExecutionRequest
(ToolExecutionRequest toolExecutionRequest) Estimates the count of tokens in the given tool execution request.int
estimateTokenCountInForcefulToolSpecification
(ToolSpecification toolSpecification) Estimates the count of tokens in the given tool specification.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.int
estimateTokenCountInToolExecutionRequests
(Iterable<ToolExecutionRequest> toolExecutionRequests) Estimates the count of tokens in the given tool execution requests.int
estimateTokenCountInToolSpecifications
(Iterable<ToolSpecification> toolSpecifications) Estimates the count of tokens in the given tool specifications.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.Tokenizer
estimateTokenCountInTools, estimateTokenCountInTools
-
Constructor Details
-
OpenAiTokenizer
Deprecated, for removal: This API element is subject to removal in a future version.Please use other constructors and specify the model name explicitly.Creates an instance of theOpenAiTokenizer
for the "gpt-3.5-turbo" model.It should be suitable for all current OpenAI models, as they all use the same cl100k_base encoding. -
OpenAiTokenizer
Creates an instance of theOpenAiTokenizer
for a givenOpenAiChatModelName
. -
OpenAiTokenizer
Creates an instance of theOpenAiTokenizer
for a givenOpenAiEmbeddingModelName
. -
OpenAiTokenizer
Creates an instance of theOpenAiTokenizer
for a givenOpenAiLanguageModelName
. -
OpenAiTokenizer
Creates an instance of theOpenAiTokenizer
for a given model name.
-
-
Method Details
-
estimateTokenCountInText
Description copied from interface:Tokenizer
Estimates the count of tokens in the given text.- Specified by:
estimateTokenCountInText
in interfaceTokenizer
- Parameters:
text
- the text.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInMessage
Description copied from interface:Tokenizer
Estimates the count of tokens in the given message.- Specified by:
estimateTokenCountInMessage
in interfaceTokenizer
- Parameters:
message
- the message.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInMessages
Description copied from interface:Tokenizer
Estimates the count of tokens in the given messages.- Specified by:
estimateTokenCountInMessages
in interfaceTokenizer
- Parameters:
messages
- the messages.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInToolSpecifications
Description copied from interface:Tokenizer
Estimates the count of tokens in the given tool specifications.- Specified by:
estimateTokenCountInToolSpecifications
in interfaceTokenizer
- Parameters:
toolSpecifications
- the tool specifications.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInForcefulToolSpecification
Description copied from interface:Tokenizer
Estimates the count of tokens in the given tool specification.- Specified by:
estimateTokenCountInForcefulToolSpecification
in interfaceTokenizer
- Parameters:
toolSpecification
- the tool specification.- Returns:
- the estimated count of tokens.
-
encode
-
encode
-
decode
-
estimateTokenCountInToolExecutionRequests
public int estimateTokenCountInToolExecutionRequests(Iterable<ToolExecutionRequest> toolExecutionRequests) Description copied from interface:Tokenizer
Estimates the count of tokens in the given tool execution requests.- Specified by:
estimateTokenCountInToolExecutionRequests
in interfaceTokenizer
- Parameters:
toolExecutionRequests
- the tool execution request.- Returns:
- the estimated count of tokens.
-
estimateTokenCountInForcefulToolExecutionRequest
public int estimateTokenCountInForcefulToolExecutionRequest(ToolExecutionRequest toolExecutionRequest) Description copied from interface:Tokenizer
Estimates the count of tokens in the given tool execution request.- Specified by:
estimateTokenCountInForcefulToolExecutionRequest
in interfaceTokenizer
- Parameters:
toolExecutionRequest
- the tool execution request.- Returns:
- the estimated count of tokens.
-