get_random_number
Generate a random number between 1 and 50, or customize the range from 1 to 100 for applications requiring random numeric values.
Instructions
1부터 50 사이의 랜덤한 숫자를 하나 뽑아주는 도구입니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| min | No | 최소값 (기본값: 1) | |
| max | No | 최대값 (기본값: 50) |
Input Schema (JSON Schema)
{
"properties": {
"max": {
"description": "최대값 (기본값: 50)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"min": {
"description": "최소값 (기본값: 1)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}