Wan 3.0 accepts a request for up to four clips. The number is easy to misread, and the two readings lead to completely different products.
The wrong reading: four attempts at the same shot, so you can pick the best one — a cheap way to buy variance, the way you would sample a language model four times at temperature and keep the good completion.
What it actually is: one prompt, one submission, one place on your concurrency budget, returning four outputs. You are not getting four independent tries at a problem. You are getting one job whose output happens to be a set.
The concurrency limit is two tasks at once, and there is no way to cancel one. Those two facts combine with the batch size in a way that is not obvious until you have a queue:
So batching trades throughput for granularity. That is a real trade, and which side you want depends on something specific: how confident are you in the prompt at submission time?
The failure mode I have watched people walk into is using the batch as a substitute for iteration: asking for four because they are unsure, when being unsure is precisely the case where four is the expensive choice. Sampling four times is a good instinct borrowed from text generation, where a retry costs a fraction of a cent and returns in a second. It transfers badly to a medium where one output is seconds of wall-clock time and a per-second charge.
Where batching earns its keep is consistency, not variance. Four clips from one request share the prompt exactly — there is no chance of a stray edit between submissions, no risk that you changed a word and forgot. When you are assembling a sequence that has to feel like one piece, that guarantee is worth more than the round-trip saving.
Clips per request, the concurrency limit, and the absence of a cancel call are all published parameters, not inferences. They are listed with sources and check dates on the Wan 3.0 specification table, alongside the ones that get misquoted most often — there is no 4K tier, no 21:9 ratio, and the output is 30 fps rather than 24.
Disclosure: this site is written by the people who run a third-party browser interface to this model. We are not affiliated with Alibaba or Alibaba Cloud.