random_float
Generate custom floating-point numbers within a specified range using this tool. Set lower and upper bounds to create precise random values for simulations, testing, or data modeling.
Instructions
Generate a random float between low and high.
Args: low: Lower bound (default 0.0) high: Upper bound (default 1.0)
Returns: Random float between low and high
Input Schema
Name | Required | Description | Default |
---|---|---|---|
high | No | ||
low | No |
Input Schema (JSON Schema)
{
"properties": {
"high": {
"default": 1,
"title": "High",
"type": "number"
},
"low": {
"default": 0,
"title": "Low",
"type": "number"
}
},
"type": "object"
}