GPT 4o Image Reverse
GPT 4o Image VIP Model (Reverse enginereed model)
Pricing:
Successful generation:
$0.05
Failed generation:
$0.001
Here's how you can use curl
to request a completion for a "Cyberpunk city" prompt. You must replace YOUR_API_KEY
with your actual API key.
Streamed requests are the main option for this model, non-stream are not recommended.
curl --location 'https://api.unifically.com/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "gpt-4o-image-vip",
"messages": [
{
"role": "user",
"content": "Cyberpunk city"
}
]
}'
curl --location 'https://api.unifically.com/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "gpt-4o-image-vip",
"messages": [
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {
"url": "image url or base64 here"
}
},
{
"type": "text",
"text": "Give this dog a bike"
}
]
}
],
"stream": true
}'
Last updated