Authorization: Bearer ********************{
"model": "imagen-4.0-generate-preview",
"messages": [
{
"role": "user",
"content": [
{ "type": "text", "text": "把这张商品图改成极简白底海报,保留主体结构和角度" },
{
"type": "image_url",
"image_url": {
"url": "https://example.com/input-product.png"
}
}
]
}
],
"generationConfig": {
"imageConfig": {
"aspectRatio": "9:16"
}
}
}curl --location --request POST '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "imagen-4.0-generate-preview",
"messages": [
{
"role": "user",
"content": [
{ "type": "text", "text": "把这张商品图改成极简白底海报,保留主体结构和角度" },
{
"type": "image_url",
"image_url": {
"url": "https://example.com/input-product.png"
}
}
]
}
],
"generationConfig": {
"imageConfig": {
"aspectRatio": "9:16"
}
}
}'{}