Skip to content

Commit a478751

Browse files
committed
docs: update docs to use gpt-image-1.5 in examples
1 parent b701280 commit a478751

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

adminforth/documentation/docs/tutorial/05-ListOfAdapters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ Is used for image generating AI tools.
100100
npm i @adminforth/image-generation-adapter-openai
101101
```
102102

103-
Uses OpenAI’s image generation models (like DALL·E and gpt-image-1) to generate images from text prompts.
103+
Uses OpenAI’s image generation models (like DALL·E, gpt-image-1, gpt-image-1.5) to generate images from text prompts.
104104

105-
Up to the summer 2025 OpenAI models are one of the most powerful image generation models available (Especially GPT-Image-1), that is why we started with them.
105+
Up to the winter 2026 OpenAI models are one of the most powerful image generation models available (Especially GPT-Image-1.5), that is why we started with them.
106106

107107
---
108108

adminforth/documentation/docs/tutorial/07-Plugins/05-upload.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ new UploadPlugin({
309309
## Image generation
310310
311311
Upload plugin supports AI generation for images. Yo use it you need to install image generation adapter.
312-
For example for OpenAI models like `gpt-image-1` (or old `DALL-E` models):
312+
For example for OpenAI models like `gpt-image-1.5` (or old `DALL-E` models):
313313
314314
```bash
315315
npm i @adminforth/image-generation-adapter-openai
@@ -331,7 +331,7 @@ new UploadPlugin({
331331
//diff-add
332332
openAiApiKey: process.env.OPENAI_API_KEY as string,
333333
//diff-add
334-
model: 'gpt-image-1',
334+
model: 'gpt-image-1.5',
335335
//diff-add
336336
}),
337337
//diff-add
@@ -354,7 +354,7 @@ new ImageGenerationAdapterOpenAI({
354354
//diff-add
355355
openAiApiKey: process.env.OPENAI_API_KEY as string,
356356
//diff-add
357-
model: 'gpt-image-1',
357+
model: 'gpt-image-1.5',
358358
//diff-add
359359
extraParams: {
360360
//diff-add

adminforth/documentation/docs/tutorial/07-Plugins/17-bulk-ai-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ new BulkAiFlowPlugin({
257257
actionName: 'Generate cartoon avatars',
258258
imageGenerationAdapter: new ImageGenerationAdapterOpenAI({
259259
openAiApiKey: process.env.OPENAI_API_KEY as string,
260-
model: 'gpt-image-1',
260+
model: 'gpt-image-1.5',
261261
}),
262262
attachFiles: async ({ record }) => {
263263
if (!record.user_photo) {

0 commit comments

Comments
 (0)