random_number
Generate a random number within a defined range using customizable minimum and maximum values. Ideal for tasks requiring randomized data selection or testing scenarios.
Instructions
Generate a random number within a specified range.
Args:
min_value: Minimum value (default: 1)
max_value: Maximum value (default: 100)
Returns:
Dictionary containing the random number and range info
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_value | No | ||
min_value | No |
Input Schema (JSON Schema)
{
"properties": {
"max_value": {
"default": 100,
"title": "Max Value",
"type": "integer"
},
"min_value": {
"default": 1,
"title": "Min Value",
"type": "integer"
}
},
"title": "random_numberArguments",
"type": "object"
}