random_gen
Create random numbers within a range, generate UUID v4 identifiers, produce customizable passwords, or pick and shuffle items from a list.
Instructions
Generate random values. Operations: 'number' (random int in range, requires 'min' and 'max'), 'uuid' (UUID v4), 'password' (random password, optional 'length' and 'uppercase'/'symbols' flags), 'pick' (pick N items from a list, requires 'items' array and optional 'count'), 'shuffle' (shuffle a list, requires 'items' array).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max | No | Maximum value for 'number' operation (inclusive) | |
| min | No | Minimum value for 'number' operation (inclusive) | |
| count | No | Number of items to pick for 'pick' operation (default 1) | |
| items | No | Array of items for pick/shuffle operations | |
| length | No | Length for password (default 16) | |
| symbols | No | Include symbols in password (default true) | |
| operation | Yes | The random generation operation | |
| uppercase | No | Include uppercase in password (default true) |