Skip to main content

gpt-image-2-5

Generate or edit images with GPT Image 2.5 Flare or Sunburst through AceDataCloud. Choose Flare for speed or Sunburst for high-fidelity control; never use the unsupported bare gpt-image-2.5 name.

Zur Installation springen

Quellinformationen

Repository
AceDataCloud/Skills
Letzte Quellaktivität
10. September 2026 um 20:47
Erkannte Sprache von SKILL.md
Englisch
Sterne
17
Forks
1

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
gpt-image-2-5
description
Generate or edit images with GPT Image 2.5 Flare or Sunburst through AceDataCloud. Choose Flare for speed or Sunburst for high-fidelity control; never use the unsupported bare gpt-image-2.5 name.
license
Apache-2.0
metadata
{"author":"acedatacloud","version":"1.0"}
compatibility
Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
# GPT Image 2.5 Use one exact model ID for every request: - `gpt-image-2.5-flare` — faster generation. - `gpt-image-2.5-sunburst` — higher-fidelity output and editing control. - `gpt-image-2.5-flare:official` — Flare using the official, token-billed variant. - `gpt-image-2.5-sunburst:official` — Sunburst using the official, token-billed variant. Do not send `gpt-image-2.5` or `gpt-image-2.5:reverse`; they are not model IDs. > **Setup:** See [authentication](../_shared/authentication.md) for token setup. ## Generate ```bash curl -X POST https://api.acedata.cloud/openai/images/generations \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"model":"gpt-image-2.5-flare","prompt":"A clean product photograph on a pale studio background, no text","size":"1024x1024","n":1}' ``` ## Edit ```bash curl -X POST https://api.acedata.cloud/openai/images/edits \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -F "model=gpt-image-2.5-sunburst" \ -F "prompt=Keep the subject and composition; change only the background to dark navy." \ -F "image=@input.png" \ -F "size=1024x1024" \ -F "n=1" ``` The result is in `data[].url`. ## Shared contract - `size` may be `auto` or `WIDTHxHEIGHT`. - Custom dimensions use multiples of 16, max side 3840, 655,360–8,294,400 pixels, and aspect ratio at most 3:1. - `quality` accepts `auto`, `low`, `medium`, or `high`. - `n` accepts 1–10 and billing uses the number of images returned. Use URL output for `n>1`; `b64_json` requires `n=1`. - The `:official` variants bill for actual text, reference-image, and output-image tokens; use returned usage records for final cost. - For long jobs, pass `async: true` or `callback_url`, then poll `POST /openai/tasks` with `{"id":"<task_id>"}`. - Image editing accepts URL input in JSON or local files with multipart form data.
Auf GitHub ansehen