conversation_id
stringlengths
40
40
vertical
stringclasses
1 value
scenario
stringclasses
32 values
instructions
stringclasses
28 values
utterances
listlengths
2
8
dlg-35143226-ef0c-46a3-aa04-a7ca6c879799
Coffee
Auto template 28 Order two same drinks differing by milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk1 milk Choose a type of milk from the list above}} {{ENTER milk2 milk Choose a SECOND type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering *TWO* of these: var_drink. HOWEVER, for ONE of them you want var_milk1 milk while for the OTHER you want var_milk2 milk. How would YOU say this order? *Say it out loud first*.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk1 milk OR var_milk2 milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3095\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk OR Almond milk\", \"menu_item_id\":\"mocha-3095\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-3095\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"53711\",\"order_item_id\":\"58956\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"53711\",\"menu_item_id\": \"mocha-3095\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"53711\",\"order_item_id\":\"87173\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"53711\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"53711\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"58956\", \"menu_item_id\": \"mocha-3095\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"87173\", \"menu_item_id\": \"mocha-3095\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like two mochas, please. One with Oat milk and the other with Almond milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok got it. Please check the screen and verify your order." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"53711\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "That's all correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, you can pick up your order from the coffee bar." } ]
dlg-a98973ff-3b69-448e-912f-64780a2b060d
Coffee
Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *Here or To go* {{ENTER delivery delivery Enter either Here OR To go}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_addons request {"query": "var_delivery", "scope": "order"} response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]} call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] } response update_order response {"order_id": "var_order_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you. hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-6839\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Double OR Almond Milk\", \"menu_item_id\":\"mocha-6839\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-6839\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"83115\",\"order_item_id\":\"16467\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"to go\", \"scope\": \"order\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"To go\", \"Delivery\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"83115\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"to go\"}] }" }, { "context": "api_response_4", "name": "api_response", "value": "update_order" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"83115\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"83115\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"83115\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Two of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"to go\"}], \"menu_items\": [{\"order_item_id\": \"16467\", \"menu_item_id\": \"mocha-6839\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a double mocha with almond milk to go?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"83115\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yeah, that's great." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, that'll be ready on the bar in just a few!" } ]
dlg-a1880045-0c8b-412e-9751-841e49a56a95
Coffee
Auto template 4 order a coffee drink mod milk and sweetener
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-1120\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Almond milk OR Caramel Sauce\", \"menu_item_id\": \"latte-1120\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"caramel-sauce-1120\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-1120\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-1120\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"33030\",\"order_item_id\":\"36696\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"33030\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"33030\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"36696\", \"menu_item_id\": \"latte-1120\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"caramel-sauce-1120\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I please have latte with almond milk and caramel sauce" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Could you please respond your order, so I can make sure I have it correct." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"33030\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Sure, Can I please have latte with almond milk and caramel sauce" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, great! Your order will be ready at the coffee bar shortly." } ]
dlg-3f29aab3-da9d-4385-9531-74df1040407a
Coffee
Auto template 27 Order two same drinks no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Customer orders *TWO* of these: var_drink.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-9621\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-9621\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"16359\",\"order_item_id\":\"32838\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"16359\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"16359\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"eight of diamonds\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"32838\", \"menu_item_id\": \"cappuccino-9621\", \"menu_item_name\": \"Cappuccino\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order two Cappuccino's please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay make sure this is correct please." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"16359\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes that's right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay check with the bar in five minutes for your order please." } ]
dlg-caf6bdf1-9b79-43b9-a5d9-9e67f333037a
Coffee
Auto template 11 order a coffee drink no results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *DRINK NOT SHOWN ABOVE* {{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}} *CATEGORY* {{ENTER category category Enter one of these: coffee OR coffee drinks.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[]} hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL) hint user (Asks the coffee bar attendant to show the menu to them again) call show_menu request {} response show_menu response {"success":true} hint assistant (Here you go. Let me know if I can get you anything.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order a Latte with almond milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Our menu does not have anything that matches that right now. Would you like something else?" }, { "annotations": [ { "context": "api_call_1", "name": "api_call", "value": "show_menu" }, { "context": "api_call_1", "name": "request", "value": "{}" }, { "context": "api_response_1", "name": "api_response", "value": "show_menu" }, { "context": "api_response_1", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Can you show me the menu again?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Here it is. Let me know if you need anything else." } ]
dlg-b08b982f-8f26-4e03-b853-715412415cad
Coffee
Auto template 18 order a coffee drink specify espresso shots
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]} force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar. hint user (confirms it correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-2945\",\"name\":\"Latte\"}, {\"menu_item_id\":\"Mocha-024\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"single\", \"menu_item_id\":\"latte-2945\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-2945\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"28234\",\"order_item_id\":\"84742\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"28234\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"28234\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"84742\", \"menu_item_id\": \"latte-2945\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. Can I get a single shot Latte please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"28234\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "It looks right" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok. I'll have it at the coffee bar in a few moments" } ]
dlg-56121f9b-2afa-4720-a52d-08140f97a28e
Coffee
Auto template 13 completely off topic
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant but, instead of ordering a drink, you say something not related to coffee or the menu from the list below: *TOPICS* {{LIST relationship,weather,sports,hollywood,personal hygiene,geography,automobile,music,TV,movie,food,fashion,trivia,technology}} {{ENTER question question Enter one of the choices listed above.}} {{CONVERSATION hint user (Asks the coffee bar attendant a var_question related question) hint assistant (Explains they don't have an answer for that--USE YOUR OWN words--but that they can help the customer order coffee or tea drinks.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [], "index": 0, "segments": [], "speaker": "user", "text": "Hey, do you know which phone I should get?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I'm not sure about that, but I can help order coffee or tea drinks." } ]
dlg-6e3e507b-84ce-4339-9c9f-68d24474ffec
Coffee
Auto template 31 Order two same drinks differing by caffeine
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Macchiato\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-8989\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf\", \"menu_item_id\":\"macchiato-8989\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"macchiato-8989\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"54427\",\"order_item_id\":\"99151\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"54427\",\"order_id\": \"54427\", \"menu_item_id\": \"macchiato-8989\",\"quantity\": \"1\"}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"54427\",\"order_item_id\":\"89652\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"54427\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"54427\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"99151\", \"menu_item_id\": \"macchiato-8989\", \"menu_item_name\": \"Macchiato\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"89652\", \"menu_item_id\": \"macchiato-8989\", \"menu_item_name\": \"Macchiato\", \"quantity\": \"1\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like two Macchiatos, please, and I'd like one of those to be decaf." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, I can do that. Could you confirm the order before I send it to be made?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"54427\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "That's it!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, the coffee bar will have them in a few minutes." } ]
dlg-ed0bc5e0-3d6c-45a7-8083-5c99d047def3
Coffee
Auto template 16 do you have x
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question: *CATEGORY* {{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}} {{RAND item_id2 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.) call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]} hint assistant (Answers Yes, we have var_drink1 and var_drink2) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"sweeteners\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"77014\",\"name\":\"Splenda\"}, {\"menu_item_id\":\"86568\",\"name\":\"Equal\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Are there any sweeteners available?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes there are. We have Splenda and Equal." } ]
dlg-0928c65f-884e-493a-8e1e-7dd33dc681bc
Coffee
Auto template 20 order a coffee drink TO GO
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-3432\",\"name\":\"Latte \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-3432\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"38639\",\"order_item_id\":\"82830\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_addons" }, { "context": "api_call_2", "name": "request", "value": "{\"query\": \"to go\", \"scope\": \"order\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_addons" }, { "context": "api_response_2", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"Togo\", \"Delivery\"]}]}" }, { "context": "api_call_3", "name": "api_call", "value": "update_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"38639\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}] }" }, { "context": "api_response_3", "name": "api_response", "value": "update_order" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"38639\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"38639\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"38639\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"rummy\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"82830\", \"menu_item_id\": \"latte-3432\", \"menu_item_name\": \"Latte \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a latte to go, please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"38639\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Everything is fine here" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, your order is going to be out soon" } ]
dlg-79d32be8-a6d0-410e-955d-adaac63ed667
Coffee
Auto template 4 order a coffee drink mod milk and sweetener
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-3455\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk OR Vanilla Sweetener\", \"menu_item_id\": \"latte-3455\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-876\", \"name\": \"Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-3455\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-876\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"33835\",\"order_item_id\":\"15841\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"33835\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"33835\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"15841\", \"menu_item_id\": \"latte-3455\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-876\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, could I get an Oat Latte with Vanilla, please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure! Please double check your order and I'll send it to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"33835\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "That looks good!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thanks! We'll get that ready in a few minutes." } ]
dlg-c79fd760-9fe5-42fa-b54d-8d1fcfbedbb8
Coffee
Auto template 14b what kind of menu_items do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST black tea,herbal tea,matcha drinks,chai drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id2 id 10000 99999}} {{ENTER drink3 drink Enter one last name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id3 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}, {"menu_item_id":"var_item_id3","name":"var_drink3"}]} hint assistant (Explains they have var_drink1, var_drink2, and var_drink3.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" }, { "context": "api_call_1", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"herbal tea\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_1", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"81678\",\"name\":\"mint tea\"}, {\"menu_item_id\":\"73972\",\"name\":\"rose tea\"}, {\"menu_item_id\":\"16867\",\"name\":\"lavender tea \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. Can you please tell me what kinds of herbal you offer here? Thanks." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure thing. We carry mint tea, rose tea and lavender tea." } ]
dlg-16f386a3-10e6-4423-9350-5855d9885d2b
Coffee
Auto template 11 order a coffee drink no results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *DRINK NOT SHOWN ABOVE* {{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}} *CATEGORY* {{ENTER category category Enter one of these: coffee OR coffee drinks.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[]} hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL) hint user (Asks the coffee bar attendant to show the menu to them again) call show_menu request {} response show_menu response {"success":true} hint assistant (Here you go. Let me know if I can get you anything.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, I'd like to get a latte, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I don't have a menu item that matches the name latte. Is there something else I can interest you in?" } ]
dlg-f89a8c9a-626c-4490-8e78-2a888fc07fbd
Coffee
Auto template 5 Order a coffee drink mod decaf or iced, milk, sweetener FIX
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *FIRST MOD CHOICE -- BE CAREFUL HERE!!!* {{ENTER attri_id id Enter ONE of these two exactly as written: caffeine OR hot-or-iced.}} {{ENTER main_option option If you chose "caffeine" above write Decaf here (no quotes). If you chose "hot-or-iced" above, write "Iced" here (no quotes): }} {{ENTER other_option option If you chose caffeine above, write Caff here (no quotes). If you chose hot-or-iced, write Hot here (no quotes): }} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *SWEETENERS* {{LIST Vanilla,Sugar-Free Vanilla,Hazelnut,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink that has three modifications: (a) var_main_option (b) var_milk milk and (c) var_sweet (in whatever order seems right). Do NOT use the word "sweetener" or "sauce". How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_main_option OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "var_attri_id", "attribute_name": "var_attri_id", "options":["var_main_option","var_other_option"]},{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}]} force assistant Please check the details of your order. Are you ready to send it to the coffee bar? hint user (confirms) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-3089\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR 2% milk OR Chocolate Sauce\", \"menu_item_id\":\"cappuccino-3089\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"caffeine\", \"options\":[\"Decaf\",\"Caff\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"chocolate-sauce-872\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-3089\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-872\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"47262\",\"order_item_id\":\"93645\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"47262\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"47262\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"93645\", \"menu_item_id\": \"cappuccino-3089\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-872\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like a Decaf Cappuccino with 2% milk and some Chocolate please. Thanks" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please check the details of your order. Are you ready to send it to the coffee bar?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"47262\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes I am." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great. I will get your order ready at the coffee bar shortly." } ]
dlg-ef005977-fc11-4549-8139-f6b824a89347
Coffee
Auto template 32 Order a coffee drink iced, choose milk, add sweetener
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* ,*Mocha*}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink name from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *MILK CHOICES - Specify a milk from this list* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *SWEETENERS* {{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut, Sweetener,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink that has THREE modifications: (a) iced (b) var_milk milk and (c) var_sweet (in whatever order seems right). How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "iced OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "hot-or-iced", "attribute_name": "Hot or Iced", "options":["Hot","Iced"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "hot-or-iced", "option":"Iced"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}], "attributes": [{"attribute_id": "hot-or-iced", "option":"Iced"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant Is the order displayed correct? hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} force assistant OK. Your order will be ready shortly. Have a Brew-tiful day! }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-4546\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"iced OR oat milk OR chocolate sauce\", \"menu_item_id\":\"latte-4546\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"attribute_name\": \"Hot or Iced\", \"options\":[\"Hot\",\"Iced\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"chocolate-sauce-567\", \"name\": \"chocolate sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-4546\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-567\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"37065\",\"order_item_id\":\"17717\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"37065\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"37065\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"17717\", \"menu_item_id\": \"latte-4546\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"chocolate-sauce-567\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like an iced latte with oat milk and chocolate sauce." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is the order displayed correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"37065\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. Your order will be ready shortly. Have a Brew-tiful day!" } ]
dlg-0c32ecd6-57b1-4567-9d19-165a9455a45d
Coffee
Auto template 4b order a coffee drink mod decaf and sweetener
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *SWEETENERS* {{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut Sweetener,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with these two modifications: (a) decaf and (b) has var_sweet. Do NOT use the word "sweetener" or "sauce" (unless you're sure you'd say it normally). How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "Decaf OR var_sweet", "menu_item_id": "var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf","Caff"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}], "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (confirms details are right) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly -- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-3788 \",\"name\":\"Cortado \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR Chocolate Sauce\", \"menu_item_id\": \"cortado-3788 \"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\",\"Caff\"]}], \"addons\": [{\"addon_id\": \"chocolate-sauce-772\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-3788 \",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-772\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"66377\",\"order_item_id\":\"33151\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"66377\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"66377\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"33151\", \"menu_item_id\": \"cortado-3788 \", \"menu_item_name\": \"Cortado \", \"addons\": [{\"addon_id\": \"chocolate-sauce-772\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "can you make me a decaf Cortado with Chocolate" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "can you please confirm the order displayed is correct before we make it" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"66377\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "yup, that's correct" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "great, this order will be ready very soon for you" } ]
dlg-dac34819-7d0c-4091-80fb-678c229d1659
Coffee
Auto template 16 do you have x
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question: *CATEGORY* {{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}} {{RAND item_id2 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.) call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]} hint assistant (Answers Yes, we have var_drink1 and var_drink2) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"herbal tea\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"62495\",\"name\":\"Lavender\"}, {\"menu_item_id\":\"74812\",\"name\":\"Jasmine\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Do you have Herbals in tea form?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes we have Lavender and Jasmine." } ]
dlg-f916d3e5-0d13-4d4d-8b0b-61904674efbd
Coffee
Auto template 12 order a coffee drink wrong results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} {{ENTER drink1 drink Enter one of the two drinks listed above.}} {{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} {{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}} {{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}} *CATEGORY* {{ENTER category category Enter one of the choices: tea OR tea drinks}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]} hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.) hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-5802\",\"name\":\"Cortado\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to have a Mocha, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I don't see Mocha on the menu. Do you mean Cortado?" }, { "annotations": [ { "context": "api_call_1", "name": "api_call", "value": "show_menu" }, { "context": "api_response_1", "name": "api_response", "value": "show_menu" }, { "context": "api_response_1", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No, can you tell me what kinds of tea you have?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "We offer several types of tea: black, herbal, and oolong. Might I suggest viewing our menu that is displayed for more details?" } ]
dlg-ed898fbd-aec4-4195-a6bb-14ac74a4a72c
Coffee
Auto template 20 order a coffee drink TO GO
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"\"cortado-3621\"\",\"name\":\"Cortado \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"\"cortado-3621\"\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"79340\",\"order_item_id\":\"88151\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_addons" }, { "context": "api_call_2", "name": "request", "value": "{\"query\": \"to go\", \"scope\": \"order\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_addons" }, { "context": "api_response_2", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"Togo\", \"Delivery\"]}]}" }, { "context": "api_call_3", "name": "api_call", "value": "update_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"79340\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}] }" }, { "context": "api_response_3", "name": "api_response", "value": "update_order" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"79340\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"79340\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"79340\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"88151\", \"menu_item_id\": \"\"cortado-3621\"\", \"menu_item_name\": \"Cortado \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. I'll have one Cortado, that's one Cortado to carry out." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"79340\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Lets see. Yep, that's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, thanks. You can pick it up at the coffee bar. Its should be ready in a few minutes." } ]
dlg-2afea206-81a2-4fc1-9dd9-43092c9a680e
Coffee
Auto template 7 order a DECAF coffee drink no other mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-6901 \",\"name\":\"Cortado \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"cortado-6901 \"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-6901 \",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"35015\",\"order_item_id\":\"22469\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"35015\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"35015\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"22469\", \"menu_item_id\": \"cortado-6901 \", \"menu_item_name\": \"Cortado \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like a decaf Cortado please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay, just confirm your order and I'll send it to the bar immediately. Is this the right order?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"35015\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, that's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Alright, your order is placed and will be ready soon at the coffee bar" } ]
dlg-b147afe6-cec6-463d-8105-d7e4f650cd9b
Coffee
Auto template 22 notes based on initial order utterance - fixed
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER* Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. ) {{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made). hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-2256\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Non-Fat Milk OR Extra hot\", \"menu_item_id\":\"cortado-2256\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-2256\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"notes\": \"Extra hot\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"81952\",\"order_item_id\":\"53918\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"81952\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"81952\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Ace of Clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"53918\", \"menu_item_id\": \"cortado-2256\", \"menu_item_name\": \"Cortado\", \"notes\": \"Extra hot\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to get a Cortado with Non-Fat milk, extra hot please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "So can you confirm this Cortado order please?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"81952\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yeah that's fine thanks." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thank you, your order will be ready for pick up down at the coffee bar in a minute or so." } ]
dlg-cdd91b81-ac41-477c-b8f4-8ff3a6716749
Coffee
Auto template 29 Order two drinks differing by name and milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE TWO DRINKS* {{ENTER drink1 drink Enter a drink from the list above.}} {{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}} {{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk1 milk Choose a type of milk from the list above}} {{ENTER milk2 milk Choose a SECOND type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]} call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call get_menu_items request {"query": "var_drink2"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]} call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2004\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat\", \"menu_item_id\":\"mocha-2004\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-2004\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"23424\",\"order_item_id\":\"69405\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"23424\",\"menu_item_id\": \"latte-3492\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"23424\",\"order_item_id\":\"47999\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"23424\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"23424\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"69405\", \"menu_item_id\": \"mocha-2004\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"47999\", \"menu_item_id\": \"latte-3492\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, can I please get a Mocha made with Oat milk, and a Latte with Almond milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Does everything look correct on the display?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"23424\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, thank you. Your order will be over at the coffee bar soon." } ]
dlg-849d173d-5288-4d6d-91ae-a180c3176ade
Coffee
Auto template 8 order hot tea no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *HOT TEAS on the COFFEE BAR MENU* {{LIST *Peppermint Rose* (herbal),*Tangerine Rooibos* (herbal), *Cloud and Mist* (green tea), *Wild Strawberry* (green tea), *Jin Xuan* (oolong tea), *Three Cultivar Red* (black tea), *Lavender Earl Grey* (black tea), *English Breakfast* (black tea)}} *CHOOSE YOUR TEA* {{ENTER drink drink Enter a hot tea from the list above. Say the phrase you think you'd actually use if you were in a coffee/tea bar.}} {{ENTER menu_item_id drink Now write the tea name that corresponds to your choice above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, if you say "English Breakfast tea" you would write "english-breakfast-0371". NO SPACES. NO QUOTES, NOT including "tea"}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink tea. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Jin Xuan\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"jin-xuan-3253\",\"name\":\"Jin Xuan\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"jin-xuan-3253\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"19666\",\"order_item_id\":\"50801\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"19666\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"19666\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"50801\", \"menu_item_id\": \"jin-xuan-3253\", \"menu_item_name\": \"Jin Xuan\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I order a Jin Xuan please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Of course. Could you please confirm if we have your order correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"19666\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Alright, we'll have your order ready to go at the coffee bar soon." } ]
dlg-5dafe715-6791-4f89-b3be-8d058953cfbb
Coffee
Auto template 22 notes based on initial order utterance - fixed
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER* Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. ) {{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made). hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2323\",\"name\":\"mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% Milk OR extra cold\", \"menu_item_id\":\"mocha-2323\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-2323\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"notes\": \"extra cold\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"11090\",\"order_item_id\":\"70455\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"11090\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"11090\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"70455\", \"menu_item_id\": \"mocha-2323\", \"menu_item_name\": \"mocha\", \"notes\": \"extra cold\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "i want a 2% mocha with 2% milk and extra cold" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "great does this look correct" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"11090\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "yes it does" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "great that will be ready soon" } ]
dlg-4b235169-bcb7-452a-87dc-0c153ea0024e
Coffee
Auto template 13 completely off topic
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant but, instead of ordering a drink, you say something not related to coffee or the menu from the list below: *TOPICS* {{LIST relationship,weather,sports,hollywood,personal hygiene,geography,automobile,music,TV,movie,food,fashion,trivia,technology}} {{ENTER question question Enter one of the choices listed above.}} {{CONVERSATION hint user (Asks the coffee bar attendant a var_question related question) hint assistant (Explains they don't have an answer for that--USE YOUR OWN words--but that they can help the customer order coffee or tea drinks.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [], "index": 0, "segments": [], "speaker": "user", "text": "Did you watch the season of The Simpsons?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I'm sorry, but I cannot answer that. But I can help you order any coffee or tea." } ]
dlg-c6afa371-b5e8-47c3-80f1-f047a0c4f9fb
Coffee
Auto template 1 order a coffee drink no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-5555\",\"name\":\"cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-5555\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"42420\",\"order_item_id\":\"39834\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"42420\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"42420\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"four of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"39834\", \"menu_item_id\": \"cappuccino-5555\", \"menu_item_name\": \"cappuccino\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a cappuccino please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please confirm the details of the order on the screen." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"42420\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, your order will be ready soon at the coffee bar for pick up." } ]
dlg-23541090-ade8-45f0-b632-d9798e16726b
Coffee
Auto template 23 order a coffee drink then ask for sweeteners
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *CHOOSE A DRINK* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *Choose a term* {{ENTER sweet_term word Enter the word "sweetener" or "syrup":}} *Choose a SWEETENER* {{LIST Vanilla,Sugar Free Vanilla,Hazelnut, Caramel Sauce}} {{ENTER sweet_name name sweetener names (the one without a number) as it is written from the list above:}} *SWEETENER ID* {{LIST vanilla-sweetener-011,sugar-free-vanilla-sweetener-012,hazelnut-sweetener-013,caramel-sauce-15}} {{ENTER sweet_id id Enter the sweetener ID that matches your sweetener name exactly as it is written from the list above:}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink but don't mention any modifiers.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (asks what kind of var_sweet_term they have) call get_addons request {"query": "var_sweet_term", "menu_item_id":"var_menu_item_id"} response get_addons response {"addons":[{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["ADD"]},{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["NO","ADD"]},{"addon_id":"hazelnut-sweetener-013","name":"Hazelnut Sweetener","options":["NO","ADD"]},{"addon_id":"vanilla-sweetener-011","name":"Vanilla sweetener","options":["NO","ADD"]},{"addon_id":"chocolate-sauce-014","name":"Chocolate Sauce","options":["NO","ADD"]},{"addon_id":"caramel-sauce-015","name":"Caramel Sauce","options":["NO","ADD"]},{"addon_id":"honey-016","name":"Honey","options":["NO","ADD"]},{"addon_id":"sugar-017","name":"Sugar ","options":["NO","ADD"]}]} force assistant We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar. hint user (Say you want to add the var_sweet_name.) call update_order_item request {"order_item_id": "var_order_item_id","addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]} response update_order_item response {"order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}]} hint assistant (the worker asks the customer again to confirm the order is correct before sending it to the coffee bar). hint user (confirms it's correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar -- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-9748\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-9748\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"72374\",\"order_item_id\":\"85161\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"72374\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"72374\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"85161\", \"menu_item_id\": \"latte-9748\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like to order a latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure thing. Please check to see that your order looks correct." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"syrup\", \"menu_item_id\":\"latte-9748\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"addons\":[{\"addon_id\":\"sf-vanilla-sweetener-012\",\"name\":\"Sugar Free Vanilla Sweetener\",\"options\":[\"ADD\"]},{\"addon_id\":\"sf-vanilla-sweetener-012\",\"name\":\"Sugar Free Vanilla Sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"hazelnut-sweetener-013\",\"name\":\"Hazelnut Sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"vanilla-sweetener-011\",\"name\":\"Vanilla sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"chocolate-sauce-014\",\"name\":\"Chocolate Sauce\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"caramel-sauce-015\",\"name\":\"Caramel Sauce\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"honey-016\",\"name\":\"Honey\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"sugar-017\",\"name\":\"Sugar \",\"options\":[\"NO\",\"ADD\"]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Do you have any syrups?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"85161\",\"addons\": [{\"addon_id\": \"vanilla-sweetener-011\", \"option\":\"ADD\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"85161\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"72374\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"72374\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"85161\", \"menu_item_id\": \"latte-9748\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-011\", \"option\":\"ADD\"}]}]}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Can I add vanilla syrup to my latte?" }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Of course! Please check that the order is updated correctly." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"72374\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 6, "segments": [], "speaker": "user", "text": "Yes, that looks right." }, { "annotations": [], "index": 7, "segments": [], "speaker": "assistant", "text": "Okay, great. Your drink will be ready for you in a few minutes." } ]
dlg-d178f60e-5459-4192-8926-ae8eee9a70a3
Coffee
Auto template 4 order a coffee drink mod milk and sweetener
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-3977\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Non-Fat milk OR Vanilla Sweetener\", \"menu_item_id\": \"cappuccino-3977\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-392\", \"name\": \"Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-3977\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-392\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"91786\",\"order_item_id\":\"51893\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"91786\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"91786\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"51893\", \"menu_item_id\": \"cappuccino-3977\", \"menu_item_name\": \"Cappuccino\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-392\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Please make me a cappuccino with non-fat milk and vanilla flavoring." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Great. Here's the order on the screen. Does it look okay to you?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"91786\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it does." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, we'll get that sent to the coffee bar for you and it'll be ready soon." } ]
dlg-5603c2fb-5225-43b6-90e3-84d64e4a0134
Coffee
Auto template 10 order a coffee drink with first name
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-4231\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-4231\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"34537\",\"order_item_id\":\"63132\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"34537\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"34537\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"63132\", \"menu_item_id\": \"cappuccino-4231\", \"menu_item_name\": \"Cappuccino\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I would like a nice hot Cappuccino. My name is Bob." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure Bob, does your order look correct on this screen?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"cappuccino-4231\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"63132\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"63132\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"34537\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"34537\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"63132\", \"menu_item_id\": \"cappuccino-4231\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Actually no, I meant to get it decaffeinated." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "No problem, how about now?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"34537\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Ah perfect, thank you." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "No problem, your drink will be ready at the coffee bar shortly." } ]
dlg-618a4afb-04a0-40f3-8b54-fe6459f3935a
Coffee
Auto template 2 order a coffee drink specify milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Macchiato\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-0423\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% milk\", \"menu_item_id\":\"macchiato-0423\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"macchiato-0423\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"19273\",\"order_item_id\":\"38757\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"19273\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"19273\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Queen of Hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"38757\", \"menu_item_id\": \"macchiato-0423\", \"menu_item_name\": \"Macchiato\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, may I please have a Macchiato, and make that 2% milk please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Got it, now may I get a confirmation that what I have here is your correct drink?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"19273\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thank you very much. If you would go to our coffee bar, it will be soon served to you there." } ]
dlg-6fb41c8a-c39f-41c8-b98a-932194a4be64
Coffee
Auto template 18 order a coffee drink specify espresso shots
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]} force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar. hint user (confirms it correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Espresso\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"espresso-7531\",\"name\":\"Espresso\"}, {\"menu_item_id\":\"Mocha-024\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Double\", \"menu_item_id\":\"espresso-7531\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"espresso-7531\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"55815\",\"order_item_id\":\"43796\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"55815\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"55815\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Seven of clubs \"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"43796\", \"menu_item_id\": \"espresso-7531\", \"menu_item_name\": \"Espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. Can I have a Double Espresso, please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"55815\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes. That looks good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Prefect. Thank you. We will have that out for you shortly. You can pick it up at the coffee bar." } ]
dlg-76808878-ff51-4f23-8b0b-ab04221a469f
Coffee
Auto template 29 Order two drinks differing by name and milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE TWO DRINKS* {{ENTER drink1 drink Enter a drink from the list above.}} {{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}} {{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk1 milk Choose a type of milk from the list above}} {{ENTER milk2 milk Choose a SECOND type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]} call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call get_menu_items request {"query": "var_drink2"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]} call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Macchiato\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-8823\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Almond\", \"menu_item_id\":\"macchiato-8823\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"macchiato-8823\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"85081\",\"order_item_id\":\"87155\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"85081\",\"menu_item_id\": \"cortado-4487\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"85081\",\"order_item_id\":\"22770\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"85081\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"85081\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"87155\", \"menu_item_id\": \"macchiato-8823\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"22770\", \"menu_item_id\": \"cortado-4487\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like to order a Macchiato, but with Almond milk, and a Cortado, but with the Lactose-Free 2%." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you see if what I have here is right?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"85081\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yep, it's right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, your drinks will soon be ready at the bar." } ]
dlg-823d09d6-7daf-4c47-b24d-b170660ef59d
Coffee
Auto template 11 order a coffee drink no results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *DRINK NOT SHOWN ABOVE* {{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}} *CATEGORY* {{ENTER category category Enter one of these: coffee OR coffee drinks.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[]} hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL) hint user (Asks the coffee bar attendant to show the menu to them again) call show_menu request {} response show_menu response {"success":true} hint assistant (Here you go. Let me know if I can get you anything.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Espresso\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I think I'd like an Espresso please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We don't have Espresso on the menu right now." } ]
dlg-7989a269-0655-4994-97f0-6d66f22e2dba
Coffee
Auto template 5 Order a coffee drink mod decaf or iced, milk, sweetener FIX
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *FIRST MOD CHOICE -- BE CAREFUL HERE!!!* {{ENTER attri_id id Enter ONE of these two exactly as written: caffeine OR hot-or-iced.}} {{ENTER main_option option If you chose "caffeine" above write Decaf here (no quotes). If you chose "hot-or-iced" above, write "Iced" here (no quotes): }} {{ENTER other_option option If you chose caffeine above, write Caff here (no quotes). If you chose hot-or-iced, write Hot here (no quotes): }} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *SWEETENERS* {{LIST Vanilla,Sugar-Free Vanilla,Hazelnut,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink that has three modifications: (a) var_main_option (b) var_milk milk and (c) var_sweet (in whatever order seems right). Do NOT use the word "sweetener" or "sauce". How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_main_option OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "var_attri_id", "attribute_name": "var_attri_id", "options":["var_main_option","var_other_option"]},{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}]} force assistant Please check the details of your order. Are you ready to send it to the coffee bar? hint user (confirms) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-5279\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR 2% milk OR Hazelnut Sweetener\", \"menu_item_id\":\"cappuccino-5279\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"caffeine\", \"options\":[\"Decaf\",\"Caff\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-347\", \"name\": \"Hazelnut Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-5279\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-347\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"95640\",\"order_item_id\":\"94737\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"95640\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"95640\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ace of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"94737\", \"menu_item_id\": \"cappuccino-5279\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-347\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a Hazelnut Cappuccino with 2% milk and could you make that a Decaf please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please check the details of your order. Are you ready to send it to the coffee bar?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"95640\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, that is right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, thank you. You can pick it up at the coffee bar shortly." } ]
dlg-558e32c5-2c96-4a5b-8816-89f567244a3f
Coffee
Auto template 10 order a coffee drink with first name
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-9146\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-9146\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"60887\",\"order_item_id\":\"36714\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"60887\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"60887\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"36714\", \"menu_item_id\": \"mocha-9146\", \"menu_item_name\": \"Mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'm James, and I want a mocha." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this the right drink you ordered?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-9146\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"36714\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"36714\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"60887\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"60887\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"36714\", \"menu_item_id\": \"mocha-9146\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No. I want it in decaf." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "So that's one decaf mocha for James?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"60887\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 4, "segments": [], "speaker": "user", "text": "That's right." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Okay, that's one decaf mocha for James. Your order will be fulfilled shortly at the coffee bar." } ]
dlg-6f4581e9-f697-4fda-b531-2ec9e4091cbd
Coffee
Auto template 30 Notes after no relevant addons found
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *SPECIAL* {{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3888\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"shot of milk\", \"menu_item_id\":\"mocha-3888\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-3888\",\"quantity\": \"1\", \"notes\": \"shot of milk\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"50907\",\"order_item_id\":\"34668\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"50907\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"50907\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"one of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"34668\", \"menu_item_id\": \"mocha-3888\", \"menu_item_name\": \"Mocha\", \"notes\": \"shot of milk\"}]}" } ], "index": 0, "segments": [ { "annotations": [ { "name": "request" } ], "annotator_id": "GENERATED", "end_index": "42", "start_index": "30", "text": "shot of milk" } ], "speaker": "user", "text": "Can I get a Mocha with just a shot of milk in it?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay. Is the order on the screen what you want?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"50907\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it is." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay. I'll get that ready for you over at the coffee bar." } ]
dlg-efad3941-2ac9-4d53-bd62-8f241356ac5e
Coffee
Auto template 14a what kind of add_ons do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST milk,sweeteners}} {{ENTER category category Enter one of the choices exactly as written above.}} {{CONVERSATION hint user (starts with a polite hello) hint assistant (answers politely and then asks what they can get for the customer) hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} call get_addons request {"query": "var_category"} }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [], "index": 0, "segments": [], "speaker": "user", "text": "Hi there!" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Hi, what can I get for you today?" }, { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "I'm wondering what kinds of milk you offer." } ]
dlg-89c1b223-23b5-42bb-8547-997886b2bcf9
Coffee
Auto template 27 Order two same drinks no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Customer orders *TWO* of these: var_drink.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-7255\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-7255\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"21857\",\"order_item_id\":\"52390\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"21857\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"21857\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of spades\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"52390\", \"menu_item_id\": \"latte-7255\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I want 2 lattes, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this correct for your order, sir? Look at the screen." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"21857\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK! We will get that ready for you at the coffee bar shortly." } ]
dlg-77bcebf0-1958-4efd-8e37-2c18ae89c27d
Coffee
Auto template 1 order a coffee drink no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-9861\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-9861\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"66189\",\"order_item_id\":\"63323\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"66189\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"66189\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"63323\", \"menu_item_id\": \"latte-9861\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a Latte please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay have a look is this order correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"66189\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it is." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay your order will be up at the coffee bar soon !" } ]
dlg-feb68baa-d21d-4647-b228-934ca3b78fd8
Coffee
Auto template 7 order a DECAF coffee drink no other mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2490\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-2490\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-2490\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"61985\",\"order_item_id\":\"40866\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"61985\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"61985\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Ace of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"40866\", \"menu_item_id\": \"mocha-2490\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order a decaffeinated mocha." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok. Is this right." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"61985\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok. Your order coming up shortly." } ]
dlg-cccb139f-0eaf-4cfb-99cb-ae8ad87f0e74
Coffee
Auto template 4 order a coffee drink mod milk and sweetener
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-459\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk OR Vanilla Sweetener\", \"menu_item_id\": \"cortado-459\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla sweetener-948\", \"name\": \"Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-459\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"vanilla sweetener-948\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"87424\",\"order_item_id\":\"67780\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"87424\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"87424\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"67780\", \"menu_item_id\": \"cortado-459\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"vanilla sweetener-948\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello I'd like a Cortado with Oat milk and Vanilla please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok is everything correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"87424\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes that's right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok we'll have your order out in just a moment." } ]
dlg-237320cc-b1df-4c54-b91b-d21095f334e1
Coffee
Auto template 14b what kind of menu_items do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST black tea,herbal tea,matcha drinks,chai drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id2 id 10000 99999}} {{ENTER drink3 drink Enter one last name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id3 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}, {"menu_item_id":"var_item_id3","name":"var_drink3"}]} hint assistant (Explains they have var_drink1, var_drink2, and var_drink3.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" }, { "context": "api_call_1", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"herbal tea\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_1", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"87141\",\"name\":\"herbal green tea\"}, {\"menu_item_id\":\"14230\",\"name\":\"herbal sleepytime tea\"}, {\"menu_item_id\":\"12278\",\"name\":\"herbal energizing tea\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi can you tell me what kinds of herbal tea you have?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure we have herbal green tea, herbal sleepytime tea, and herbal energizing tea." } ]
dlg-1d7718b5-4838-456b-823e-b8f249499886
Coffee
Auto template 9 other beverages no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *OTHER BEVERAGES on the COFFEE BAR MENU* {{LIST *Ginger Green Cold Steep Tea* (16 oz) (cold steeped tea + ice),*Matcha Latte* (12 oz) (matcha concentrate + milk + microfoam), *Chai Latte* (12 oz) (chai concentrate + milk + microfoam),Hot Chocolate (12 oz) (chocolate + milk + microfoam),Steamer (12 oz) (steamed milk + microfoam),Americano (10 oz) (espresso + hot water),Cold Brew (16 oz) (coffee concentrate + ice)}} *CHOOSE YOUR BEVERAGE* {{ENTER drink drink Enter one of the drinks from the list above. Say the phrase you think you'd actually use if you were ordering in a coffee/tea bar.}} {{ENTER menu_item_id drink Now write the tea name that corresponds to your choice above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, if you say "Hot Chocolate" you would write "hot-chocolate-0291" (use your own number). NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"}, {"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Americano\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"americano-1147\",\"name\":\"Americano\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"americano-1147\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"27243\",\"order_item_id\":\"69552\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"27243\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"27243\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of clubs\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"69552\", \"menu_item_id\": \"americano-1147\", \"menu_item_name\": \"Americano\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I want an Americano." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is your order correct on the display?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"27243\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay - your order is placed and you can pick up shortly at the coffee bar. Thanks!" } ]
dlg-b364b54b-00e0-4b54-b74b-ef8678242bda
Coffee
Auto template 22 notes based on initial order utterance - fixed
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER* Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. ) {{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made). hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-2943\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Whole Milk OR Blonde\", \"menu_item_id\":\"cappuccino-2943\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-2943\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}], \"notes\": \"Blonde\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"98747\",\"order_item_id\":\"46428\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"98747\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"98747\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"46428\", \"menu_item_id\": \"cappuccino-2943\", \"menu_item_name\": \"Cappuccino\", \"notes\": \"Blonde\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a blonde cappuccino with whole milk please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, can you confirm the order is correct and I'll send your order through" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"98747\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, it is good" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, your order will be up shortly at the bar" } ]
dlg-8983ac4f-5991-4744-866b-c4834a32ac8b
Coffee
Auto template 18 order a coffee drink specify espresso shots
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]} force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar. hint user (confirms it correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-4433\",\"name\":\"Cappuccino\"}, {\"menu_item_id\":\"Espresso-024\",\"name\":\"Espresso\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Triple\", \"menu_item_id\":\"cappuccino-4433\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-4433\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"42133\",\"order_item_id\":\"14464\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"42133\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"42133\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14464\", \"menu_item_id\": \"cappuccino-4433\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, can I get a Cappuccino? Could you make that a Triple shot?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"42133\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it looks right to me." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay we will have this out at the coffee bar very shortly." } ]
dlg-0f5cbba0-822c-4a14-989c-7cc383720e57
Coffee
Auto template 14b what kind of menu_items do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST black tea,herbal tea,matcha drinks,chai drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id2 id 10000 99999}} {{ENTER drink3 drink Enter one last name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id3 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}, {"menu_item_id":"var_item_id3","name":"var_drink3"}]} hint assistant (Explains they have var_drink1, var_drink2, and var_drink3.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" }, { "context": "api_call_1", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"black tea\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_1", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"64653\",\"name\":\"sweet tea\"}, {\"menu_item_id\":\"50360\",\"name\":\"iced tea\"}, {\"menu_item_id\":\"63348\",\"name\":\"sun tea\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, what kind of black tea do you carry?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We carry sun, iced, and sweet tea." } ]
dlg-0bd576a8-8c0f-4a81-a0f9-b2ac3aa53a72
Coffee
Auto template 31 Order two same drinks differing by caffeine
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Chai Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"chailatte-21577\",\"name\":\"Chai Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf\", \"menu_item_id\":\"chailatte-21577\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"chailatte-21577\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"35628\",\"order_item_id\":\"39747\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"35628\",\"order_id\": \"35628\", \"menu_item_id\": \"chailatte-21577\",\"quantity\": \"1\"}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"35628\",\"order_item_id\":\"97628\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"35628\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"35628\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Two of Hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"39747\", \"menu_item_id\": \"chailatte-21577\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"97628\", \"menu_item_id\": \"chailatte-21577\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Yo, yo, yo! How we doin? Can I get two chai lattes but make one of them decaf?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yo! Alrighty I'm gonna have you look at the screen and check that your order is accurate." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"35628\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Looks great my man!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Fabulous! You can pick it up right over there at the bar." } ]
dlg-b9da8df0-b404-4ed8-98a4-2cb225b1c108
Coffee
Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *Here or To go* {{ENTER delivery delivery Enter either Here OR To go}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_addons request {"query": "var_delivery", "scope": "order"} response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]} call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] } response update_order response {"order_id": "var_order_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you. hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3454\",\"name\":\"mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"single OR almond Milk\", \"menu_item_id\":\"mocha-3454\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-3454\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"},{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"61396\",\"order_item_id\":\"53996\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"to go\", \"scope\": \"order\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"TO go\", \"Delivery\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"61396\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"to go\"}] }" }, { "context": "api_response_4", "name": "api_response", "value": "update_order" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"61396\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"61396\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"61396\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"to go\"}], \"menu_items\": [{\"order_item_id\": \"53996\", \"menu_item_id\": \"mocha-3454\", \"menu_item_name\": \"mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"},{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a single shot mocha with almond milk for a delivery to go." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"61396\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "It is correct" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok your order will be ready shortly at the coffee bar." } ]
dlg-9d8a6403-170c-4b6a-a3fd-430f35908031
Coffee
Auto template 22 notes based on initial order utterance - fixed
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER* Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. ) {{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made). hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-1030\",\"name\":\"cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"whole Milk OR Double shot\", \"menu_item_id\":\"cortado-1030\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-1030\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"whole Milk\"}], \"notes\": \"Double shot\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"95678\",\"order_item_id\":\"10898\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"95678\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"95678\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"10898\", \"menu_item_id\": \"cortado-1030\", \"menu_item_name\": \"cortado\", \"notes\": \"Double shot\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"whole Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi I'd like a double shot cortado with whole milk" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you please confirm your order before I send it off?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"95678\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it's correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. Please wait at the bar." } ]
dlg-9d944815-67bc-41ef-bec4-e359de9cb284
Coffee
Auto template 22 notes based on initial order utterance - fixed
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER* Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. ) {{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made). hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3342\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% Milk OR extra chocolate\", \"menu_item_id\":\"mocha-3342\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-3342\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"notes\": \"extra chocolate\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"11014\",\"order_item_id\":\"11933\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"11014\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"11014\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"11933\", \"menu_item_id\": \"mocha-3342\", \"menu_item_name\": \"Mocha\", \"notes\": \"extra chocolate\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like a Mocha with 2% milk and could you add extra chocolate to it?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please look at this and let me know if everything is correct." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"11014\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, that's good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, that'll be up soon at the bar." } ]
dlg-c4d06293-c8ea-45b5-8e69-46333839f866
Coffee
Auto template 15 what kind of coffee do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST coffee,coffee drinks,espresso drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} {{CONVERSATION hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} hint assistant (Explains they have a large variety of drinks including latte, mocha, cappuccino, americano, iced coffee, and several others. Politely suggests they take a look at the menu for more details.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can you tell me what kinds of espresso drinks do you have here?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We have a large variety of drinks including latte, mocha, cappuccino, americano, iced coffee, and several other kinds of drinks. You can check the menu for more details." } ]
dlg-0acf3223-c2f3-459c-bb70-19fcd43d945a
Coffee
Auto template 10 order a coffee drink with first name
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-1212\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-1212\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"53044\",\"order_item_id\":\"87624\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"53044\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"53044\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"87624\", \"menu_item_id\": \"latte-1212\", \"menu_item_name\": \"latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a latte and my name is Tisha" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Will you confirm that the order on the screen is correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"latte-1212\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"87624\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"87624\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"53044\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"53044\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"87624\", \"menu_item_id\": \"latte-1212\", \"menu_item_name\": \"latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No it isn't correct would you make that a decafe Latte?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay will you confirm that the order on your screen is correct?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"53044\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Yes the order is correct." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Thank you and your order will be ready shortly from the coffee bar." } ]
dlg-f236c4fd-280e-4965-bf1d-eb3917932a47
Coffee
Auto template 16 do you have x
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question: *CATEGORY* {{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}} {{RAND item_id2 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.) call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]} hint assistant (Answers Yes, we have var_drink1 and var_drink2) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"almond milk\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"73268\",\"name\":\"fresh pressed almond milk\"}, {\"menu_item_id\":\"50221\",\"name\":\"whole almond almond milk\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Do you carry almond milk here?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes, we have fresh pressed almond milk and also whole almond milk." } ]
dlg-f6fa3286-8c2d-414a-b089-c339e06717b6
Coffee
Auto template 19 order a coffee drink specify espresso shots and milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify two things: it's a var_shots and you want var_milk milk. How would you say it naturally? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots OR var_milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started. hint user (confirms all looks right) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-2231\",\"name\":\"Latte\"}, {\"menu_item_id\":\"Mocha-024\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"single OR Whole\", \"menu_item_id\":\"latte-2231\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-2231\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"92661\",\"order_item_id\":\"10859\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"92661\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"92661\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"10859\", \"menu_item_id\": \"latte-2231\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a sinlge shot Latte with Whole milk" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"92661\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "It looks perfect" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok! it will be ready for you in a few minutes" } ]
dlg-912b7792-82eb-4ae2-9781-9b4dd18cbc49
Coffee
Auto template 25 What's in a <drink>
*SCENARIO: Ordering from a coffee bar* *OTHER BEVERAGES on the COFFEE BAR MENU* {{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}} {{ENTER drink drink Enter just the drink name from one of the list choices above.}} {{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}} {{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}} {{CONVERSATION hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way) call get_menu_items request {"query": "var_drink", "fields": ["description"]} response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]} hint assistant (Say this in a slightly different way: var_details.) }}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Chai Latte\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"The Chai Latte is made with chai concentrate with milk and microfoam (12 oz)\", \"menu_item_id\": \"chai-latte-8526\", \"name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, can you tell me what's in Chai Latte?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "The Chai Latte uses chai concentrate and is enriched with milk and microfoam. It's a 12 oz drink." } ]
dlg-2a0e7094-22c5-4627-889d-bb46d883c679
Coffee
Auto template 32 Order a coffee drink iced, choose milk, add sweetener
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* ,*Mocha*}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink name from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *MILK CHOICES - Specify a milk from this list* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *SWEETENERS* {{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut, Sweetener,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink that has THREE modifications: (a) iced (b) var_milk milk and (c) var_sweet (in whatever order seems right). How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "iced OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "hot-or-iced", "attribute_name": "Hot or Iced", "options":["Hot","Iced"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "hot-or-iced", "option":"Iced"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}], "attributes": [{"attribute_id": "hot-or-iced", "option":"Iced"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant Is the order displayed correct? hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} force assistant OK. Your order will be ready shortly. Have a Brew-tiful day! }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3572\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"iced OR Almond milk OR Caramel Sauce\", \"menu_item_id\":\"mocha-3572\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"attribute_name\": \"Hot or Iced\", \"options\":[\"Hot\",\"Iced\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"caramel-sauce-192\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-3572\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-192\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"80806\",\"order_item_id\":\"27798\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"80806\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"80806\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"27798\", \"menu_item_id\": \"mocha-3572\", \"menu_item_name\": \"Mocha\", \"addons\": [{\"addon_id\": \"caramel-sauce-192\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, okay, I'd like to get an iced Mocha with Almond milk and Caramel Sauce, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is the order displayed correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"80806\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it is." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. Your order will be ready shortly. Have a Brew-tiful day!" } ]
dlg-45f475c9-13be-4ac4-bd0e-36a0150036b6
Coffee
Auto template 11 order a coffee drink no results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *DRINK NOT SHOWN ABOVE* {{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}} *CATEGORY* {{ENTER category category Enter one of these: coffee OR coffee drinks.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[]} hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL) hint user (Asks the coffee bar attendant to show the menu to them again) call show_menu request {} response show_menu response {"success":true} hint assistant (Here you go. Let me know if I can get you anything.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I get a Cortado with oat milk and extra foam?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Im sorry but we dont sell that here. Would you like something else?" } ]
dlg-311b0a8f-4bc8-46de-9ccd-ad8da8955e6c
Coffee
Auto template 5 Order a coffee drink mod decaf or iced, milk, sweetener FIX
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *FIRST MOD CHOICE -- BE CAREFUL HERE!!!* {{ENTER attri_id id Enter ONE of these two exactly as written: caffeine OR hot-or-iced.}} {{ENTER main_option option If you chose "caffeine" above write Decaf here (no quotes). If you chose "hot-or-iced" above, write "Iced" here (no quotes): }} {{ENTER other_option option If you chose caffeine above, write Caff here (no quotes). If you chose hot-or-iced, write Hot here (no quotes): }} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *SWEETENERS* {{LIST Vanilla,Sugar-Free Vanilla,Hazelnut,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink that has three modifications: (a) var_main_option (b) var_milk milk and (c) var_sweet (in whatever order seems right). Do NOT use the word "sweetener" or "sauce". How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_main_option OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "var_attri_id", "attribute_name": "var_attri_id", "options":["var_main_option","var_other_option"]},{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}]} force assistant Please check the details of your order. Are you ready to send it to the coffee bar? hint user (confirms) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"Latte-1414\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR 2% milk OR Hazelnut Sweetener\", \"menu_item_id\":\"Latte-1414\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"caffeine\", \"options\":[\"Decaf\",\"Caff\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-141\", \"name\": \"Hazelnut Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"Latte-1414\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-141\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"90960\",\"order_item_id\":\"43868\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"90960\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"90960\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"43868\", \"menu_item_id\": \"Latte-1414\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-141\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Good morning. Can I please have a Latte, decaf with 2% milk and Hazelnut sweetener please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please check the details of your order. Are you ready to send it to the coffee bar?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"90960\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes I am." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, one decaf latte with 2% milk and hazelnut sweetener will be right up for you." } ]
dlg-e3132823-8f4e-4d2e-b30f-f0590808c867
Coffee
Auto template 10 order a coffee drink with first name
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Macchiato \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-4566\",\"name\":\"Macchiato \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"macchiato-4566\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"19423\",\"order_item_id\":\"44736\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"19423\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"19423\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"44736\", \"menu_item_id\": \"macchiato-4566\", \"menu_item_name\": \"Macchiato \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I have a macchiato for Pat?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Let me know if your order is correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"macchiato-4566\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"44736\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"44736\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"19423\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"19423\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"44736\", \"menu_item_id\": \"macchiato-4566\", \"menu_item_name\": \"Macchiato \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No I need a decaf instead" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Can you look again and confirm the order and it will be ready at the coffee bar to pick up" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"19423\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Correct" }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Thank you it will be ready shortly at the coffee bar." } ]
dlg-ccb0cb7e-5552-4d6a-8fe0-871b84f464e0
Coffee
Auto template 18 order a coffee drink specify espresso shots
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]} force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar. hint user (confirms it correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-2778\",\"name\":\"Cappuccino\"}, {\"menu_item_id\":\"Espresso-024\",\"name\":\"Espresso\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Triple\", \"menu_item_id\":\"cappuccino-2778\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-2778\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"57066\",\"order_item_id\":\"89619\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"57066\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"57066\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"spider solitaire\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"89619\", \"menu_item_id\": \"cappuccino-2778\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like to get a triple shot cappuccino." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"57066\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "It's right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, everything will be ready soon." } ]
dlg-2dc7b0a4-09c9-433a-b46f-3b239ebaad28
Coffee
Auto template 30 Notes after no relevant addons found
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *SPECIAL* {{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-5863\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"extra milk\", \"menu_item_id\":\"mocha-5863\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-5863\",\"quantity\": \"1\", \"notes\": \"extra milk\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"29479\",\"order_item_id\":\"47626\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"29479\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"29479\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"three of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"47626\", \"menu_item_id\": \"mocha-5863\", \"menu_item_name\": \"Mocha\", \"notes\": \"extra milk\"}]}" } ], "index": 0, "segments": [ { "annotations": [ { "name": "request" } ], "annotator_id": "GENERATED", "end_index": "42", "start_index": "32", "text": "extra milk" } ], "speaker": "user", "text": "Could I please get a Mocha with extra milk?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Of course. Is your order displayed correctly before we send it off to the coffee bar to be made?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"29479\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, your order will be ready to be picked up soon at the coffee bar." } ]
dlg-c3da9fe1-faa6-4c4d-815c-dcb56b9f94d1
Coffee
Auto template 11 order a coffee drink no results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *DRINK NOT SHOWN ABOVE* {{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}} *CATEGORY* {{ENTER category category Enter one of these: coffee OR coffee drinks.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[]} hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL) hint user (Asks the coffee bar attendant to show the menu to them again) call show_menu request {} response show_menu response {"success":true} hint assistant (Here you go. Let me know if I can get you anything.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Americano\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order an Americano, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I'm sorry, but we don't have that on our menu. Is there something else you would like?" }, { "annotations": [ { "context": "api_call_1", "name": "api_call", "value": "show_menu" }, { "context": "api_call_1", "name": "request", "value": "{}" }, { "context": "api_response_1", "name": "api_response", "value": "show_menu" }, { "context": "api_response_1", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Could I please see the menu again?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Here you go. Let me know if I can get you anything." } ]
dlg-b286327d-d15e-41ae-bba5-40467b5dd6fc
Coffee
Auto template 13 completely off topic
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant but, instead of ordering a drink, you say something not related to coffee or the menu from the list below: *TOPICS* {{LIST relationship,weather,sports,hollywood,personal hygiene,geography,automobile,music,TV,movie,food,fashion,trivia,technology}} {{ENTER question question Enter one of the choices listed above.}} {{CONVERSATION hint user (Asks the coffee bar attendant a var_question related question) hint assistant (Explains they don't have an answer for that--USE YOUR OWN words--but that they can help the customer order coffee or tea drinks.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [], "index": 0, "segments": [], "speaker": "user", "text": "It's very cold outside. Is it like this at this time of the year over here?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yeah, it's cold but I do not know about the weather here. However, I can make you feel better by taking your order for hot coffee or tea drinks." } ]
dlg-75f7d031-1e30-4988-b3aa-ed756eda42dc
Coffee
Auto template 2 order a coffee drink specify milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Macchiato\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-3234\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk\", \"menu_item_id\":\"macchiato-3234\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"macchiato-3234\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"33665\",\"order_item_id\":\"53696\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"33665\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"33665\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"53696\", \"menu_item_id\": \"macchiato-3234\", \"menu_item_name\": \"Macchiato\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a Macchiato with oat milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Will you please confirm that the order on the screen is correct before I submit it to be made." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"33665\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK your order will be ready shortly at the coffee bar." } ]
dlg-361e6679-1c88-413e-bed4-aec68566a54c
Coffee
Auto template 10 order a coffee drink with first name
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-8433\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-8433\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"13468\",\"order_item_id\":\"95206\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"13468\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"13468\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"six of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"95206\", \"menu_item_id\": \"mocha-8433\", \"menu_item_name\": \"Mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a Mocha under my name Nick please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-8433\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"95206\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"95206\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"13468\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"13468\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"six of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"95206\", \"menu_item_id\": \"mocha-8433\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No I would like to make it a decaf." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay is this right ?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"13468\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Yes it is." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Okay it will be out shortly." } ]
dlg-9c3ddd83-d17c-41b7-bda5-66753f8a464d
Coffee
Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *Here or To go* {{ENTER delivery delivery Enter either Here OR To go}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_addons request {"query": "var_delivery", "scope": "order"} response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]} call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] } response update_order response {"order_id": "var_order_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you. hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-2881\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Single OR Almond Milk\", \"menu_item_id\":\"cortado-2881\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-2881\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"97952\",\"order_item_id\":\"40435\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"To go\", \"scope\": \"order\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"To go\", \"Delivery\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"97952\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}] }" }, { "context": "api_response_4", "name": "api_response", "value": "update_order" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"97952\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"97952\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"97952\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"40435\", \"menu_item_id\": \"cortado-2881\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to get a To go order please. It'll just be a single Cortado with almond milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"97952\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Alright. I'll get that out to you in just a second at the coffee bar." } ]
dlg-9df146de-0131-4577-a5cf-be4fbd140bf0
Coffee
Auto template 10 order a coffee drink with first name
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cappuccino (8oz) (espresso + milk + extra foam)\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"Cappuccino-9399\",\"name\":\"Cappuccino (8oz) (espresso + milk + extra foam)\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"Cappuccino-9399\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"20309\",\"order_item_id\":\"53177\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"20309\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"20309\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Two of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"53177\", \"menu_item_id\": \"Cappuccino-9399\", \"menu_item_name\": \"Cappuccino (8oz) (espresso + milk + extra foam)\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to get an 8oz Cappuccino. That's just espresso, milk and extra foam. I'd like that for Ryan please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay this order right on the screen?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"Cappuccino-9399\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"53177\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"53177\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"20309\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"20309\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Two of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"53177\", \"menu_item_id\": \"Cappuccino-9399\", \"menu_item_name\": \"Cappuccino (8oz) (espresso + milk + extra foam)\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No, I'd like it decaf instead." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Is this right now?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"20309\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Yep." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Okay I'll get that ready for you." } ]
dlg-1f32438f-ac1a-4a65-8b88-9aa1b91910e7
Coffee
Auto template 25 What's in a <drink>
*SCENARIO: Ordering from a coffee bar* *OTHER BEVERAGES on the COFFEE BAR MENU* {{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}} {{ENTER drink drink Enter just the drink name from one of the list choices above.}} {{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}} {{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}} {{CONVERSATION hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way) call get_menu_items request {"query": "var_drink", "fields": ["description"]} response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]} hint assistant (Say this in a slightly different way: var_details.) }}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Americano\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"The Americano is a mix of espresso and hot water (10 oz)\", \"menu_item_id\": \"americano-3055\", \"name\": \"Americano\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "What is in an Americano?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "It's a drink that's a mix of espresso and hot water that's about 10oz." } ]
dlg-4c38afce-81ff-4ee5-b047-787ff4812358
Coffee
Auto template 13 completely off topic
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant but, instead of ordering a drink, you say something not related to coffee or the menu from the list below: *TOPICS* {{LIST relationship,weather,sports,hollywood,personal hygiene,geography,automobile,music,TV,movie,food,fashion,trivia,technology}} {{ENTER question question Enter one of the choices listed above.}} {{CONVERSATION hint user (Asks the coffee bar attendant a var_question related question) hint assistant (Explains they don't have an answer for that--USE YOUR OWN words--but that they can help the customer order coffee or tea drinks.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [], "index": 0, "segments": [], "speaker": "user", "text": "Have you seen any good shows lately?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sorry, I haven't had much time to watch TV. Can I get you a coffee or tea?" } ]
dlg-872d608b-0ed9-46b2-904e-1de86297bbdf
Coffee
Auto template 4 order a coffee drink mod milk and sweetener
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-7283\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk OR Hazelnut Sweetener\", \"menu_item_id\": \"cortado-7283\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-132\", \"name\": \"Hazelnut Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-7283\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-132\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"74756\",\"order_item_id\":\"14091\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"74756\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"74756\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14091\", \"menu_item_id\": \"cortado-7283\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-132\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I would like a Cortado with Oat milk and some Hazelnut please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Of course, does your order look correct on the screen?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"74756\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Sure does" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Excellent, your order will be up very soon." } ]
dlg-265683bf-7636-4286-8261-52a943d04d81
Coffee
Auto template 20 order a coffee drink TO GO
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-0294\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-0294\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"31572\",\"order_item_id\":\"77031\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_addons" }, { "context": "api_call_2", "name": "request", "value": "{\"query\": \"to go\", \"scope\": \"order\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_addons" }, { "context": "api_response_2", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"Togo\", \"Delivery\"]}]}" }, { "context": "api_call_3", "name": "api_call", "value": "update_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"31572\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}] }" }, { "context": "api_response_3", "name": "api_response", "value": "update_order" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"31572\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"31572\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"31572\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"77031\", \"menu_item_id\": \"latte-0294\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi there. Can I get one Latte, to go?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"31572\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes. That looks right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thank you, sir. We will have your order out at the coffee bar in just a few minutes." } ]
dlg-6956cd67-57ed-4b84-b4e7-a86307d3c819
Coffee
Auto template 27 Order two same drinks no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Customer orders *TWO* of these: var_drink.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Chai Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-1123\",\"name\":\"Chai Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"chai-latte-1123\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"35219\",\"order_item_id\":\"74898\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"35219\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"35219\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Go Fish\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"74898\", \"menu_item_id\": \"chai-latte-1123\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, i'd like to order two chai lattes." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is everything correct to you?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"35219\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, we'll get your order to you soon." } ]
dlg-061d83fd-2bcd-4159-940e-c95f393f76a8
Coffee
Auto template 7 order a DECAF coffee drink no other mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-9490\",\"name\":\"mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-9490\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-9490\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"41704\",\"order_item_id\":\"85348\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"41704\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"41704\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"85348\", \"menu_item_id\": \"mocha-9490\", \"menu_item_name\": \"mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey. I'd like a decaf mocha." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Please check the screen. Is it right?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"41704\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. It'll be out soon at the bar." } ]
dlg-e316b4a3-4b84-4a2d-b7b5-1b223fdfa7dc
Coffee
Auto template 15 what kind of coffee do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST coffee,coffee drinks,espresso drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} {{CONVERSATION hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} hint assistant (Explains they have a large variety of drinks including latte, mocha, cappuccino, americano, iced coffee, and several others. Politely suggests they take a look at the menu for more details.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" } ], "index": 0, "segments": [], "speaker": "user", "text": "What kind of coffee drinks do you have?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We have so many varieties including latte, mocha, cappuccino, americano, iced coffee, and some others. You may look at the menu if you wish for more details." } ]
dlg-e96926c8-2b2b-4135-8c6d-c77ff09ee742
Coffee
Auto template 27 Order two same drinks no mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Customer orders *TWO* of these: var_drink.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-5567\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-5567\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"14039\",\"order_item_id\":\"26650\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"14039\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"14039\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Two of diamonds \", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"26650\", \"menu_item_id\": \"latte-5567\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "May I please have two lattes?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is everything there correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"14039\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok Your order will be up soon at the coffee bar." } ]
dlg-2a2478d3-c22b-480f-873e-bf088138c62d
Coffee
Auto template 3 order a coffee drink mod sweetener
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Americano* (10oz) (espresso + hot water)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *SWEETENERS* {{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut Sweetener,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink that has var_sweet. Do NOT use the word "sweetener" or "sauce" (unless you really think you'd use it in the cafe). How would you say it? *Say it out loud first*. If you don't know how it is usually said, ask someone who would know. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_sweet", "menu_item_id": "var_menu_item_id"} response get_addons response {"addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (confirms details are right) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly -- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Americano\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"americano-4492\",\"name\":\"Americano\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Chocolate Sauce\", \"menu_item_id\": \"americano-4492\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-119\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"americano-4492\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-119\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"44981\",\"order_item_id\":\"90622\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"44981\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"44981\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"90622\", \"menu_item_id\": \"americano-4492\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"chocolate-sauce-119\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, can I get one Americano with Chocolate?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Absolutely, does this look right." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"44981\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, that's correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, we'll have your order ready in just a minute." } ]
dlg-31b4699b-44c7-4741-8e1c-5d35059629b7
Coffee
Auto template 11 order a coffee drink no results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *DRINK NOT SHOWN ABOVE* {{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}} *CATEGORY* {{ENTER category category Enter one of these: coffee OR coffee drinks.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[]} hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL) hint user (Asks the coffee bar attendant to show the menu to them again) call show_menu request {} response show_menu response {"success":true} hint assistant (Here you go. Let me know if I can get you anything.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cold Brew\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey, can I get a cold brew?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Unfortunately, there's nothing on our menu that matches that. Would you like something else?" }, { "annotations": [ { "context": "api_call_1", "name": "api_call", "value": "show_menu" }, { "context": "api_call_1", "name": "request", "value": "{}" }, { "context": "api_response_1", "name": "api_response", "value": "show_menu" }, { "context": "api_response_1", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Can you show me the menu again?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Sure. Here you go. Let me know if I can get you anything." } ]
dlg-6a6c5a13-4677-4322-9cf5-767d2e0d00d6
Coffee
Auto template 12 order a coffee drink wrong results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} {{ENTER drink1 drink Enter one of the two drinks listed above.}} {{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} {{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}} {{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}} *CATEGORY* {{ENTER category category Enter one of the choices: tea OR tea drinks}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]} hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.) hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-8960\",\"name\":\"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like to get a Mocha please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I'm sorry, I'm not seeing Mocha on our menu. Did you mean Macchiato?" } ]
dlg-56cf5665-3013-4358-a843-eaa8f890450b
Coffee
Auto template 7 order a DECAF coffee drink no other mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-8351\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"cortado-8351\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-8351\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"24295\",\"order_item_id\":\"79681\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"24295\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"24295\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"79681\", \"menu_item_id\": \"cortado-8351\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like a decalf Cortado please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Perfect. Can I just get you to confirm your order for us please? Thanks." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"24295\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it's correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Sounds good and your order will be ready for you shortly over at the coffee bar." } ]
dlg-43e4f96e-5150-496b-a534-a74ae09969b2
Coffee
Auto template 2 order a coffee drink specify milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-7931\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% milk\", \"menu_item_id\":\"latte-7931\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-7931\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"83046\",\"order_item_id\":\"45226\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"83046\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"83046\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"45226\", \"menu_item_id\": \"latte-7931\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I please have a Latte made with 2% milk?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Could you make sure this is correct for me?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"83046\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, it's right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, you can get that at the coffee bar in a couple minutes." } ]
dlg-acfeb69d-4381-4c68-ba4b-b6c7f6961dad
Coffee
Auto template 7 order a DECAF coffee drink no other mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Macchiato\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-4009\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"macchiato-4009\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"macchiato-4009\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"61133\",\"order_item_id\":\"95579\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"61133\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"61133\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"nine of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"95579\", \"menu_item_id\": \"macchiato-4009\", \"menu_item_name\": \"Macchiato\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a decaffeinated Macchiato, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes sir. Is this correct as to what you want?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"61133\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thanks! You can go to the coffee bar and pick it up shortly." } ]
dlg-a9370040-28cc-44ae-9168-16fe91570404
Coffee
Auto template 12 order a coffee drink wrong results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} {{ENTER drink1 drink Enter one of the two drinks listed above.}} {{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} {{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}} {{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}} *CATEGORY* {{ENTER category category Enter one of the choices: tea OR tea drinks}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]} hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.) hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"cappucino\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-7438\",\"name\":\"cortado\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I get a cappucino please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Oh sorry I didn't see that. Did you mean cortado?" } ]
dlg-ee016599-b4d5-441c-8ec9-31d0893b8895
Coffee
Auto template 29 Order two drinks differing by name and milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE TWO DRINKS* {{ENTER drink1 drink Enter a drink from the list above.}} {{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}} {{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk1 milk Choose a type of milk from the list above}} {{ENTER milk2 milk Choose a SECOND type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]} call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call get_menu_items request {"query": "var_drink2"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]} call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-3684\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2%\", \"menu_item_id\":\"cortado-3684\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-3684\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"64752\",\"order_item_id\":\"43906\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"64752\",\"menu_item_id\": \"latte-4125\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"64752\",\"order_item_id\":\"50545\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"64752\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"64752\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"43906\", \"menu_item_id\": \"cortado-3684\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"50545\", \"menu_item_id\": \"latte-4125\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I order a Cortado with 2% milk and a Latte with Oat milk please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you confirm the order is correct before I send it to the coffee bar to make it?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"64752\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, your coffee will be available at the coffee bar in a moment." } ]
dlg-f842dac4-21b2-4467-8d1a-e37edfc7a68c
Coffee
Auto template 12 order a coffee drink wrong results
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} {{ENTER drink1 drink Enter one of the two drinks listed above.}} {{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} {{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}} {{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}} *CATEGORY* {{ENTER category category Enter one of the choices: tea OR tea drinks}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]} hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.) hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-4326\",\"name\":\"Macchiato \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. I would like to get a Mocha." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I am sorry, we don't have Mocha on the menu. Do you mean a Macchiato?" }, { "annotations": [ { "context": "api_call_1", "name": "api_call", "value": "show_menu" }, { "context": "api_response_1", "name": "api_response", "value": "show_menu" }, { "context": "api_response_1", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No, that's not what I wanted. What kind of teas do you have?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "We actually have a lot of teas. We have black, herbal, and oolong. You can see all of our teas on the menu." } ]
dlg-21685b04-57f7-4db5-a4ba-89c9df3e66f6
Coffee
Auto template 26 order match and chai latte drinks no mods
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Matcha Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"matcha-latte-2847\",\"name\":\"Matcha Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"matcha-latte-2847\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"82581\",\"order_item_id\":\"30215\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"82581\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"82581\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"30215\", \"menu_item_id\": \"matcha-latte-2847\", \"menu_item_name\": \"Matcha Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'll take a Matcha Latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Check that the order is displayed correctly then I'll send that to the coffee bar for you." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"82581\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes that is right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Alright that will be up for you at the coffee bar shortly." } ]
dlg-e114f9ac-b828-4d45-9624-31b95721b3ce
Coffee
Auto template 14b what kind of menu_items do you have
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific menu question: *CATEGORY* {{LIST black tea,herbal tea,matcha drinks,chai drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id2 id 10000 99999}} {{ENTER drink3 drink Enter one last name of a specific example from the category you listed above. It can be any name you know of that matches that category.}} {{RAND item_id3 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant what kinds of var_category they have) call show_menu request {} response show_menu response {"success":true} call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}, {"menu_item_id":"var_item_id3","name":"var_drink3"}]} hint assistant (Explains they have var_drink1, var_drink2, and var_drink3.) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "show_menu" }, { "context": "api_call_0", "name": "request", "value": "{}" }, { "context": "api_response_0", "name": "api_response", "value": "show_menu" }, { "context": "api_response_0", "name": "response", "value": "{\"success\":true}" }, { "context": "api_call_1", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Herbal Tea\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_1", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"45193\",\"name\":\"Tea Beverages\"}, {\"menu_item_id\":\"10833\",\"name\":\"Jasmine Tea\"}, {\"menu_item_id\":\"59749\",\"name\":\"Lemon Drop Tea\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, What kind of herbal tea do you have today?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We have a lot of tea beverages that are herbal. We have Jasmine, lemon Drop, and much more." } ]
dlg-44ecfd3a-fc69-48ce-bd2a-933a82851853
Coffee
Auto template 25 What's in a <drink>
*SCENARIO: Ordering from a coffee bar* *OTHER BEVERAGES on the COFFEE BAR MENU* {{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}} {{ENTER drink drink Enter just the drink name from one of the list choices above.}} {{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}} {{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}} {{CONVERSATION hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way) call get_menu_items request {"query": "var_drink", "fields": ["description"]} response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]} hint assistant (Say this in a slightly different way: var_details.) }}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Matcha Latte\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"The Matcha Latte has matcha concentrate with milk and microfoam\", \"menu_item_id\": \"matcha-latte-5523\", \"name\": \"Matcha Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, can you tell me what is in the Matcha Latte?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, the Matcha Latte contains matcha concentrate and milk as well as microfoam." } ]
dlg-999d280e-99a9-4eba-aa61-23665ce639ca
Coffee
Auto template 23 order a coffee drink then ask for sweeteners
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *CHOOSE A DRINK* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *Choose a term* {{ENTER sweet_term word Enter the word "sweetener" or "syrup":}} *Choose a SWEETENER* {{LIST Vanilla,Sugar Free Vanilla,Hazelnut, Caramel Sauce}} {{ENTER sweet_name name sweetener names (the one without a number) as it is written from the list above:}} *SWEETENER ID* {{LIST vanilla-sweetener-011,sugar-free-vanilla-sweetener-012,hazelnut-sweetener-013,caramel-sauce-15}} {{ENTER sweet_id id Enter the sweetener ID that matches your sweetener name exactly as it is written from the list above:}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink but don't mention any modifiers.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (asks what kind of var_sweet_term they have) call get_addons request {"query": "var_sweet_term", "menu_item_id":"var_menu_item_id"} response get_addons response {"addons":[{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["ADD"]},{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["NO","ADD"]},{"addon_id":"hazelnut-sweetener-013","name":"Hazelnut Sweetener","options":["NO","ADD"]},{"addon_id":"vanilla-sweetener-011","name":"Vanilla sweetener","options":["NO","ADD"]},{"addon_id":"chocolate-sauce-014","name":"Chocolate Sauce","options":["NO","ADD"]},{"addon_id":"caramel-sauce-015","name":"Caramel Sauce","options":["NO","ADD"]},{"addon_id":"honey-016","name":"Honey","options":["NO","ADD"]},{"addon_id":"sugar-017","name":"Sugar ","options":["NO","ADD"]}]} force assistant We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar. hint user (Say you want to add the var_sweet_name.) call update_order_item request {"order_item_id": "var_order_item_id","addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]} response update_order_item response {"order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}]} hint assistant (the worker asks the customer again to confirm the order is correct before sending it to the coffee bar). hint user (confirms it's correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar -- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-4578\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-4578\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"28945\",\"order_item_id\":\"94689\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"28945\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"28945\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"nine of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"94689\", \"menu_item_id\": \"mocha-4578\", \"menu_item_name\": \"Mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to order a Mocha, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay, please confirm that your order is correct." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"sweetener\", \"menu_item_id\":\"mocha-4578\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"addons\":[{\"addon_id\":\"sf-vanilla-sweetener-012\",\"name\":\"Sugar Free Vanilla Sweetener\",\"options\":[\"ADD\"]},{\"addon_id\":\"sf-vanilla-sweetener-012\",\"name\":\"Sugar Free Vanilla Sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"hazelnut-sweetener-013\",\"name\":\"Hazelnut Sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"vanilla-sweetener-011\",\"name\":\"Vanilla sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"chocolate-sauce-014\",\"name\":\"Chocolate Sauce\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"caramel-sauce-015\",\"name\":\"Caramel Sauce\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"honey-016\",\"name\":\"Honey\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"sugar-017\",\"name\":\"Sugar \",\"options\":[\"NO\",\"ADD\"]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "What types of sweeteners do you have?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "update_order_item" }, { "context": "api_call_4", "name": "request", "value": "{\"order_item_id\": \"94689\",\"addons\": [{\"addon_id\": \"hazelnut-sweetener-013\", \"option\":\"ADD\"}]}" }, { "context": "api_response_4", "name": "api_response", "value": "update_order_item" }, { "context": "api_response_4", "name": "response", "value": "{\"order_item_id\":\"94689\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"28945\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"28945\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"nine of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"94689\", \"menu_item_id\": \"mocha-4578\", \"menu_item_name\": \"Mocha\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-013\", \"option\":\"ADD\"}]}]}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Could I add the Hazelnut, please." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Sure, please make sure your order is correct." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"28945\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 6, "segments": [], "speaker": "user", "text": "It is, thanks." }, { "annotations": [], "index": 7, "segments": [], "speaker": "assistant", "text": "You're welcome. Your Mocha will be at the coffee bar in a few minutes." } ]
dlg-b3217b54-cc5d-42ef-b861-d36239d59dd2
Coffee
Auto template 19 order a coffee drink specify espresso shots and milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify two things: it's a var_shots and you want var_milk milk. How would you say it naturally? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots OR var_milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started. hint user (confirms all looks right) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-2323\",\"name\":\"latte\"}, {\"menu_item_id\":\"mocha-024\",\"name\":\"mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"single OR 2&\", \"menu_item_id\":\"latte-2323\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-2323\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"},{\"attribute_id\": \"milk-options\", \"option\":\"2& Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"42987\",\"order_item_id\":\"55508\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"42987\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"42987\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"55508\", \"menu_item_id\": \"latte-2323\", \"menu_item_name\": \"latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"},{\"attribute_id\": \"milk-options\", \"option\":\"2& Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "i would like a single mocha with 2% milk" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"42987\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "yes it is right" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "that will be out shortly" } ]
dlg-5a3d837c-01de-4cf5-bd1a-5f66393af7cb
Coffee
Auto template 25 What's in a <drink>
*SCENARIO: Ordering from a coffee bar* *OTHER BEVERAGES on the COFFEE BAR MENU* {{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}} {{ENTER drink drink Enter just the drink name from one of the list choices above.}} {{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}} {{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}} {{CONVERSATION hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way) call get_menu_items request {"query": "var_drink", "fields": ["description"]} response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]} hint assistant (Say this in a slightly different way: var_details.) }}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Steamer\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"The Steamer is just steamed milk and microfoam (12 oz)\", \"menu_item_id\": \"steamer-3431\", \"name\": \"Steamer\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to know what is in a Steamer, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "A steamer consists of steamed milk and macrofoam. It's 12 oz." } ]
dlg-37f7b784-1914-4fdc-a53d-26ad73a1b564
Coffee
Auto template 4 order a coffee drink mod milk and sweetener
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-7484\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% milk OR Vanilla Sweetener\", \"menu_item_id\": \"latte-7484\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-215\", \"name\": \"Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-7484\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-215\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"38916\",\"order_item_id\":\"56155\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"38916\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"38916\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of spadeas\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"56155\", \"menu_item_id\": \"latte-7484\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-215\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "OK, I'm going to have a Vanilla Latte with 2% milk. Thanks." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure. Before I shoot this over could you please confirm that this here is correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"38916\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "OK, sure. Yes, that is it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thanks. Your order will be out in a jiffy." } ]
dlg-b17d60d1-26a8-4fde-b9f5-627e8db861aa
Coffee
Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *MILK CHOICES* {{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk milk Choose a type of milk from the list above}} *Here or To go* {{ENTER delivery delivery Enter either Here OR To go}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_addons request {"query": "var_delivery", "scope": "order"} response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]} call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] } response update_order response {"order_id": "var_order_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]} force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you. hint user (confirms it is correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-0987\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"double OR Oat Milk\", \"menu_item_id\":\"mocha-0987\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-0987\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"11727\",\"order_item_id\":\"27565\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"Here\", \"scope\": \"order\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_addons" }, { "context": "api_response_3", "name": "response", "value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"To go\", \"Delivery\"]}]}" }, { "context": "api_call_4", "name": "api_call", "value": "update_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"11727\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}] }" }, { "context": "api_response_4", "name": "api_response", "value": "update_order" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"11727\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"11727\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"11727\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"27565\", \"menu_item_id\": \"mocha-0987\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi can I get an Oat Milk double mocha for here please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"11727\"}" }, { "context": "api_response_6", "name": "api_response", "value": "finish_order" }, { "context": "api_response_6", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "yes it looks correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Fantastic, your ready will be ready soon for pick up at the coffee bar." } ]
dlg-70628caa-1e88-49e3-8480-836bb45846b1
Coffee
Auto template 16 do you have x
*SCENARIO: Ordering from a coffee bar* Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question: *CATEGORY* {{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}} {{ENTER category category Enter one of the choices exactly as written above.}} *DRINKS* {{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}} {{RAND item_id1 id 10000 99999}} {{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}} {{RAND item_id2 id 10000 99999}} {{CONVERSATION hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.) call get_menu_items request {"query": "var_category"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]} hint assistant (Answers Yes, we have var_drink1 and var_drink2) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"black tea\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"63365\",\"name\":\"special tea drinks\"}, {\"menu_item_id\":\"12122\",\"name\":\"ice tea\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey, do you have black tea?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes, we have special tea drinks and iced tea." } ]
dlg-080db5ed-d613-4f15-b96c-7c5d8e169e84
Coffee
Auto template 18 order a coffee drink specify espresso shots
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink1 drink Enter one of the four drinks from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a different drink from the list above.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *ESPRESSO SHOTS* {{LIST Single, Double, Triple, Quadruple}} {{ENTER shots shots Enter one of the above}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]} call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]} force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar. hint user (confirms it correct) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-2541\",\"name\":\"Latte \"}, {\"menu_item_id\":\"Mocha-024\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"single\", \"menu_item_id\":\"latte-2541\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-2541\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"13689\",\"order_item_id\":\"90702\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"13689\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"13689\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ace of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"90702\", \"menu_item_id\": \"latte-2541\", \"menu_item_name\": \"Latte \", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'll have a single Latte, thanks." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"13689\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes. That's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, great. It will be ready at the coffee bar in a minute or two." } ]
dlg-1ef398d8-0a4b-47b9-abce-ac36df3d61b0
Coffee
Auto template 29 Order two drinks differing by name and milk
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE TWO DRINKS* {{ENTER drink1 drink Enter a drink from the list above.}} {{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} {{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}} {{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}} *MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk* {{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}} {{ENTER milk1 milk Choose a type of milk from the list above}} {{ENTER milk2 milk Choose a SECOND type of milk from the list above}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.) call get_menu_items request {"query": "var_drink1"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]} call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call get_menu_items request {"query": "var_drink2"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]} call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Mocha\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2978\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% Lactose-Free\", \"menu_item_id\":\"mocha-2978\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"mocha-2978\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"12296\",\"order_item_id\":\"51846\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"12296\",\"menu_item_id\": \"macchiato-4726\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"12296\",\"order_item_id\":\"94000\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"12296\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"12296\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"51846\", \"menu_item_id\": \"mocha-2978\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]},{\"order_item_id\": \"94000\", \"menu_item_id\": \"macchiato-4726\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'll take a Mocha with 2% Lactose-Free milk, and an Almond milk Macchiato." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay, this is your order. Give it a look and if everything is correct, I'll pass that over to the coffee bar for preparation." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"12296\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yep, that's what I want." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, your coffee will be ready for you over at the coffee bar momentarily." } ]
dlg-50ecc00a-a1d7-425c-9600-8be6ddc0696d
Coffee
Auto template 7 order a DECAF coffee drink no other mods
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the coffee bar worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. ) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-6677\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"latte-6677\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-6677\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"57113\",\"order_item_id\":\"20764\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"57113\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"57113\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"20764\", \"menu_item_id\": \"latte-6677\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a decaf Latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is the displayed order correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"57113\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Your order will be ready at the coffee bar." } ]
dlg-56bf866e-bb6d-4e0f-85b6-63d85a70c180
Coffee
Auto template 31 Order two same drinks differing by caffeine
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id1 id 10000 99999}} {{RAND order_item_id2 id 10000 99999}} {{CONVERSATION hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"} call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"latte-4342\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf\", \"menu_item_id\":\"latte-4342\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"latte-4342\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"66928\",\"order_item_id\":\"13854\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"66928\",\"order_id\": \"66928\", \"menu_item_id\": \"latte-4342\",\"quantity\": \"1\"}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"66928\",\"order_item_id\":\"47108\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"66928\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"66928\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"13854\", \"menu_item_id\": \"latte-4342\", \"menu_item_name\": \"latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"47108\", \"menu_item_id\": \"latte-4342\", \"menu_item_name\": \"latte\", \"quantity\": \"1\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a decafe latte and a regular latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Would you make sure your order is correct on the screen before I send it to the coffee bar to be made." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"66928\"}" }, { "context": "api_response_5", "name": "api_response", "value": "finish_order" }, { "context": "api_response_5", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes it is correct" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok and your order will be ready at the coffee bar shortly." } ]
dlg-c680efbb-9556-4ac1-a484-40c3e82c0c30
Coffee
Auto template 4b order a coffee drink mod decaf and sweetener
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *SWEETENERS* {{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut Sweetener,Chocolate Sauce,Caramel Sauce}} {{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}} {{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}} *TASK: Write the transcript of a conversation that you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Order a var_drink with these two modifications: (a) decaf and (b) has var_sweet. Do NOT use the word "sweetener" or "sauce" (unless you're sure you'd say it normally). How would you say it? *Say it out loud first* then write it.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "Decaf OR var_sweet", "menu_item_id": "var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf","Caff"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}], "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS). hint user (confirms details are right) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Acknowledges and indicates the order will be ready shortly -- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-8765\",\"name\":\"cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR Chocolate Sauce\", \"menu_item_id\": \"cortado-8765\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\",\"Caff\"]}], \"addons\": [{\"addon_id\": \"chocolate-sauce-788\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-8765\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-788\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"77347\",\"order_item_id\":\"76588\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"77347\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"77347\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"76588\", \"menu_item_id\": \"cortado-8765\", \"menu_item_name\": \"cortado\", \"addons\": [{\"addon_id\": \"chocolate-sauce-788\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I get a decaf chocolate cortado" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this right?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"77347\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes that's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK your order is coming right up." } ]
dlg-1d96016e-8b97-4cb0-adce-acc40920e42b
Coffee
Auto template 26 order match and chai latte drinks no mods
null
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Chai Latte\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-0196\",\"name\":\"Chai Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"chai-latte-0196\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"90777\",\"order_item_id\":\"25358\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"90777\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"90777\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"six of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"25358\", \"menu_item_id\": \"chai-latte-0196\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, I'd like a Chai Latte please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok, can you make sure everything is to your liking?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"90777\"}" }, { "context": "api_response_3", "name": "api_response", "value": "finish_order" }, { "context": "api_response_3", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes, looks good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, I'm sending it over to the coffee bar and it will be made shortly." } ]
dlg-9571b4a8-1f5f-4165-8aab-95acfd3e4d66
Coffee
Auto template 30 Notes after no relevant addons found
*SCENARIO: Ordering from a coffee bar* Imagine you're ordering a drink from the following menu: *COFFEE BAR MENU* {{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}} *CHOOSE YOUR DRINK* {{ENTER drink drink Enter a drink from the list above.}} {{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}} *SPECIAL* {{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }} *NAME* {{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}} *TASK: Write the transcript of a conversation you would have with the worker.* {{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}} {{RAND order_id id 10000 99999}} {{RAND order_item_id id 10000 99999}} {{CONVERSATION hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.) call get_menu_items request {"query": "var_drink"} response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]} call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"} response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]} call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"} response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"} call get_order_details request {"order_id": "var_order_id"} response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]} hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS). hint user (answers yes) call finish_order request {"order_id": "var_order_id"} response finish_order response {"success":true} hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS) }} {{CHECK confirm_flow The conversation sounds realistic and logical.}} {{CHECK confirm_language The conversation contains no inappropriate language.}}
[ { "annotations": [ { "context": "api_call_0", "name": "api_call", "value": "get_menu_items" }, { "context": "api_call_0", "name": "request", "value": "{\"query\": \"Cortado\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-1839\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"extra ice\", \"menu_item_id\":\"cortado-1839\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}" }, { "context": "api_call_2", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_2", "name": "request", "value": "{\"menu_item_id\": \"cortado-1839\",\"quantity\": \"1\", \"notes\": \"extra ice\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"45915\",\"order_item_id\":\"42093\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"45915\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"45915\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"king of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"42093\", \"menu_item_id\": \"cortado-1839\", \"menu_item_name\": \"Cortado\", \"notes\": \"extra ice\"}]}" } ], "index": 0, "segments": [ { "annotations": [ { "name": "request" } ], "annotator_id": "GENERATED", "end_index": "34", "start_index": "25", "text": "extra ice" } ], "speaker": "user", "text": "I'll take a cortado with extra ice." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Check that is correct on the screen for me and I will send this to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"45915\"}" }, { "context": "api_response_4", "name": "api_response", "value": "finish_order" }, { "context": "api_response_4", "name": "response", "value": "{\"success\":true}" } ], "index": 2, "segments": [], "speaker": "user", "text": "Yes." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay that will be up at the coffee bar for you soon." } ]