Package io.codemodder.plugins.llm
Class Tokens
java.lang.Object
io.codemodder.plugins.llm.Tokens
A set of utilities around LLM tokens.
-
Method Summary
Modifier and TypeMethodDescriptionstatic int
countTokens
(List<String> messages, int tokensPerMessage, com.knuddels.jtokkit.api.EncodingType encodingType) Estimates the number of tokens the messages will consume.
-
Method Details
-
countTokens
public static int countTokens(List<String> messages, int tokensPerMessage, com.knuddels.jtokkit.api.EncodingType encodingType) Estimates the number of tokens the messages will consume.This does not yet support estimating the number of tokens the functions will consume, since the unofficial solutions are brittle.
We should be able to replace this with
TikTokensUtil.tokens
when the feature is released.- Parameters:
messages
- The messages.tokensPerMessage
- The number of tokens consumed per message by the given model.encodingType
- The encoding type used by the model.- Returns:
- The number of tokens.
- See Also:
-