A suite groups multiple simulations into a single batch that runs together, so every personality/scenario pairing you've built can be executed as one regression pass:
curl -X POST "https://api.sulus.ai/eval/simulation/suite" \
-H "Authorization: Bearer $SULUS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Appointment Booking Regression Suite",
"simulationIds": [
"<simulation-id-1>",
"<simulation-id-2>",
"<simulation-id-3>"
]
}'
A useful organizational pattern is to keep suites scoped by workflow — for example, separate suites for "Booking Tests," "Cancellation Tests," and "Rescheduling Tests" — and run the relevant suite whenever that part of your assistant's configuration changes.