find_buses_to_destination
Search for KMB and Long Win bus routes to a specific destination in Hong Kong. Input the destination name to retrieve relevant bus route information efficiently.
Instructions
Find bus routes that go to a specified destination.
Args:
destination: The destination to search for (e.g., "Central", "Mong Kok", "Airport")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"title": "Destination",
"type": "string"
}
},
"required": [
"destination"
],
"title": "find_buses_to_destinationArguments",
"type": "object"
}