-
Notifications
You must be signed in to change notification settings - Fork 0
Provider Openai
Modes: video · image · audio · Models: 8
Vendor: OpenAI · Official API docs: OpenAI Developer Docs
OpenAI spans two media families on the Playground: Sora 2 text-to-video (standard and Pro, plus a chainable Extend workflow) and GPT Image text-to-image (gpt-image-2, gpt-image-1.5). Sora renders up to 720p (1080p on sora-2-pro) with native audio and optional first-frame image conditioning.
| id | Name | Input type |
|---|---|---|
sora-2 |
Sora 2 | t2v |
sora-2-pro |
Sora 2 Pro | t2v |
sora-2-extend |
Sora 2 Extend | v2v |
gpt-image-2 |
GPT Image 2 | t2i |
gpt-image-1.5 |
GPT Image 1.5 | t2i |
gpt-image-1 |
GPT Image 1 | t2i |
openai-tts-1 |
OpenAI TTS-1 | tts |
openai-tts-1-hd |
OpenAI TTS-1 HD | tts |
# text-to-video
gen-ai generate -m sora-2 \
-p "a paper boat drifting down a rain-soaked city gutter, cinematic, slow motion" \
--ar 16:9 -d 8
# image-anchored video (first-frame conditioning)
gen-ai generate -m sora-2-pro -p "the boat sets sail into open water" -i ./boat.jpg --ar 16:9 -d 12
# text-to-image
gen-ai generate -m gpt-image-2 \
-p "an isometric cutaway of a cozy bookshop, warm lighting" \
--ar 16:9 -n 2{ "name": "picsart_generate",
"arguments": {
"model": "sora-2",
"prompt": "a paper boat drifting down a rain-soaked city gutter, cinematic, slow motion",
"aspectRatio": "16:9",
"duration": 8
} }{ "name": "picsart_generate",
"arguments": {
"model": "gpt-image-2",
"prompt": "an isometric cutaway of a cozy bookshop, warm lighting",
"aspectRatio": "16:9",
"count": 2
} }Full parameter surface for every model, sourced from gen-ai models info <id> --json. CLI flags show the primary short form; the canonical --kebab-case long form always works too.
Try sora-2-pro in Playground ↗
Input type: t2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required |
imageUrls |
-i |
file | image (up to 1) |
aspectRatio |
--ar |
enum |
16:9 · 9:16 (default 16:9) |
resolution |
-r |
enum |
720p · 1024p · 1080p (default 720p) |
duration |
-d |
enum |
4 · 8 · 12 · 16 · 20 (default 4) |
Input type: t2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required |
imageUrls |
-i |
file | image (up to 1) |
aspectRatio |
--ar |
enum |
16:9 · 9:16 (default 16:9) |
duration |
-d |
enum |
4 · 8 · 12 · 16 · 20 (default 4) |
Try sora-2-extend in Playground ↗
Input type: v2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required |
videoId |
--video-id |
enum | dynamic value (no fixed list) |
duration |
-d |
enum |
4 · 8 · 12 · 16 · 20 (default 8) |
Try gpt-image-2 in Playground ↗
Input type: t2i
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required |
aspectRatio |
--ar |
enum |
1:1 · 3:2 · 2:3 · 16:9 · 9:16 · 4:3 · 3:4 · auto (default 1:1) |
quality |
--quality |
enum |
high · medium · low (default high) |
outputFormat |
--format |
enum |
png · jpeg · webp (default png) |
count |
-n |
enum |
1 · 2 · 4 · 6 · 8 · 10 (default 1) |
imageUrls |
-i |
file | image (up to 5) |
Try gpt-image-1.5 in Playground ↗
Input type: t2i
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required |
aspectRatio |
--ar |
enum |
1:1 · 3:2 · 2:3 · 16:9 · 9:16 · 4:3 · 3:4 (default 1:1) |
quality |
--quality |
enum |
high · medium · low (default high) |
background |
--background |
enum |
opaque · transparent (default opaque) |
outputFormat |
--format |
enum |
png · jpeg · webp (default png) |
count |
-n |
enum |
1 · 2 · 4 · 6 · 8 · 10 (default 1) |
imageUrls |
-i |
file | image (up to 5) |
Try gpt-image-1 in Playground ↗
Input type: t2i
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required |
aspectRatio |
--ar |
enum |
1:1 · 3:2 · 2:3 · 16:9 · 9:16 · 4:3 · 3:4 (default 1:1) |
quality |
--quality |
enum |
high · medium · low (default high) |
background |
--background |
enum |
opaque · transparent (default opaque) |
outputFormat |
--format |
enum |
png · jpeg · webp (default png) |
count |
-n |
enum |
1 · 2 · 4 · 6 · 8 · 10 (default 1) |
imageUrls |
-i |
file | image (up to 5) |
Try openai-tts-1 in Playground ↗
Input type: tts
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤4096 chars) |
voiceId |
--voice |
enum |
alloy (Alloy) · ash (Ash) · ballad (Ballad) · coral (Coral) · echo (Echo) · fable (Fable) · nova (Nova) · onyx (Onyx) · sage (Sage) · shimmer (Shimmer) · verse (Verse) (default alloy) |
Try openai-tts-1-hd in Playground ↗
Input type: tts
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤4096 chars) |
voiceId |
--voice |
enum |
alloy (Alloy) · ash (Ash) · ballad (Ballad) · coral (Coral) · echo (Echo) · fable (Fable) · nova (Nova) · onyx (Onyx) · sage (Sage) · shimmer (Shimmer) · verse (Verse) (default alloy) |
Notes:
sora-2-proadds 1080p output;sora-2-extendcontinues an existing video.gpt-image-2is opaque-only;gpt-image-1.5adds a transparentbackgroundoption.
gen-ai pricing sora-2 -d 8 --ar 16:9
gen-ai pricing gpt-image-2 --quality high -n 2Sora cost scales with duration, resolution (720p vs 1080p on Pro), and tier (sora-2 vs sora-2-pro). GPT Image cost scales with quality, output size, and count.
Picsart CLI & MCP · Repo · AI Playground app
Getting Started
Interfaces
Concepts
Model Reference
Providers
- All providers
- Async
- ByteDance
- Creatify
- ElevenLabs
- Flux (Black Forest Labs)
- Grok (xAI)
- Happy Horse
- HeyGen
- Hunyuan
- Ideogram
- Kling
- LTX (Lightricks)
- Luma
- MiniMax
- OpenAI
- OVI
- Picsart
- Pika
- PixVerse
- Qwen (Alibaba)
- Recraft
- Reve
- Runway
- Seedance
- Seedream
- Topaz
- VEED
- Videography
- Wan (Alibaba)
More