generate_random_boolean
Generate cryptographically secure random boolean values with customizable counts and probability settings. Ideal for simulations, testing, and decision-making applications.
Instructions
Generate cryptographically secure random boolean values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of random booleans to generate | |
probability | No | Probability of true (0.0 to 1.0) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 1,
"description": "Number of random booleans to generate",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"probability": {
"default": 0.5,
"description": "Probability of true (0.0 to 1.0)",
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [],
"type": "object"
}