Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ from Gradio_UI import GradioUI
|
|
| 13 |
def get_dice_rolls(n_faces:int, n_dice:int)-> list:
|
| 14 |
"""A tool that rolls dice
|
| 15 |
Args:
|
| 16 |
-
|
| 17 |
n_dice: number of dice to roll
|
| 18 |
"""
|
| 19 |
return [random.randint(1, faces) for _ in range(n_dice)]
|
|
|
|
| 13 |
def get_dice_rolls(n_faces:int, n_dice:int)-> list:
|
| 14 |
"""A tool that rolls dice
|
| 15 |
Args:
|
| 16 |
+
n_faces: number of dice faces
|
| 17 |
n_dice: number of dice to roll
|
| 18 |
"""
|
| 19 |
return [random.randint(1, faces) for _ in range(n_dice)]
|