Authorization: Bearer ********************{
"model": "gpt-image-2",
"messages": [
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {
"url": "https://example.com/photo.jpg"
}
},
{
"type": "text",
"text": "Edit this image: change the background to a beach sunset"
}
]
}
],
"tools": [
{
"type": "image_generation",
"function": {
"name": "image_generation",
"parameters": {
"size": "1024x1024",
"quality": "auto"
}
}
}
]
}curl --location '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-image-2",
"messages": [
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {
"url": "https://example.com/photo.jpg"
}
},
{
"type": "text",
"text": "Edit this image: change the background to a beach sunset"
}
]
}
],
"tools": [
{
"type": "image_generation",
"function": {
"name": "image_generation",
"parameters": {
"size": "1024x1024",
"quality": "auto"
}
}
}
]
}'{}