curl --request POST \
--url https://www.fill3d.ai/api/v1/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"messages": [
{
"role": "<string>",
"content": [
{
"type": "<string>",
"text": "<string>",
"image_url": "<string>"
}
]
}
],
"stream": true
}
'