roll_dice
Simulate dice rolls using standard dice notation to generate random numbers for games, probability testing, or decision-making scenarios.
Instructions
Roll the dice with the given notation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notation | Yes | ||
num_rolls | No |
Input Schema (JSON Schema)
{
"properties": {
"notation": {
"title": "Notation",
"type": "string"
},
"num_rolls": {
"default": 1,
"title": "Num Rolls",
"type": "integer"
}
},
"required": [
"notation"
],
"type": "object"
}