Text tokenizers.
Project description
totokenizers
A model-agnostic library to encode text into tokens and couting them using different tokenizers.
install
pip install totokenizers
usage
from totokenizers.factories import TotoModelInfo, Totokenizer
model = "openai/gpt-3.5-turbo-0613"
desired_max_tokens = 250
tokenizer = Totokenizer.from_model(model)
model_info = TotoModelInfo.from_model(model)
thread_length = tokenizer.count_chatml_tokens(thread, functions)
if thread_length + desired_max_tokens > model_info.max_tokens:
raise YourException(thread_length, desired_max_tokens, model_info.max_tokens)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
totokenizers-1.4.0.tar.gz
(755.7 kB
view hashes)
Built Distribution
totokenizers-1.4.0-py3-none-any.whl
(766.3 kB
view hashes)
Close
Hashes for totokenizers-1.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79d5fa61253e117d4fd42bb75fd202cc9f9165c902eaa5c93060dea36ab28e23 |
|
MD5 | 8120db98847ce1b06bdbde918ea7c17a |
|
BLAKE2b-256 | be5cb7adca055a27d3703438f0f3356fb42220a7f9a6704a7d05876e14cd01c2 |