random_int
Generate a random integer within a specified range using predefined lower and upper bounds. Ideal for scenarios requiring precise integer randomization in LLM workflows.
Instructions
Generate a random integer between low and high (inclusive).
Args: low: Lower bound (inclusive) high: Upper bound (inclusive)
Returns: Random integer between low and high
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| high | Yes | ||
| low | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "high": {
      "title": "High",
      "type": "integer"
    },
    "low": {
      "title": "Low",
      "type": "integer"
    }
  },
  "required": [
    "low",
    "high"
  ],
  "type": "object"
}