Skip to content

Commit 981a962

Browse files
committed
Add comments to clarify token calculation for image generation models
1 parent 994b999 commit 981a962

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/stores/ModelStore.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ export const modelStore = (set, get) => ({
166166
tileSizeLength: 512,
167167
baseTokens: 65,
168168
costPerMillionTokens: 10,
169+
comment:
170+
"This calculator only provides the input tokens consumed by the image generation model, not the output tokens for the images generated by the model.",
169171
},
170172
{
171173
name: "gpt-image-1 (Data Zone)",
@@ -175,6 +177,8 @@ export const modelStore = (set, get) => ({
175177
tileSizeLength: 512,
176178
baseTokens: 65,
177179
costPerMillionTokens: 11,
180+
comment:
181+
"This calculator only provides the input tokens consumed by the image generation model, not the output tokens for the images generated by the model.",
178182
},
179183
{
180184
name: "gpt-image-1 (Standard)",
@@ -184,6 +188,8 @@ export const modelStore = (set, get) => ({
184188
tileSizeLength: 512,
185189
baseTokens: 65,
186190
costPerMillionTokens: 11,
191+
comment:
192+
"This calculator only provides the input tokens consumed by the image generation model, not the output tokens for the images generated by the model.",
187193
},
188194
],
189195
},

0 commit comments

Comments
 (0)