estimate_fare
Calculate distance and estimated fare in INR for a cab ride using pickup, drop-off, passenger count, and vehicle type to confirm the price with the guest before booking.
Instructions
Calculate distance and estimated fare in INR for a ride based on pickup, drop-off, passenger count, and vehicle type. Present this fare to the guest for confirmation before calling create_booking().
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hotel_id | No | Optional: Hotel ID (required if using 'HOTEL' alias) | |
| vehicle_type | No | Vehicle type preference | |
| passenger_count | No | Number of passengers (default: 1) | |
| drop_location_id | Yes | Drop-off location ID (or 'HOTEL') | |
| pickup_location_id | Yes | Pickup location ID (or 'HOTEL') |