The Azure OpenAI Image Token Calculator is a simple application designed to estimate the number of tokens and the cost associated with processing images using Azure OpenAI's GPT-4o and 4o-mini models. This tool helps users understand the how the tokens and cost is calculated based on the selected model's specifications and the number of images to be processed.
Use the app: https://jamesmcroft.github.io/openai-image-token-calculator/
- Select a Model: Choose a model from the dropdown menu.
- Add Images: Input the height and width of the images you will process in a single request. A multiplier can be applied also if you are processing many images of the same size.
- Calculate: Click the "Calculate" button to get the token and cost estimates.
- View Results: The results will display the token estimate and cost estimate based on the selected model.
- Node.js installed on your machine (recommend using the LTS version)
-
Clone the repository:
git clone https://github.com/jamesmcroft/openai-image-token-calculator.git cd openai-image-token-calculator
-
Install the dependencies:
npm install
-
Start the development server:
npm run dev
-
Open your browser and navigate to the local server address (usually
http://localhost:5173
).
To build the application for production, run the following command:
npm run build
This will create a dist
directory containing the compiled application.
Contributions are welcome! To contribute changes to the application:
- Fork the repository.
- Clone your forked repository.
- Create a new branch for your changes.
- Make your changes.
- Commit your changes.
- Push your changes to your forked repository.
- Create a pull request!
This project is licensed under the MIT License - see the LICENSE file for details.