get_availability
ChatGPTGet available room offers from one or more hotels and display them in an interactive comparison widget with booking buttons. Pass a list of hotel objects, each with hotel_name and city. All hotels are queried in parallel with the same dates and guest configuration. Optionally specify a currency to convert all prices. The server automatically tries four strategies per hotel to maximise the chance of finding availability: 1. Single room, exact dates requested 2. Multiple rooms, exact dates (when no single room fits all guests) 3. Single room, extended checkout (when a minimum-stay restriction applies) 4. Multiple rooms, extended checkout (last resort) IMPORTANT: Use English city names (e.g., "Prague" not "Praha", "Vienna" not "Wien"). Args: hotels: List of objects, each with hotel_name (str) and city (str, English name). check_in_date: Check-in date in YYYY-MM-DD format.






