TokenizerX supports Laravel 11 and Laravel 10.
composer require rajentrivedi/tokenizer-x
TokenizerX is a Laravel package designed to streamline tokenization processes in your applications. With the latest update, TokenizerX now supports cutting-edge GPT-4 models, providing advanced natural language processing capabilities.
It calculates the tokens required for a given prompt before requesting the OpenAI REST API. This package helps to ensure that the user does not exceed the OpenAI API token limit and can generate accurate responses.
To access the OpenAI Rest API, you may consider the beautiful Laravel Package OpenAI PHP.
You can install the package via composer:
composer require rajentrivedi/tokenizer-x
By default package will consider GPT-3 model
use Rajentrivedi\TokenizerX\TokenizerX;
TokenizerX::count("how are you?");
If you want token counts for specific OpenAI model, you can pass model as a second argument from above given supported model list.
use Rajentrivedi\TokenizerX\TokenizerX;
TokenizerX::count("how are you?", "gpt-4");
You can also read the text from file
TokenizerX::count(file_get_contents('path_to_file'));
Please make sure that text of the file don't change while reading the file programmatically, this may happen due to encoding. You can check the generated token IDs by using following
TokenizerX::tokens(file_get_contents('path_to_file'));
This will return an array of tokens generated & compare those token IDs with OpenAI Tokenizer
You can also use the OpenAI Tokenizer to double-check package generated token counts.
If you find TokenizerX helpful and would like to support its ongoing development, you can contribute by buying me a coffee! Your support helps in maintaining and improving the package for the Laravel community.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
If you find this project useful or interesting, I kindly request you to give it a ⭐ star on GitHub. Your support will encourage and motivate me to continue improving and maintaining this project.
By starring the repository, you can show appreciation for the work put into developing this open-source project. It also helps to increase its visibility, making it more accessible to other developers and potentially attracting contributors.
To give a ⭐ star, simply click on the Star button at the top-right corner of the repository page.
The MIT License (MIT). Please see License File for more information.