get_random_birds
Retrieve a random sample of birds from the AviBase dataset for exploration and discovery, with customizable count up to 50.
Instructions
Get a random sample of birds for exploration and discovery.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of random birds to return (default: 10, max: 50) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Number of random birds to return (default: 10, max: 50)",
"maximum": 50,
"type": "number"
}
},
"required": [],
"type": "object"
}