kshitijthakkar commited on
Commit
0736037
·
verified ·
1 Parent(s): 911a4f6

v2: add old->real tool mapping audit

Browse files
Files changed (1) hide show
  1. REMAP_AUDIT.md +48 -0
REMAP_AUDIT.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Old mock surface -> real Swiggy MCP surface
2
+
3
+ Generated 2026-07-26 by `remap/remap.py` from `evals/surface/` (35 tools) and the pristine dataset snapshot in `evals/_hf_snapshot/`.
4
+
5
+ ## Mapped
6
+
7
+ | Dataset | Old tool | Real server | Real tool | Rows |
8
+ |---|---|---|---|---|
9
+ | `food-delivery-evals` | `search_restaurants` | food | `search_restaurants` | 26 |
10
+ | `food-delivery-evals` | `view_menu` | food | `get_restaurant_menu` | 19 |
11
+ | `food-delivery-evals` | `place_order` | food | `place_food_order` | 20 |
12
+ | `food-delivery-evals` | `track_delivery` | food | `track_food_order` | 13 |
13
+ | `food-delivery-evals` | `apply_promo` | food | `apply_food_coupon` | 13 |
14
+ | `instamart-evals` | `search_grocery` | instamart | `search_products` | 29 |
15
+ | `instamart-evals` | `view_product` | instamart | `search_products` | 17 |
16
+ | `instamart-evals` | `add_to_cart` | instamart | `update_cart` | 12 |
17
+ | `instamart-evals` | `checkout_cart` | instamart | `checkout` | 10 |
18
+ | `instamart-evals` | `track_grocery_order` | instamart | `track_order` | 14 |
19
+ | `dineout-evals` | `search_venues` | dineout | `search_restaurants_dineout` | 37 |
20
+ | `dineout-evals` | `view_venue_details` | dineout | `get_restaurant_details` | 15 |
21
+ | `dineout-evals` | `check_availability` | dineout | `get_available_slots` | 14 |
22
+ | `dineout-evals` | `book_table` | dineout | `book_table` | 15 |
23
+
24
+ ## Dropped -- no real tool can carry these
25
+
26
+ | Dataset | Old tool | Rows | Nearest tool considered | Why not |
27
+ |---|---|---|---|---|
28
+ | `food-delivery-evals` | `rate_restaurant` | 10 | `get_food_order_details (read-only; cannot record a rating)` | No rating or review write API exists on any of the three servers. The real Food surface is discovery, cart, order, track and support only; nothing accepts a star rating or review text. |
29
+ | `food-delivery-evals` | `contact_driver` | 10 | `track_food_order (returns status, exposes no contact channel)` | No driver-contact channel exists on any server. track_food_order returns delivery progress, but the published schema exposes no phone number, message endpoint or delivery-partner identifier to contact. |
30
+ | `instamart-evals` | `apply_grocery_promo` | 18 | `food.apply_food_coupon (wrong server; Food carts only)` | Instamart's 13-tool surface has no coupon or promo tool at all. Coupons exist only on the Food server (apply_food_coupon / fetch_food_coupons). Re-pointing grocery promo tasks at the Food coupon tool would both cross servers and assert Instamart coupon support that Swiggy does not publish. |
31
+ | `dineout-evals` | `cancel_booking` | 19 | `get_booking_status (read-only; cannot cancel)` | No cancellation, refund or replacement write API exists on any server. Swiggy does publish an explicit do-not-call-a-tool instruction for cancellation -- but only for Food and Instamart ORDERS (place_food_order and checkout agent_guidance). It publishes nothing about cancelling a Dineout BOOKING, so re-targeting these 19 rows as BLOCKED_NO_TOOL would extend that instruction beyond its stated scope. The documented no-tool cancellation behaviour is tested instead in the model-selection suite, on the two servers where the text actually exists. |
32
+
33
+ ## Totals
34
+
35
+ | Dataset | Original | Kept | Dropped |
36
+ |---|---|---|---|
37
+ | `food-delivery-evals` | 111 | 91 | 20 |
38
+ | `instamart-evals` | 100 | 82 | 18 |
39
+ | `dineout-evals` | 100 | 81 | 19 |
40
+ | **total** | **311** | **254** | **57** |
41
+
42
+ ## Name collisions on the real surface
43
+
44
+ SmolTrace scores `expected_tool` by exact tool-NAME membership, so these
45
+ cannot be graded by name alone unless the agent mounts them server-prefixed:
46
+
47
+ - `get_addresses` -- published on food, instamart
48
+ - `report_error` -- published on food, instamart, dineout