Authorization: Bearer ********************{
"model": "gpt-image-2",
"messages": [
{
"role": "user",
"content": "Generate an image of a cute cat sitting on a windowsill"
}
],
"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": "Generate an image of a cute cat sitting on a windowsill"
}
],
"tools": [
{
"type": "image_generation",
"function": {
"name": "image_generation",
"parameters": {
"size": "1024x1024",
"quality": "auto"
}
}
}
]
}'{}