Queue multiple inference requests simultaneously with different priorities. The scheduler drains high before normal before low, so elapsed time reflects priority order — not queue order. Uses DistilBERT SST-2 for sentiment classification.
const result = await model.run(text, { priority: 'high' });
// high tasks finish before normal/low, even when enqueued together