roll_dice
Generate random dice rolls using standard dice notation to simulate game mechanics, probability testing, or random number generation for various applications.
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"
}