curl --location --request POST '/v1/chat/completions' \
--header 'Authorization: sk-' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-2.0-flash-preview-image-generation",
"stream": true,
"messages": [
{
"role": "user",
"content": "A cat in a tree"
}
]
}'