Token Counter¶
llm_client.utils.token_counter
¶
Token counting utilities for LLM messages using tiktoken.
Classes¶
TokenCounter
¶
Utility class for counting tokens in messages.
This class uses tiktoken to count tokens accurately for different models. Falls back to rough estimation if tiktoken is not available.
Examples:
>>> counter = TokenCounter()
>>> messages = [{"role": "user", "content": "Hello world"}]
>>> token_count = counter.count_tokens(messages, model="gpt-4o")
>>> print(f"Tokens: {token_count}")
Source code in llm_client/utils/token_counter.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | |
Functions¶
count_string_tokens(text, model='gpt-4o-mini')
staticmethod
¶
Count tokens in a single string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Text to count tokens for. |
required |
model
|
str
|
Model name for encoding selection. |
'gpt-4o-mini'
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Token count. |
Examples:
Source code in llm_client/utils/token_counter.py
count_tokens(messages, model='gpt-4o-mini', fallback=True)
staticmethod
¶
Count tokens in a list of messages.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
list[dict[str, str]]
|
List of message dicts with 'role' and 'content' keys. |
required |
model
|
str
|
Model name to use for encoding selection. |
'gpt-4o-mini'
|
fallback
|
bool
|
If True, use rough estimation when tiktoken unavailable. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Total token count. |
Raises:
| Type | Description |
|---|---|
ImportError
|
If tiktoken not installed and fallback=False. |
Examples:
>>> messages = [
... {"role": "system", "content": "You are helpful."},
... {"role": "user", "content": "Hello!"}
... ]
>>> TokenCounter.count_tokens(messages, model="gpt-4o")
23
Source code in llm_client/utils/token_counter.py
is_tiktoken_available()
staticmethod
¶
Check if tiktoken is available.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if tiktoken is installed. |