curl --request POST \
--url http://localhost:9000/api/v1/replicate/imagegeneration \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "<string>",
"width": 123,
"height": 123,
"scheduler": "<string>",
"num_outputs": 123,
"guidance_scale": 123,
"negative_prompt": "<string>",
"num_inference_steps": 123
}
'