Skip to content

Commit eeb62fd

Browse files
committed
Update project wording to clarify Azure OpenAI
1 parent ad92aa7 commit eeb62fd

12 files changed

+20
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# OpenAI Image Token Calculator
1+
# Azure OpenAI Image Token Calculator
22

3-
The OpenAI Image Token Calculator is a simple application designed to estimate the number of tokens and the cost associated with processing images using 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.
3+
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.
44

55
**Use the app**: https://jamesmcroft.github.io/openai-image-token-calculator/
66

index.html

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,24 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
65
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>OpenAI Image Token Calculator</title>
6+
<title>Azure OpenAI Image Token Calculator</title>
7+
<meta
8+
name="description"
9+
content="Calculate image tokens and costs for requests to Azure OpenAI services with this easy-to-use calculator."
10+
/>
11+
<meta
12+
name="keywords"
13+
content="Azure, OpenAI, Image Token, Calculator, AI, Machine Learning"
14+
/>
15+
<meta name="author" content="James Croft" />
16+
<meta name="robots" content="index, follow" />
17+
<meta property="og:title" content="Azure OpenAI Image Token Calculator" />
18+
<meta
19+
property="og:description"
20+
content="Calculate image tokens and costs for requests to Azure OpenAI services with this easy-to-use calculator."
21+
/>
22+
<link rel="icon" href="/icons/icon-72x72.png" />
823
</head>
924
<body>
1025
<div id="root"></div>

public/favicon.ico

205 KB
Binary file not shown.

public/images/icon-128x128.png

20 KB
Loading

public/images/icon-144x144.png

24.8 KB
Loading

public/images/icon-152x152.png

27.5 KB
Loading

public/images/icon-192x192.png

39.5 KB
Loading

public/images/icon-384x384.png

123 KB
Loading

public/images/icon-512x512.png

205 KB
Loading

public/images/icon-72x72.png

7.87 KB
Loading

public/images/icon-96x96.png

12.2 KB
Loading

vite.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ export default ({}) => {
55
return defineConfig({
66
plugins: [react()],
77
base: "/openai-image-token-calculator/",
8+
publicDir: "public",
89
});
910
};

0 commit comments

Comments
 (0)