Image Gen
Generate AI images via submit_image (configured provider keys only). Prefer one clear still per request unless the user asked for variants.
Model Selection
| Model |
Reference |
Strengths |
Max refs |
gpt-image-2 |
references/gpt-image-2.md |
Best text rendering, strongest prompt adherence |
16 |
nano-banana |
references/nano-banana.md |
Strongest reference-image fidelity |
14 |
image-01 |
references/image-01.md |
MiniMax stills / live style; one subject reference via R2 |
1 |
grok-imagine |
references/grok-imagine.md |
xAI Grok Imagine; text-to-image, ≤4 outputs, 1K/2K |
0 |
- Default:
gpt-image-2 when that key is on.
- Reference-heavy →
nano-banana.
- User named MiniMax / only MiniMax image key on →
image-01.
- Respect capabilities: do not call a model whose vendor is not configured.
IMPORTANT: Before generating, READ the chosen model's reference.
Tool Params
| Param |
Values |
Default |
aspectRatio |
1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 4:5, 5:4, 21:9 |
16:9 |
imageSize |
512px, 1K, 2K, 4K (model-specific) |
1K |
width / height |
GPT Image: 512–3840, /16; MiniMax: 512–2048, /8 |
— |
quality |
low, medium, high, auto (gpt-image-2 only) |
high |
referenceAssetIds |
Array of project asset ids — backend resolves bytes server-side |
— |
name |
Short descriptive asset name shown in the library |
— |
count |
Number of images to generate (1–10; image-01 max 9) |
1 |
promptOptimizer |
MiniMax image-01 only — prompt_optimizer |
false |
seed |
MiniMax image-01 only |
— |
maskAssetId, background, moderation, inputFidelity |
GPT Image edit/output controls |
— |
outputFormat, outputCompression |
GPT Image PNG/JPEG/WebP controls |
PNG |
Defaults
- Aspect ratio: 16:9. If the project composition is not 16:9, ASK the user which aspect ratio they want before generating.
- Size: 1K.
Ask Before Submit
- Never auto-upgrade size.
- Only pass
imageSize: "2K" or "4K" when the user explicitly asks. Warn that 2K/4K are EXPERIMENTAL and may be slower.
Reference Images
Use when the user provides source material to edit, blend, or use as visual guidance (e.g. "change the background", "combine these into a poster").
- Pass project asset ids via
referenceAssetIds. The backend fetches and encodes them server-side — never pull the asset bytes yourself.
- When the user @-references an image asset, pass its id directly in
referenceAssetIds.
- Formats accepted by backend: png, jpeg, webp, svg (auto-rasterized to png), heic, heif. Each ≤ 50MB.
Run
// Basic generation
submit_image({
model: "gpt-image-2",
prompt: "a cute orange cat",
name: "Cat",
});
// With quality (gpt-image-2 only)
submit_image({
model: "gpt-image-2",
prompt: "hero poster with bold title",
quality: "high",
name: "Hero Poster",
});
// With reference images — pass project asset ids; backend resolves bytes
submit_image({
model: "gpt-image-2",
prompt: "change background to beach",
referenceAssetIds: ["<assetId>"],
name: "Beach Edit",
});
// Reference-heavy with nano-banana
submit_image({
model: "nano-banana",
prompt: "composite poster",
referenceAssetIds: ["<id1>", "<id2>"],
name: "Composite",
});
// Multiple images
submit_image({
model: "gpt-image-2",
prompt: "product shots",
count: 3,
name: "Product",
});
// MiniMax (optional single subject reference; R2 must be configured for refs)
submit_image({
model: "image-01",
prompt: "matte product bottle on marble, soft studio light",
name: "Bottle still",
promptOptimizer: false,
});
OpenChatCut’s submit_image may return completed pool assets synchronously depending on the provider path. If a jobId is returned, use track_progress; otherwise treat the asset ids in the result as done.
Rules
- Always provide
name with a short descriptive asset name.
- Before submitting, briefly tell the user what you're about to generate — especially when generating multiple images.
- Only call models whose vendor key is configured (capabilities prompt).
1---2name: image-gen3description: AI image generation via gpt-image-2, nano-banana, MiniMax image-01, and xAI Grok Imagine. Use when the user wants to generate or create an image / picture / still.4---5
6# Image Gen
7
8Generate AI images via `submit_image` (configured provider keys only). Prefer one clear still per request unless the user asked for variants.
9
10## Model Selection
11
12| Model | Reference | Strengths | Max refs |
13| --- | --- | --- | --- |
14| `gpt-image-2` | [references/gpt-image-2.md](references/gpt-image-2.md) | Best text rendering, strongest prompt adherence | 16 |
15| `nano-banana` | [references/nano-banana.md](references/nano-banana.md) | Strongest reference-image fidelity | 14 |
16| `image-01` | [references/image-01.md](references/image-01.md) | MiniMax stills / live style; one subject reference via R2 | 1 |
17| `grok-imagine` | [references/grok-imagine.md](references/grok-imagine.md) | xAI Grok Imagine; text-to-image, ≤4 outputs, 1K/2K | 0 |
18
19- Default: `gpt-image-2` when that key is on.
20- Reference-heavy → `nano-banana`.
21- User named MiniMax / only MiniMax image key on → `image-01`.
22- Respect capabilities: do not call a model whose vendor is not configured.
23
24**IMPORTANT:** Before generating, READ the chosen model's reference.
25
26## Tool Params
27
28| Param | Values | Default |
29| ------------------- | ----------------------------------------------------------------------- | ------- |
30| `aspectRatio` | `1:1`, `16:9`, `9:16`, `4:3`, `3:4`, `3:2`, `2:3`, `4:5`, `5:4`, `21:9` | `16:9` |
31| `imageSize` | `512px`, `1K`, `2K`, `4K` (model-specific) | `1K` |
32| `width` / `height` | GPT Image: 512–3840, /16; MiniMax: 512–2048, /8 | — |
33| `quality` | `low`, `medium`, `high`, `auto` (gpt-image-2 only) | `high` |
34| `referenceAssetIds` | Array of project asset ids — backend resolves bytes server-side | — |
35| `name` | Short descriptive asset name shown in the library | — |
36| `count` | Number of images to generate (1–10; image-01 max 9) | `1` |
37| `promptOptimizer` | MiniMax `image-01` only — `prompt_optimizer` | `false` |
38| `seed` | MiniMax `image-01` only | — |
39| `maskAssetId`, `background`, `moderation`, `inputFidelity` | GPT Image edit/output controls | — |
40| `outputFormat`, `outputCompression` | GPT Image PNG/JPEG/WebP controls | PNG |
41
42## Defaults
43
44- Aspect ratio: **16:9**. If the project composition is not 16:9, ASK the user which aspect ratio they want before generating.
45- Size: **1K**.
46
47## Ask Before Submit
48
49- Never auto-upgrade size.
50- Only pass `imageSize: "2K"` or `"4K"` when the user explicitly asks. Warn that 2K/4K are EXPERIMENTAL and may be slower.
51
52## Reference Images
53
54Use when the user provides source material to edit, blend, or use as visual guidance (e.g. "change the background", "combine these into a poster").
55
56- Pass project asset ids via `referenceAssetIds`. The backend fetches and encodes them server-side — never pull the asset bytes yourself.
57- When the user @-references an image asset, pass its id directly in `referenceAssetIds`.
58- Formats accepted by backend: png, jpeg, webp, svg (auto-rasterized to png), heic, heif. Each ≤ 50MB.
59
60## Run
61
62```ts
63// Basic generation
64submit_image({
65 model: "gpt-image-2",
66 prompt: "a cute orange cat",
67 name: "Cat",
68});
69
70// With quality (gpt-image-2 only)
71submit_image({
72 model: "gpt-image-2",
73 prompt: "hero poster with bold title",
74 quality: "high",
75 name: "Hero Poster",
76});
77
78// With reference images — pass project asset ids; backend resolves bytes
79submit_image({
80 model: "gpt-image-2",
81 prompt: "change background to beach",
82 referenceAssetIds: ["<assetId>"],
83 name: "Beach Edit",
84});
85
86// Reference-heavy with nano-banana
87submit_image({
88 model: "nano-banana",
89 prompt: "composite poster",
90 referenceAssetIds: ["<id1>", "<id2>"],
91 name: "Composite",
92});
93
94// Multiple images
95submit_image({
96 model: "gpt-image-2",
97 prompt: "product shots",
98 count: 3,
99 name: "Product",
100});
101
102// MiniMax (optional single subject reference; R2 must be configured for refs)
103submit_image({
104 model: "image-01",
105 prompt: "matte product bottle on marble, soft studio light",
106 name: "Bottle still",
107 promptOptimizer: false,
108});
109```
110
111OpenChatCut’s `submit_image` may return completed pool assets synchronously depending on the provider path. If a `jobId` is returned, use `track_progress`; otherwise treat the asset ids in the result as done.
112
113## Rules
114
115- Always provide `name` with a short descriptive asset name.
116- Before submitting, briefly tell the user what you're about to generate — especially when generating multiple images.
117- Only call models whose vendor key is configured (capabilities prompt).