Yes, I can.
In my system, the type of the seed parameter is an array.
To clarify,
The JSON format input to DALL-E 3 is
{
"size": "1024x1024",
"prompts": [
"YOU DESCRIPTION 1", "YOU DESCRIPTION 2", "YOU DESCRIPTION 3"
],
"seeds": [SEED1, SEED2, SEED3]
}
The JSON format output from DALL-E 3 is
{
"gen_id": "GEN_ID",
"prompt": "RETURN_DESCRIPTION",
"seed": RETURN_SEED
}