conversation_id
stringlengths
40
40
vertical
stringclasses
1 value
scenario
stringclasses
32 values
instructions
stringclasses
28 values
utterances
listlengths
2
8
dlg-881444f3-24fc-4e54-ac61-2196f60e88fa
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-1928\",\"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-1928\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"28740\",\"order_item_id\":\"92049\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"28740\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"28740\", \"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\": \"92049\", \"menu_item_id\": \"chai-latte-1928\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "one Chai Latte please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "is the order displayed correct and ready to send off to be made?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"28740\"}" }, { "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, then you can pick up your drink over at the bar in a few minutes." } ]
dlg-c55c12e7-3eab-4aa0-9d16-82b08128429c
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-3844\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat Milk OR Jean\", \"menu_item_id\":\"mocha-3844\"}" }, { "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-3844\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"notes\": \"Jean\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"60179\",\"order_item_id\":\"45332\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"60179\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"60179\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"3 of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"45332\", \"menu_item_id\": \"mocha-3844\", \"menu_item_name\": \"Mocha\", \"notes\": \"Jean\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get an mocha for Jean?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay I'll get right on that is this order correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"60179\"}" }, { "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": "Okay should be ready in about 5 minutes." } ]
dlg-70ac7899-0ef9-4e53-b266-21d30f1adc18
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\": \"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-3489\",\"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-3489\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"98620\",\"order_item_id\":\"47609\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"98620\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"98620\", \"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\": \"47609\", \"menu_item_id\": \"chai latte-3489\", \"menu_item_name\": \"Chai latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello, I'd like to get a chai latte" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay, does the order on the screen look correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"98620\"}" }, { "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 will be ready at the coffee bar soon" } ]
dlg-518b4333-0111-40b6-8571-45ccd72b2792
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\": \"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-3029\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-3029\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"45820\",\"order_item_id\":\"44441\"}" }, { "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\": \"45820\", \"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\": \"45820\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"45820\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"45820\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"four of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"44441\", \"menu_item_id\": \"mocha-3029\", \"menu_item_name\": \"Mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a Mocha 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\": \"45820\"}" }, { "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, perfect." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok it'll be ready in a few minutes." } ]
dlg-5f87f071-2a94-4176-9aa4-5d269ddea4fd
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\": \"Cold Brew\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"Our Cold Brew is made from coffee concentrate and ice (16 oz)\", \"menu_item_id\": \"cold-brew-4443\", \"name\": \"Cold Brew\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "What's in a Cold Brew?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "The cold brew is an iced coffee that is basically coffee concentrate and ice." } ]
dlg-d2874a16-4bbe-4eb3-9f96-a04a09d90490
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-2280\", \"name\": \"steamer\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "What is in a steamer?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "It is just steamed milk and microfoam" } ]
dlg-81a801a0-087c-46e4-872a-a3ff467d24a5
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\": \"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-4189\",\"name\":\"Cappuccino \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-4189\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"71910\",\"order_item_id\":\"55763\"}" }, { "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\": \"71910\", \"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\": \"71910\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"71910\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"71910\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Three of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"55763\", \"menu_item_id\": \"cappuccino-4189\", \"menu_item_name\": \"Cappuccino \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a cappuccino 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\": \"71910\"}" }, { "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": "It’s right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok. Your order coming up shortly." } ]
dlg-5d3c9e53-255c-420e-b56b-5637ac32f2f5
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\": \"Cold Brew\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"coffee concentrate and ice (16 oz)\", \"menu_item_id\": \"cold-brew-9087\", \"name\": \"Cold Brew\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can you tell me what's in a Cold Brew?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, it's 16 ounces of a mixture of coffee concentrate and ice" } ]
dlg-040a1ddc-644d-4a15-b9ee-66ff85f17cc7
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\": \"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-3847\",\"name\":\"Cappuccino \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"extra foam\", \"menu_item_id\":\"cappuccino-3847\"}" }, { "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\": \"cappuccino-3847\",\"quantity\": \"1\", \"notes\": \"extra foam\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"65897\",\"order_item_id\":\"93361\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"65897\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"65897\", \"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\": \"93361\", \"menu_item_id\": \"cappuccino-3847\", \"menu_item_name\": \"Cappuccino \", \"notes\": \"extra foam\"}]}" } ], "index": 0, "segments": [ { "annotations": [ { "name": "request" } ], "annotator_id": "GENERATED", "end_index": "39", "start_index": "29", "text": "extra foam" } ], "speaker": "user", "text": "Hi, I want a cappuccino with extra foam." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok, does this look right?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"65897\"}" }, { "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 great." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok you can pick up your order in a few minutes." } ]
dlg-ac134da6-3c51-464a-8a51-e579e9493237
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\": \"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-2165\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-2165\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"30617\",\"order_item_id\":\"49638\"}" }, { "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\": \"30617\", \"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\": \"30617\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"30617\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"30617\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"jack of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"49638\", \"menu_item_id\": \"cappuccino-2165\", \"menu_item_name\": \"Cappuccino\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "OK, could you please get me a Cappuccino? And make it to go, OK? Thanks." }, { "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\": \"30617\"}" }, { "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 looks correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, great. Give us a few seconds and it will be at the coffee bar." } ]
dlg-3f75dc36-4ccf-4874-ae44-8476c3b29be8
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-4456\",\"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-4456\"}" }, { "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-447\", \"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-4456\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-447\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"63905\",\"order_item_id\":\"51099\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"63905\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"63905\", \"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\": \"51099\", \"menu_item_id\": \"latte-4456\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"chocolate-sauce-447\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I'd like an iced Oat milk latte with Chocolate 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\": \"63905\"}" }, { "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-733a3467-4d96-45bd-b907-603af17d9f1a
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\": \"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-2354\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-2354\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"17462\",\"order_item_id\":\"83597\"}" }, { "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\": \"17462\", \"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\": \"17462\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"17462\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"17462\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Jack of spades \"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"83597\", \"menu_item_id\": \"cappuccino-2354\", \"menu_item_name\": \"Cappuccino\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. I’d like a cappuccino 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\": \"17462\"}" }, { "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 is correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Very good sir, you can pick it up shortly at the coffee bar." } ]
dlg-8ab8f290-f3d5-4385-b9d5-e7d4a7210446
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-4684\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk OR Sugar-Free Vanilla Sweetener\", \"menu_item_id\": \"latte-4684\"}" }, { "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\": \"sugar-free-vanilla-sweetener-568\", \"name\": \"Sugar-Free 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-4684\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-568\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"34296\",\"order_item_id\":\"55490\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"34296\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"34296\", \"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\": \"55490\", \"menu_item_id\": \"latte-4684\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-568\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I get a Sugar-Free Vanilla latte with oat milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Does this look correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"34296\"}" }, { "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": "Your order will be at the coffee bar in a couple of minutes." } ]
dlg-b8f641a9-e6b0-4c4b-805f-36cd63563af9
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\": \"Peppermint Rose\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"peppermint-rose-4412\",\"name\":\"Peppermint Rose\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"peppermint-rose-4412\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"56186\",\"order_item_id\":\"39523\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"56186\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"56186\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"poker\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"39523\", \"menu_item_id\": \"peppermint-rose-4412\", \"menu_item_name\": \"Peppermint Rose\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like a peppermint rose tea" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Have a look at your order, please" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"56186\"}" }, { "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, everything is fine" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, your order will be ready soon" } ]
dlg-29cc929b-1537-4089-b229-d0f0850beec9
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\": \"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-3111\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk OR Chocolate Sauce\", \"menu_item_id\": \"macchiato-3111\"}" }, { "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\": \"chocolate-sauce-311\", \"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\": \"macchiato-3111\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-311\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"68746\",\"order_item_id\":\"30232\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"68746\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"68746\", \"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\": \"30232\", \"menu_item_id\": \"macchiato-3111\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"chocolate-sauce-311\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a chocolate drizzle macchiato with oat milk?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes of course. Is the order right on the screen?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"68746\"}" }, { "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": "Alright. I'll get that right out to you." } ]
dlg-26783b0b-adf8-49ab-8c05-828e860299df
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\": \"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-2578\",\"name\":\"Espresso\"}, {\"menu_item_id\":\"Cappuccino-024\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"double OR whole\", \"menu_item_id\":\"espresso-2578\"}" }, { "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\": \"espresso-2578\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"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\": \"92904\",\"order_item_id\":\"16846\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"92904\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"92904\", \"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\": \"16846\", \"menu_item_id\": \"espresso-2578\", \"menu_item_name\": \"Espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"attribute_id\": \"milk-options\", \"option\":\"whole Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to order a double Espresso with whole milk, please." }, { "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\": \"92904\"}" }, { "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 is correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, your order will be ready at the coffee bar shortly." } ]
dlg-1c582d88-2699-44ea-89cb-b0b24fac676a
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": "Hello." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Hi, What can I do for you?" }, { "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": "Can you tell me what assortments of sweeteners you have?" } ]
dlg-4c8c50a4-1088-40ab-b87a-943b34ae7bb2
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\": \"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-8421\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk OR Non-Fat milk\", \"menu_item_id\":\"cortado-8421\"}" }, { "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-8421\",\"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\": \"82262\",\"order_item_id\":\"71954\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"82262\",\"menu_item_id\": \"cortado-8421\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"82262\",\"order_item_id\":\"50617\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"82262\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"82262\", \"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\": \"71954\", \"menu_item_id\": \"cortado-8421\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"50617\", \"menu_item_id\": \"cortado-8421\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I like a Cortado with Oat milk and another with non-fat milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I got the orders on display. Is this correct?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"82262\"}" }, { "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": "Good, I'll get them done soon!" } ]
dlg-228bc638-a860-4de9-917e-3cd5c00b1c9d
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-1219\",\"name\":\"latte\"}, {\"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\": \"single\", \"menu_item_id\":\"latte-1219\"}" }, { "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-1219\",\"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\": \"95234\",\"order_item_id\":\"88978\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"95234\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"95234\", \"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\": \"88978\", \"menu_item_id\": \"latte-1219\", \"menu_item_name\": \"latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"single\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a latte with a single 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\": \"95234\"}" }, { "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": "Looks good!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK we will have that out shortly!" } ]
dlg-c269203e-261f-4d21-90d3-3af8bb338710
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-4593\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-4593\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"95207\",\"order_item_id\":\"27442\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"95207\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"95207\", \"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\": \"27442\", \"menu_item_id\": \"latte-4593\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'll have a Latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please make everything is correct so the order can be made fresh at the coffee bar." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"Sweeter\", \"menu_item_id\":\"latte-4593\"}" }, { "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 kind of sweetener do you carry?" }, { "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\": \"27442\",\"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\":\"27442\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"95207\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"95207\", \"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\": \"27442\", \"menu_item_id\": \"latte-4593\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-011\", \"option\":\"ADD\"}]}]}" } ], "index": 4, "segments": [], "speaker": "user", "text": "Can you add vanilla to my latte?" }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Yes, please confirm your order." }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"95207\"}" }, { "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's good." }, { "annotations": [], "index": 7, "segments": [], "speaker": "assistant", "text": "OK, you can pick up your order over at the coffee bar in a few minutes." } ]
dlg-65b8d11f-6d5d-434c-8470-0983b5cc2a18
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\": \"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-9283\",\"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-9283\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"31345\",\"order_item_id\":\"16648\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"31345\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"31345\", \"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\": \"16648\", \"menu_item_id\": \"matcha-latte-9283\", \"menu_item_name\": \"Matcha Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I please get a Matcha Latte?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Does everything look okay here?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"31345\"}" }, { "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": "Perfect, thanks for confirming. Your order will be ready shortly at the bar." } ]
dlg-9e16aed4-d93f-4fdc-b9fd-3c54642e49e7
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\": \"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-4892\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"chocolate sauce\", \"menu_item_id\": \"latte-4892\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-5822\", \"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-4892\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-5822\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"65907\",\"order_item_id\":\"12287\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"65907\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"65907\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"12287\", \"menu_item_id\": \"latte-4892\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"chocolate-sauce-5822\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "One chocolate flavored latte please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Alright, please look at the screen and confirm that we have your order correct." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"65907\"}" }, { "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": "Great. Please head to the coffee bar to pick up your order." } ]
dlg-b4f80f81-cad0-4da0-a0a7-98c275c20c1a
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\": \"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-2999\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-2999\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"58485\",\"order_item_id\":\"17858\"}" }, { "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\": \"58485\", \"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\": \"58485\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"58485\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"58485\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"17858\", \"menu_item_id\": \"mocha-2999\", \"menu_item_name\": \"Mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'll get a mocha to go since I'm in a rush." }, { "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\": \"58485\"}" }, { "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." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great. I'll hurry and get that out to you at the coffee bar." } ]
dlg-de3f49ad-21f6-43b5-baca-f452b38a15ee
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-2934\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-2934\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"35613\",\"order_item_id\":\"83229\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"35613\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"35613\", \"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\": \"83229\", \"menu_item_id\": \"latte-2934\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello. One latte please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "You got it. Before I shoot this over could you please confirm that what you see here is what you ordered." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"35613\"}" }, { "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": "One latte. Yes, that's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, thanks. We'll have it ready at the coffee bar for you. Give us a couple of seconds." } ]
dlg-85dfcff7-6584-47af-85c1-8d3d843dd59e
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\": \"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-0045\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Vanilla Sweetener\", \"menu_item_id\": \"latte-0045\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetner-023\", \"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-0045\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetner-023\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"73629\",\"order_item_id\":\"46732\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"73629\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"73629\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"46732\", \"menu_item_id\": \"latte-0045\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetner-023\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order a latte, but I would like it be decaffeinated, with ice, and non-fat milk, and vanilla syrup please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this order correct? Please let me know if you want me to change anything before I send the order to the coffee bar." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"73629\"}" }, { "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, The order is correct" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great I have confirmed your order and it will be ready shortly. Thank you for being a loyal customer" } ]
dlg-8fe9078e-a771-4224-b377-21a8e1bece00
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-0930\",\"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-0930\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"47144\",\"order_item_id\":\"64788\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"47144\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"47144\", \"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\": \"64788\", \"menu_item_id\": \"chai-latte-0930\", \"menu_item_name\": \"chai latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like a chai latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please check if the order is correct on the display." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"47144\"}" }, { "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 please wait at the bar." } ]
dlg-962f9ee6-a6dd-461a-bb73-25123b1b420b
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\": \"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-2455\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"macchiato-2455\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"51962\",\"order_item_id\":\"39905\"}" }, { "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\": \"51962\", \"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\": \"51962\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"51962\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"51962\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"six of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"39905\", \"menu_item_id\": \"macchiato-2455\", \"menu_item_name\": \"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "A macchiato 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\": \"51962\"}" }, { "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": "Its right." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay - your order will be at the coffee bar shortly as its now sent to be made. Thanks." } ]
dlg-82408e41-0d16-4462-bd39-1ff2dcf99d5d
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": "What kind of food pairs well with a Cortado?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Something slightly sweet and buttery works well." } ]
dlg-9ebf3680-e8a2-4193-9756-f6f2dbeeeb54
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-4455\",\"name\":\"Americano\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Vanilla Sweetener\", \"menu_item_id\": \"americano-4455\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetener-003\", \"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\": \"americano-4455\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-003\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"74992\",\"order_item_id\":\"51728\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"74992\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"74992\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"51728\", \"menu_item_id\": \"americano-4455\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-003\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like an Americano with the vanilla added" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is your order correct" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"74992\"}" }, { "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 perfect" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Your order will be up in a few minutes." } ]
dlg-00fddf42-8e22-4c0c-9961-9cd9dd9fd8bd
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-2094\",\"name\":\"Cortado\"}]}" }, { "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\":\"cortado-2094\"}" }, { "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-2094\",\"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\": \"46626\",\"order_item_id\":\"39271\"}" }, { "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\": \"46626\", \"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\": \"46626\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"46626\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"46626\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"royal flush\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"39271\", \"menu_item_id\": \"cortado-2094\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I want a Double Cortado with Almond milk 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_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"46626\"}" }, { "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's all good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. Your order will be ready soon by the coffee bar." } ]
dlg-3a03ef7a-64d4-4094-a1b0-2dfb6a3add87
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-1941\",\"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-1941\"}" }, { "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-1941\",\"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\": \"42210\",\"order_item_id\":\"83886\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"42210\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"42210\", \"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\": \"83886\", \"menu_item_id\": \"espresso-1941\", \"menu_item_name\": \"espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey can I get a double espresso?" }, { "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\": \"42210\"}" }, { "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. It'll be out soon at the bar." } ]
dlg-48bb9412-32aa-40a4-80b1-ed0f098b2687
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-2134\",\"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-2134\"}" }, { "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-2134\",\"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\": \"89540\",\"order_item_id\":\"79501\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"89540\",\"order_id\": \"89540\", \"menu_item_id\": \"latte-2134\",\"quantity\": \"1\"}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"89540\",\"order_item_id\":\"24761\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"89540\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"89540\", \"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\": \"79501\", \"menu_item_id\": \"latte-2134\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"24761\", \"menu_item_id\": \"latte-2134\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I want two Latte's please. One decaf and one not decaf." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Does your order look correct?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"89540\"}" }, { "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's correct" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay please go to the coffee bar . Your order will be ready there." } ]
dlg-42c0aa80-f118-45e7-995e-f9235309271c
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": "Do you have any kind of espresso drinks?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes we do! We have a large variety of drinks including latte, mocha, cappuccino, americano, iced coffee, among others. Please check out the menu and let me know what you would like." } ]
dlg-fca9b9f2-cdf6-48ea-a43b-c0d2971df740
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\": \"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-4949\",\"name\":\"cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk OR 2% milk\", \"menu_item_id\":\"cortado-4949\"}" }, { "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-4949\",\"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\": \"79828\",\"order_item_id\":\"98011\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"79828\",\"menu_item_id\": \"cortado-4949\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"79828\",\"order_item_id\":\"38434\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"79828\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"79828\", \"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\": \"98011\", \"menu_item_id\": \"cortado-4949\", \"menu_item_name\": \"cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]},{\"order_item_id\": \"38434\", \"menu_item_id\": \"cortado-4949\", \"menu_item_name\": \"cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I please get two cortados? One with oat milk and one with 2% milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "NO problem. Could you please take a look at the screen and confirm that it is correct?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"79828\"}" }, { "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, your order should be up at the coffee bar shortly. Thank you!" } ]
dlg-1db6d68c-fca3-490c-8a21-53ec25a52ab8
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\": \"cappuccino \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-1341\",\"name\":\"cortado\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hello! Can I please have a large cappuccino?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Unfortunately we don't have cappuccinos on our menu. Did you mean a cortado?" } ]
dlg-3b878da5-c502-49dc-805c-b31b3d23b9d8
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-8799\",\"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-8799\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"82856\",\"order_item_id\":\"27197\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"82856\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"82856\", \"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\": \"27197\", \"menu_item_id\": \"chai-latte-8799\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I would like to order a chai latte, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok, is everything correct on the order screen below?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"82856\"}" }, { "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, perfect, thanks." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, your order will be ready in a moment." } ]
dlg-384eae1d-1fbe-4d9f-8d17-c831f9b92a31
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\": \"Tangerine Rooibos\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"tangerine-rooibos-3186\",\"name\":\"Tangerine Rooibos\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"tangerine-rooibos-3186\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"47391\",\"order_item_id\":\"63264\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"47391\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"47391\", \"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\": \"63264\", \"menu_item_id\": \"tangerine-rooibos-3186\", \"menu_item_name\": \"Tangerine Rooibos\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey, I want a Tangerine Rooibos tea, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this the correct tea you ordered?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"47391\"}" }, { "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, that's one Tangerine Rooibos tea. It will be made shortly at the coffee bar." } ]
dlg-93134521-dbb4-41e7-989d-2317fb15547e
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\": \"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-9834\",\"name\":\"Cortado \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk\", \"menu_item_id\":\"cortado-9834\"}" }, { "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-9834\",\"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\": \"70117\",\"order_item_id\":\"98058\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"70117\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"70117\", \"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\": \"98058\", \"menu_item_id\": \"cortado-9834\", \"menu_item_name\": \"Cortado \", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a Cortado with oat milk" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes, would you please review your order on the screen" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"70117\"}" }, { "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, looks right" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thanks, give us just a few minutes" } ]
dlg-eac78a50-e7ba-4bf5-8a65-99ec5ec8567b
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": "Quick trivia question: Who was the seventeenth President of the United States?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I can't help with my friend, do you want anything to drink?" } ]
dlg-cfd32a9d-6445-47c4-953c-50dc3a04ea3e
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\": \"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-5795\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Vanilla Sweetner\", \"menu_item_id\": \"cappuccino-5795\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetner-696\", \"name\": \"Vanilla Sweetner\", \"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-5795\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetner-696\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"49366\",\"order_item_id\":\"20491\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"49366\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"49366\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"20491\", \"menu_item_id\": \"cappuccino-5795\", \"menu_item_name\": \"Cappuccino\", \"addons\": [{\"addon_id\": \"vanilla-sweetner-696\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a vanilla Cappuccino?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is your order correct on the screen?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"49366\"}" }, { "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 correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, your order will be ready soon." } ]
dlg-e1953c36-2222-48da-ad78-d6630e010cf0
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\": \"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-4481\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% milk OR Chocolate Sauce\", \"menu_item_id\": \"macchiato-4481\"}" }, { "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\": \"chocolate-sauce-338\", \"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\": \"macchiato-4481\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-338\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"20722\",\"order_item_id\":\"55530\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"20722\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"20722\", \"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\": \"55530\", \"menu_item_id\": \"macchiato-4481\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"chocolate-sauce-338\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a 2% Macchiato and add in Chocolate?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this order right?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"20722\"}" }, { "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": "Alright, your drink will be up in a minute." } ]
dlg-dc1082aa-7bb8-46fa-9d4c-a4a8c36c0f8f
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-3434\",\"name\":\"latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-3434\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"87388\",\"order_item_id\":\"74855\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"87388\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"87388\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of hearts\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"74855\", \"menu_item_id\": \"latte-3434\", \"menu_item_name\": \"latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like two lattes please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"87388\"}" }, { "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": "Your order will be up in a minute at the coffee bar." } ]
dlg-63aa3e08-2780-4eba-ac20-d78004b3924f
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-4328\",\"name\":\"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like a mocha please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "sorry, no mochas here, did you mean 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. what kind of tea do you have?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "we have a variety of tea options including black, herbal, and oolong. check out the menu for the full list." } ]
dlg-309c4311-c85b-41a9-b82e-d16d84f05825
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\":\"77041\",\"name\":\"Chamomile\"}, {\"menu_item_id\":\"77976\",\"name\":\"Hibiscus\"}, {\"menu_item_id\":\"13632\",\"name\":\"Ginger\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, what kind of herbal tea do you guys have?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "we have chamomile, Hibiscus and Ginger herbal teas" } ]
dlg-bc36481c-968c-49ac-bb21-61f6c492ea11
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-1030\",\"name\":\"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a mocha please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I don't see mocha on the menu. Did you mean macchiato?" } ]
dlg-b008cb30-7712-428e-ab3c-1dd9000af09a
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\": \"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-3489\",\"name\":\"macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk OR non-fat milk\", \"menu_item_id\":\"macchiato-3489\"}" }, { "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-3489\",\"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\": \"18165\",\"order_item_id\":\"53309\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"18165\",\"menu_item_id\": \"macchiato-3489\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"non-fat Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"18165\",\"order_item_id\":\"23242\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"18165\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"18165\", \"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\": \"53309\", \"menu_item_id\": \"macchiato-3489\", \"menu_item_name\": \"macchiato\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]},{\"order_item_id\": \"23242\", \"menu_item_id\": \"macchiato-3489\", \"menu_item_name\": \"macchiato\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"non-fat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get one macchiato with oat milk and another one with non-fat milk?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you confirm if the order on the screen is accurate?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"18165\"}" }, { "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 they are" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, your order will be ready at the coffee bar soon" } ]
dlg-7c520a26-f81c-4239-b6cb-ccbc3c30360f
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\": \"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-4921\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Almond milk OR Non-Fat milk\", \"menu_item_id\":\"latte-4921\"}" }, { "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\": \"latte-4921\",\"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\": \"52071\",\"order_item_id\":\"85635\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"52071\",\"menu_item_id\": \"latte-4921\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"52071\",\"order_item_id\":\"76012\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"52071\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"52071\", \"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\": \"85635\", \"menu_item_id\": \"latte-4921\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"76012\", \"menu_item_id\": \"latte-4921\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get two lattes, one with almond milk and one non-fat milk?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes, can I just have you check whether your order is correct first?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"52071\"}" }, { "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": "Yeah, it looks good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great. I'll have your order out for you at the coffee bar in just a few." } ]
dlg-4d853c0d-93c9-4ee8-a0cf-51327f691795
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\": \"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-9327\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Iced OR Non-Fat milk OR Sugar-Free Vanilla Sweetener\", \"menu_item_id\":\"macchiato-9327\"}" }, { "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\":[\"Iced\",\"Hot\"]},{\"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\": \"sugar-free-vanilla-sweetener-530\", \"name\": \"Sugar-Free 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\": \"macchiato-9327\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-530\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"38983\",\"order_item_id\":\"47723\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"38983\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"38983\", \"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\": \"47723\", \"menu_item_id\": \"macchiato-9327\", \"menu_item_name\": \"Macchiato\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-530\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I want an Iced Vanilla Macchiato made with Non-Fat milk. And, please use the Sugar-Free Vanilla." }, { "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\": \"38983\"}" }, { "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": "Looks good!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thank you, it will be read at the coffee bar soon." } ]
dlg-44c36991-b57a-4070-9549-b4e05a5305bb
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": "Hello and good morning." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Good morning! 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": "What kinds of milk do you have?" } ]
dlg-9d9b1001-a3b2-4f0d-90bf-8524199d9e28
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\": \"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-098\",\"name\":\"Mocha \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk\", \"menu_item_id\":\"mocha-098\"}" }, { "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-098\",\"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\": \"34714\",\"order_item_id\":\"50856\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"34714\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"34714\", \"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\": \"50856\", \"menu_item_id\": \"mocha-098\", \"menu_item_name\": \"Mocha \", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get place an order for an Oat milk Mocha?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you make sure this is the right order before I 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\": \"34714\"}" }, { "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 in a few at the Coffee bar." } ]
dlg-a92428bf-59fb-4aab-9b4d-3424034798e5
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-7878\",\"name\":\"americano\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Vanilla Sweetener\", \"menu_item_id\": \"americano-7878\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetener-128\", \"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\": \"americano-7878\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-128\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"41891\",\"order_item_id\":\"54881\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"41891\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"41891\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"54881\", \"menu_item_id\": \"americano-7878\", \"menu_item_name\": \"americano\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-128\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get an americano with vanilla?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure. Does your order look okay?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"41891\"}" }, { "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": "Looks good to me." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Cool. I will have that right out for you." } ]
dlg-d29c73d1-5e18-4ea8-9979-55867ed563e5
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\": \"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-2456\",\"name\":\"Cappuccino \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf\", \"menu_item_id\":\"cappuccino-2456\"}" }, { "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\": \"cappuccino-2456\",\"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\": \"13743\",\"order_item_id\":\"79674\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"13743\",\"order_id\": \"13743\", \"menu_item_id\": \"cappuccino-2456\",\"quantity\": \"1\"}" }, { "context": "api_response_3", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"13743\",\"order_item_id\":\"68608\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"13743\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"13743\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"poker\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"79674\", \"menu_item_id\": \"cappuccino-2456\", \"menu_item_name\": \"Cappuccino \", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"68608\", \"menu_item_id\": \"cappuccino-2456\", \"menu_item_name\": \"Cappuccino \", \"quantity\": \"1\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like two cappuccinos, one should be decaffeinated and the other isn't" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, please make sure the order is right" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"13743\"}" }, { "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 looks good" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, your order is going to be out soon" } ]
dlg-5d24f44d-8de9-4977-8bf9-e499634c6db8
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-0034\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"mocha-0034\"}" }, { "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-0034\",\"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\": \"12422\",\"order_item_id\":\"72390\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"12422\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"12422\", \"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\": \"72390\", \"menu_item_id\": \"mocha-0034\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a decaffeinated Mocha please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay is this the correct item?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"12422\"}" }, { "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 it will be ready shortly." } ]
dlg-20b945d7-026d-4518-b778-b76a6f889dd5
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-4444\",\"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-4444\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-111\", \"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-4444\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-111\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"73870\",\"order_item_id\":\"77838\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"73870\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"73870\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"77838\", \"menu_item_id\": \"americano-4444\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"chocolate-sauce-111\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like an Americano with chocolate." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please confirm your order details on the screen." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"73870\"}" }, { "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, correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, your drink will be ready soon." } ]
dlg-0f3eee51-485c-4637-a01e-d8d1bdc1296d
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\": \"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-2274\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR Caramel Sauce\", \"menu_item_id\": \"cappuccino-2274\"}" }, { "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\": \"caramel-sauce-729\", \"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\": \"cappuccino-2274\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-729\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"12132\",\"order_item_id\":\"37585\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"12132\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"12132\", \"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\": \"37585\", \"menu_item_id\": \"cappuccino-2274\", \"menu_item_name\": \"Cappuccino\", \"addons\": [{\"addon_id\": \"caramel-sauce-729\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to get a decaf Cappuccino with Caramel please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "If you would check to see if that's right before I send if off to be made." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"12132\"}" }, { "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's great you got everything." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay you can pick that up, probably in just a few minute, at the coffee bar." } ]
dlg-4ae2fa6b-530d-407c-9351-50660e8268b4
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\":\"50997\",\"name\":\"chocolate\"}, {\"menu_item_id\":\"77449\",\"name\":\"stevia\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Do you carry any sweeteners?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes, we have chocolate and stevia available." } ]
dlg-3ec1e8a4-9a31-448b-bed0-82826095fc7d
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\": \"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-9934\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"macchiato-9934\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"80732\",\"order_item_id\":\"47195\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"80732\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"80732\", \"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\": \"47195\", \"menu_item_id\": \"macchiato-9934\", \"menu_item_name\": \"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Good morning, I was looking to order a Macchiato." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sounds great, can you just confirm for me that the order is showing correctly on the screen?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"80732\"}" }, { "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": "Everything is looking find there." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Awesome glad to hear it, your order will be ready for you shortly at the coffee bar." } ]
dlg-38ab8548-ac0f-4efd-a4c7-fd2ac83e3375
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\": \"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-2020\",\"name\":\"mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-2020\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"85916\",\"order_item_id\":\"44329\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"85916\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"85916\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"nine of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"44329\", \"menu_item_id\": \"mocha-2020\", \"menu_item_name\": \"mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a mocha." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please confirm 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\": \"85916\"}" }, { "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": "Great, your order will ready soon at the coffee bar." } ]
dlg-c933fea0-1960-4c0c-b583-9f28094f47aa
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-3244\",\"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 Hazelnut\", \"menu_item_id\":\"latte-3244\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"attributes\": [{\"attribute_id\": \"hot\", \"attribute_name\": \"hot\", \"options\":[\"Iced\",\"Hot\"]},{\"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-sweetner-345\", \"name\": \"Hazelnut\", \"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-3244\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetner-345\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"19207\",\"order_item_id\":\"21998\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"19207\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"19207\", \"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\": \"21998\", \"menu_item_id\": \"latte-3244\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"hot\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetner-345\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like an iced hazelnut latte with oat milk 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\": \"19207\"}" }, { "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, you can pick up your order from the bar shortly." } ]
dlg-c00ea917-fbd8-46db-a077-4f3de95f54c2
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\": \"Cappuccino \"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-2590\",\"name\":\"Cortado \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a Cappuccino" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I am sorry, we don't have that on the menu. Did you want a Cortado instead?" } ]
dlg-14848fd2-273e-4984-a4a7-c31f0f2a5f52
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-6721\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat Milk OR extra oat milk on the side with chocolate whipped cream on the extra milk\", \"menu_item_id\":\"mocha-6721\"}" }, { "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-6721\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"notes\": \"extra oat milk on the side with chocolate whipped cream on the extra milk\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"51313\",\"order_item_id\":\"12691\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"51313\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"51313\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"jack of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"12691\", \"menu_item_id\": \"mocha-6721\", \"menu_item_name\": \"Mocha\", \"notes\": \"extra oat milk on the side with chocolate whipped cream on the extra milk\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to get a Mocha using Oat milk, and, this may seem a little strange, can I get extra Oat milk on the side with chocolate whipped cream on the extra milk?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "If you would check and see if I got all that right I can send it over to be prepared." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"51313\"}" }, { "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": "Wow, yeah, you got it all." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay then, you can pick it up over at the coffee bar when they have it ready, which shouldn't be long." } ]
dlg-96472a7b-3c1f-4910-9aae-730ea8f6541e
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-3992\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"latte-3992\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"27647\",\"order_item_id\":\"53566\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"27647\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"27647\", \"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\": \"53566\", \"menu_item_id\": \"latte-3992\", \"menu_item_name\": \"Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I would like to order a latte for Rob please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok, is everything 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\":\"latte-3992\"}" }, { "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\": \"53566\",\"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\":\"53566\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"27647\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"27647\", \"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\": \"53566\", \"menu_item_id\": \"latte-3992\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No, it is not, since I want to change it to decaf,please." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok, now is everything right?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"27647\"}" }, { "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 correct." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Ok, great your order will be up soon." } ]
dlg-e42018b9-7797-4727-8270-fa0ce0f669a8
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\": \"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-1935\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat milk\", \"menu_item_id\":\"cappuccino-1935\"}" }, { "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-1935\",\"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\": \"38456\",\"order_item_id\":\"36057\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"38456\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"38456\", \"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\": \"36057\", \"menu_item_id\": \"cappuccino-1935\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a cappuccino that has oat milk in it please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK, does this order look all right to you?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"38456\"}" }, { "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": "OK, your order will be ready in just a bit over at the coffee bar." } ]
dlg-e81b2ff8-d9d6-4546-9778-45155498315f
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": "What type of technology is used to make the coffee at the coffee bar?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I do not have an answer for that question, but I can help you with ordering your coffee or tea." } ]
dlg-24e0211b-bb7f-4bdd-8108-4f03b74cd22f
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\": \"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-4444\",\"name\":\"chai latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"almond milk OR oat milk\", \"menu_item_id\":\"chai-latte-4444\"}" }, { "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\": \"chai-latte-4444\",\"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\": \"14381\",\"order_item_id\":\"58847\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"14381\",\"menu_item_id\": \"chai-latte-4444\",\"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\": \"14381\",\"order_item_id\":\"70636\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"14381\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"14381\", \"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\": \"58847\", \"menu_item_id\": \"chai-latte-4444\", \"menu_item_name\": \"chai latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}]},{\"order_item_id\": \"70636\", \"menu_item_id\": \"chai-latte-4444\", \"menu_item_name\": \"chai latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would life two chai lattes. One with almond milk and the other with oat." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is the order displayed correct?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"14381\"}" }, { "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, the order will be ready at the coffee bar soon." } ]
dlg-91e4f990-7abe-45e0-9b80-6e025f7fd9a5
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-2942\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Iced OR Non-Fat milk OR Chocolate Sauce\", \"menu_item_id\":\"latte-2942\"}" }, { "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\":[\"Iced\",\"Hot\"]},{\"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-291\", \"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-2942\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-291\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"98596\",\"order_item_id\":\"44703\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"98596\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"98596\", \"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\": \"44703\", \"menu_item_id\": \"latte-2942\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-291\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like an Iced Latte with Non-Fat milk and chocolate." }, { "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\": \"98596\"}" }, { "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 correct. I'm ready to send it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "I've sent your order and it will be ready in a few minutes." } ]
dlg-312e78b5-0022-463a-9467-1de12e062205
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\": \"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-4437\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Cinnamon on top\", \"menu_item_id\":\"cappuccino-4437\"}" }, { "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\": \"cappuccino-4437\",\"quantity\": \"1\", \"notes\": \"Cinnamon on top\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"96779\",\"order_item_id\":\"65587\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"96779\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"96779\", \"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\": \"65587\", \"menu_item_id\": \"cappuccino-4437\", \"menu_item_name\": \"Cappuccino\", \"notes\": \"Cinnamon on top\"}]}" } ], "index": 0, "segments": [ { "annotations": [ { "name": "request" } ], "annotator_id": "GENERATED", "end_index": "47", "start_index": "32", "text": "Cinnamon on top" } ], "speaker": "user", "text": "Hi, can I get a Cappuccino with Cinnamon on top, if you have it." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We do indeed! Can you please check to make sure that I have your order correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"96779\"}" }, { "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": "Looks right to me!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Alright. Your order will be available over at the coffee bar after it's been prepared!" } ]
dlg-4ac75b4d-cdae-4515-a690-e70df6a08786
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-3820\",\"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-3820\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"86438\",\"order_item_id\":\"98081\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"86438\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"86438\", \"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\": \"98081\", \"menu_item_id\": \"chai-latte-3820\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, can I get a chai latte?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Of course! Please confirm that your order is displayed correctly." }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"86438\"}" }, { "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, great. Your drink will be ready shortly." } ]
dlg-9312001f-7d91-407f-8d9b-8441b1cab5c5
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\": \"Cold Brew\", \"fields\": [\"description\"]}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\": [{\"description\": \"Our Cold Brew is made from coffee concentrate and ice (16 oz)\", \"menu_item_id\": \"cold-brew-1124\", \"name\": \"Cold Brew\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "What does a Cold Brew consist of?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Our Cold brew is 16 ounces of coffee that is concentrated." } ]
dlg-8ff54a16-32db-4fdb-b527-b878224587e6
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\": \"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-2354\",\"name\":\"Macchiato \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"macchiato-2354\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"63049\",\"order_item_id\":\"56041\"}" }, { "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\": \"63049\", \"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\": \"63049\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"63049\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"63049\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Ace of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"56041\", \"menu_item_id\": \"macchiato-2354\", \"menu_item_name\": \"Macchiato \"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. I’d like a macchiato 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\": \"63049\"}" }, { "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 is correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK sir. Your order will soon be ready at the coffee bar." } ]
dlg-a5e4e2c8-873e-4572-b411-3e1275b8ac7c
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\": \"Steamer\"}" }, { "context": "api_response_0", "name": "api_response", "value": "get_menu_items" }, { "context": "api_response_0", "name": "response", "value": "{\"menu_items\":[{\"menu_item_id\":\"steamer-7888\",\"name\":\"Steamer\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"steamer-7888\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"22625\",\"order_item_id\":\"20942\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"22625\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"22625\", \"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\": \"20942\", \"menu_item_id\": \"steamer-7888\", \"menu_item_name\": \"Steamer\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, can you get me a Steamer please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, can you confirm, this is your order right?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"22625\"}" }, { "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": "You bet, yep." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Ok great, I'll have your order ready at the coffee bar in a moment, meet me over there." } ]
dlg-08433c49-9e5c-4690-8567-1b90d42e547a
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 I please know what kinds of coffee you have?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes! We have latte, mocha, cappuccino, americano, iced coffee, and many more! Please refer to the menu!" } ]
dlg-dbf4d82a-58d6-47bb-91b1-fca43e741a50
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\": \"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-8796\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Caramel Sauce\", \"menu_item_id\": \"latte-8796\"}" }, { "context": "api_response_1", "name": "api_response", "value": "get_addons" }, { "context": "api_response_1", "name": "response", "value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-9799\", \"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-8796\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-9799\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"23452\",\"order_item_id\":\"52401\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"23452\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"23452\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"52401\", \"menu_item_id\": \"latte-8796\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"caramel-sauce-9799\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Gimme a Latte with Caramel." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "OK. Is everything here correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"23452\"}" }, { "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, it is." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. Your drink will be ready soon." } ]
dlg-46df7e5f-dc31-4a50-a751-e58ac4572108
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-8192\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"iced OR Oat milk OR Hazelnut\", \"menu_item_id\":\"mocha-8192\"}" }, { "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\": \"hazelnut-118\", \"name\": \"Hazelnut\", \"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-8192\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-118\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"55560\",\"order_item_id\":\"24263\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"55560\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"55560\", \"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\": \"24263\", \"menu_item_id\": \"mocha-8192\", \"menu_item_name\": \"Mocha\", \"addons\": [{\"addon_id\": \"hazelnut-118\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get an iced oat milk mocha with hazelnut 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\": \"55560\"}" }, { "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. Your order will be ready shortly. Have a Brew-tiful day!" } ]
dlg-ca5306c3-c141-46bb-9422-11737340e98f
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\": \"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-7753\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Almond milk\", \"menu_item_id\":\"cortado-7753\"}" }, { "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-7753\",\"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\": \"91905\",\"order_item_id\":\"26359\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"91905\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"91905\", \"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\": \"26359\", \"menu_item_id\": \"cortado-7753\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get an Almond Milk Cortado please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is your order right on the screen?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"91905\"}" }, { "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's an Almond Milk Cortado. It will be right up at the coffee bar. Thanks!" } ]
dlg-e7e24499-6e74-4b1e-beac-ad5aff34ba7f
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": "Howdy, I would like to order an Americano Coffee." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We don't offer that here. Would you like to order something else?" } ]
dlg-04edbfa2-834e-43c8-a7a7-c47f4b653f85
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\": \"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-5679\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR Caramel Sauce\", \"menu_item_id\": \"macchiato-5679\"}" }, { "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\": \"Caramel-Sauce-862\", \"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\": \"macchiato-5679\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"Caramel-Sauce-862\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"34146\",\"order_item_id\":\"41309\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"34146\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"34146\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"41309\", \"menu_item_id\": \"macchiato-5679\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"Caramel-Sauce-862\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi. I'd like a Macchiato, Decaf. Make it with a little simple syrup and a touch of caramel. Can you do that?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Let's see if I've got that. You can see on the screen what you ordered. Did I get it all?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"34146\"}" }, { "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 perfect!" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great! I'll have that up for you in just a moment. Can I get your name?" } ]
dlg-88464b93-3b7d-4a62-b55d-e89521c24921
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-1287\",\"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-1287\"}" }, { "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-1287\",\"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\": \"56391\",\"order_item_id\":\"50771\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"56391\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"56391\", \"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\": \"50771\", \"menu_item_id\": \"macchiato-1287\", \"menu_item_name\": \"Macchiato \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a decaf macchiato" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Yes, can you please make sure it is right on the screen in front of you before we start making it" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"56391\"}" }, { "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, looks correct" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "It will be ready shortly, thanks" } ]
dlg-c37bae1b-8ec5-48fa-807b-0a29e04096f4
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\": \"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-3492\",\"name\":\"Chai Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2%\", \"menu_item_id\":\"chai-latte-3492\"}" }, { "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\": \"chai-latte-3492\",\"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\": \"66737\",\"order_item_id\":\"28087\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"66737\",\"menu_item_id\": \"latte-4823\",\"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\": \"66737\",\"order_item_id\":\"92222\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"66737\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"66737\", \"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\": \"28087\", \"menu_item_id\": \"chai-latte-3492\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"92222\", \"menu_item_id\": \"latte-4823\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like a 2% Milk Chai Latte, and I'd also like a regular Latte with Oat milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Alright, here's your order for you. If that looks correct, I'll have that made over at the coffee bar." }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"66737\"}" }, { "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, looks good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, that coffee will be ready for you over at the coffee bar in a few moments." } ]
dlg-29b179e5-7da8-4bf0-8254-2a31452028a8
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-8442\",\"name\":\"Cappuccino\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cappuccino-8442\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"23966\",\"order_item_id\":\"98498\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"23966\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"23966\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of spades\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"98498\", \"menu_item_id\": \"cappuccino-8442\", \"menu_item_name\": \"Cappuccino\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like to get two Cappuccinos, please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this the order you want to place?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"23966\"}" }, { "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": "Yeah, that's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, that order will be at the coffee bar for you in a short while." } ]
dlg-8a84df3c-ea54-4e2a-978a-fe3b7e815740
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-2323\",\"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-2323\"}" }, { "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-234\", \"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-2323\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-234\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"42713\",\"order_item_id\":\"94388\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"42713\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"42713\", \"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\": \"94388\", \"menu_item_id\": \"mocha-2323\", \"menu_item_name\": \"mocha\", \"addons\": [{\"addon_id\": \"caramel-sauce-234\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like an iced mocha with almond milk and caramel 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\": \"42713\"}" }, { "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-078bd659-2b09-41a0-ab6c-679b93da58e4
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": "Oh my god, have you been watching The Last of Us? It's getting so good! This may be my favorite TV show in years." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "I can't say that I have. I see it is getting a lot of good reviews though. Can I get you any coffee or tea?" } ]
dlg-a12bc752-138f-42d9-9531-80f546087930
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\": \"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-3595\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% milk OR Oat milk\", \"menu_item_id\":\"latte-3595\"}" }, { "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\": \"latte-3595\",\"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\": \"72505\",\"order_item_id\":\"13364\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"72505\",\"menu_item_id\": \"latte-3595\",\"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\": \"72505\",\"order_item_id\":\"80278\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"72505\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"72505\", \"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\": \"13364\", \"menu_item_id\": \"latte-3595\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"80278\", \"menu_item_id\": \"latte-3595\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order two Latte please, one using 2% milk and the other using Oat milk." }, { "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\": \"72505\"}" }, { "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 order will be ready at the coffee bar soon." } ]
dlg-9a319002-2038-4257-8d21-2b40b6663fc2
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\": \"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-0912\",\"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-0912\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"66768\",\"order_item_id\":\"14082\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"66768\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"66768\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of hearts\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14082\", \"menu_item_id\": \"chai-latte-0912\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, I would like to order the chai latte." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Ok, is everything correct on the screen?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"66768\"}" }, { "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, great your order will be ready soon." } ]
dlg-ac711a7e-306a-4c4b-94ac-d5c6db7b1b0c
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-9410\",\"name\":\"cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk OR Caramel Sauce\", \"menu_item_id\": \"cortado-9410\"}" }, { "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-091\", \"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\": \"cortado-9410\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-091\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"82324\",\"order_item_id\":\"36312\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"82324\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"82324\", \"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\": \"36312\", \"menu_item_id\": \"cortado-9410\", \"menu_item_name\": \"cortado\", \"addons\": [{\"addon_id\": \"caramel-sauce-091\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi I'd like an oat caramel cortado." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please check that the order is correct before it's sent." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"82324\"}" }, { "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 it's good." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thanks. It'll be out shortly." } ]
dlg-fa208100-8d1d-451e-8ca5-c4547c900915
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-3256\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Non-fat milk OR Hazelnut Sweetener\", \"menu_item_id\": \"latte-3256\"}" }, { "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-472\", \"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-3256\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-472\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"16998\",\"order_item_id\":\"20516\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"16998\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"16998\", \"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\": \"20516\", \"menu_item_id\": \"latte-3256\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-472\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like a short hazelnut latte with non-fat milk." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please confirm the screen is correct." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"16998\"}" }, { "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 is correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Alright, your order will be ready shortly." } ]
dlg-d23b9a83-c0c0-414f-8647-565ccb389bae
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-4939\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cortado-4939\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"98157\",\"order_item_id\":\"26414\"}" }, { "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\": \"98157\", \"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\": \"98157\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"98157\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"98157\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"royal flush\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"26414\", \"menu_item_id\": \"cortado-4939\", \"menu_item_name\": \"Cortado\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I want a Cortado 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\": \"98157\"}" }, { "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's it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK. Your drink will be sent to the coffee bar." } ]
dlg-19b48a44-a4b6-436f-8bd8-42ceb2e68e86
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\": \"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-8595\",\"name\":\"Cappuccino \"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Almond milk OR Oat milk\", \"menu_item_id\":\"cappuccino-8595\"}" }, { "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\": \"cappuccino-8595\",\"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\": \"48460\",\"order_item_id\":\"18500\"}" }, { "context": "api_call_3", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"48460\",\"menu_item_id\": \"cappuccino-8595\",\"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\": \"48460\",\"order_item_id\":\"99731\"}" }, { "context": "api_call_4", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"48460\"}" }, { "context": "api_response_4", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_4", "name": "response", "value": "{\"order_id\": \"48460\", \"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\": \"18500\", \"menu_item_id\": \"cappuccino-8595\", \"menu_item_name\": \"Cappuccino \", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"99731\", \"menu_item_id\": \"cappuccino-8595\", \"menu_item_name\": \"Cappuccino \", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I have two Cappuccinos? And make one with Almond milk and the other with oat." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure. Before I send this over, is what you see here correct?" }, { "annotations": [ { "context": "api_call_5", "name": "api_call", "value": "finish_order" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"48460\"}" }, { "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. You got it." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "OK, thanks. The coffee bar will have your order ready in a minute." } ]
dlg-693d4754-a2a4-4eec-86f5-5be18a550356
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-7745\",\"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-7745\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"34046\",\"order_item_id\":\"87298\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"34046\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"34046\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"8 of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"87298\", \"menu_item_id\": \"matcha-latte-7745\", \"menu_item_name\": \"Matcha Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a matcha latte please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Could you confirm your order please?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"34046\"}" }, { "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": "Sure that's correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay I'll make that for you right now." } ]
dlg-415e8288-f3da-4c52-ad09-13586e2fbdb9
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-0415\",\"name\":\"Latte\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Decaf OR Oat milk OR Hazelnut\", \"menu_item_id\":\"latte-0415\"}" }, { "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-1020\", \"name\": \"Hazelnut\", \"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-0415\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-1020\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"26258\",\"order_item_id\":\"23217\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"26258\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"26258\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"8 of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"23217\", \"menu_item_id\": \"latte-0415\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-1020\", \"option\":\"ADD\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, how are you? I'd like a decaf latte. Please use hazelnut and Oat milk while you make it." }, { "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\": \"26258\"}" }, { "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": "Absolutely" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Wait a bit and the order will be ready shortly at the coffee bar. Thanks for ordering with us." } ]
dlg-123bfcd1-e53a-4f9c-88e7-2bfa4018db8e
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-0442\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Oat Milk OR extra foam\", \"menu_item_id\":\"mocha-0442\"}" }, { "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-0442\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"notes\": \"extra foam\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"54669\",\"order_item_id\":\"99508\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"54669\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"54669\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Queen of Spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"99508\", \"menu_item_id\": \"mocha-0442\", \"menu_item_name\": \"Mocha\", \"notes\": \"extra foam\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey, can I get an Oat milk mocha with extra foam?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Okay, one oat milk mocha with extra foam?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"54669\"}" }, { "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 perfect." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, that'll be ready on the bar for you soon!" } ]
dlg-a4be4bb1-97a1-4139-a879-661e3095178e
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\": \"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-5724\",\"name\":\"Macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"macchiato-5724\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"80436\",\"order_item_id\":\"14497\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"80436\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"80436\", \"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\": \"14497\", \"menu_item_id\": \"macchiato-5724\", \"menu_item_name\": \"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Yeah I'd like a macchiato please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Is this correct?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"80436\"}" }, { "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 thank you." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Okay, you can pick it up in a few minutes at the coffee bar." } ]
dlg-d8c8f832-4c84-4b78-914a-537e49cebece
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-5022\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"Whole Milk OR room temperature\", \"menu_item_id\":\"mocha-5022\"}" }, { "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-5022\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}], \"notes\": \"room temperature\"}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"23396\",\"order_item_id\":\"56203\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"23396\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"23396\", \"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\": \"56203\", \"menu_item_id\": \"mocha-5022\", \"menu_item_name\": \"Mocha\", \"notes\": \"room temperature\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Can I get a Mocha with whole milk, and I don't want it hot, more like room temperature." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you make sure everything for the order is correct?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"23396\"}" }, { "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, your order will be at the coffee bar shortly." } ]
dlg-6479b1f6-9606-49da-b6fd-d1bba52c63af
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-0923\",\"name\":\"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I would like to order a Mocha drink please" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "We do not have mocha on the menu, but did you want to try the Macchiato instead?" } ]
dlg-9e50b4df-0c16-4485-a048-0f35740c6f3e
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\": \"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-3644\",\"name\":\"cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"cortado-3644\",\"quantity\": \"1\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"94842\",\"order_item_id\":\"64812\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"94842\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"94842\", \"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\": \"64812\", \"menu_item_id\": \"cortado-3644\", \"menu_item_name\": \"cortado\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Could I please order a cortado for Gail?" }, { "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": "get_addons" }, { "context": "api_call_3", "name": "request", "value": "{\"query\": \"decaf\", \"menu_item_id\":\"cortado-3644\"}" }, { "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\": \"64812\",\"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\":\"64812\"}" }, { "context": "api_call_5", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_5", "name": "request", "value": "{\"order_id\": \"94842\"}" }, { "context": "api_response_5", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_5", "name": "response", "value": "{\"order_id\": \"94842\", \"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\": \"64812\", \"menu_item_id\": \"cortado-3644\", \"menu_item_name\": \"cortado\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}" } ], "index": 2, "segments": [], "speaker": "user", "text": "No, actually can I get it decaf?" }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Yes, of course. Is the order correct on the screen?" }, { "annotations": [ { "context": "api_call_6", "name": "api_call", "value": "finish_order" }, { "context": "api_call_6", "name": "request", "value": "{\"order_id\": \"94842\"}" }, { "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, that's correct." }, { "annotations": [], "index": 5, "segments": [], "speaker": "assistant", "text": "Ok. We'll have your drink ready to go at the coffee bar soon." } ]
dlg-72d7a3a4-e9ee-46e8-886a-f14567cdf4cf
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-3653\",\"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-3653\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"39533\",\"order_item_id\":\"77149\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"39533\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"39533\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"seven of spades\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"77149\", \"menu_item_id\": \"chai latte-3653\", \"menu_item_name\": \"Chai Latte\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hi, could I get two Chai Lattes please?" }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Certainly, does everything look correct on the screen?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"39533\"}" }, { "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 does." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Awesome, your Chai Lattes will be up at the coffee bar soon." } ]
dlg-b9f6068a-f9ba-47d0-ae3c-d97e9701b035
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\": \"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-1011\",\"name\":\"macchiato\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"oat milk OR Chocolate Sauce\", \"menu_item_id\": \"macchiato-1011\"}" }, { "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\": \"chocolate-sauce-101\", \"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\": \"macchiato-1011\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-101\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"97546\",\"order_item_id\":\"69262\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"97546\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"97546\", \"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\": \"69262\", \"menu_item_id\": \"macchiato-1011\", \"menu_item_name\": \"macchiato\", \"addons\": [{\"addon_id\": \"chocolate-sauce-101\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey I want an oat milk chocolate macchiato please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Please confirm that your order is correct." }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"97546\"}" }, { "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 it's correct." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Thanks. Please wait for a bit." } ]
dlg-d7f2290f-4269-4bf8-8d8e-c94f6c82444b
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\": \"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-4242\",\"name\":\"Mocha\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "add_order_item" }, { "context": "api_call_1", "name": "request", "value": "{\"menu_item_id\": \"mocha-4242\",\"quantity\": \"2\"}" }, { "context": "api_response_1", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_1", "name": "response", "value": "{\"order_id\": \"49284\",\"order_item_id\":\"77972\"}" }, { "context": "api_call_2", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_2", "name": "request", "value": "{\"order_id\": \"49284\"}" }, { "context": "api_response_2", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"49284\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"royal flush\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"77972\", \"menu_item_id\": \"mocha-4242\", \"menu_item_name\": \"Mocha\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Let me get two Mochas." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Can you confirm the order before we send it in?" }, { "annotations": [ { "context": "api_call_3", "name": "api_call", "value": "finish_order" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"49284\"}" }, { "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": "OK. Your order will be ready soon by the coffee bar." } ]
dlg-e15785f9-af4f-4faf-88be-82f74a747891
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-9258\",\"name\":\"Cortado\"}]}" }, { "context": "api_call_1", "name": "api_call", "value": "get_addons" }, { "context": "api_call_1", "name": "request", "value": "{\"query\": \"2% Lactose-Free milk OR Vanilla Sweetener\", \"menu_item_id\": \"cortado-9258\"}" }, { "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-359\", \"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-9258\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-359\", \"option\":\"ADD\"}]}" }, { "context": "api_response_2", "name": "api_response", "value": "add_order_item" }, { "context": "api_response_2", "name": "response", "value": "{\"order_id\": \"51185\",\"order_item_id\":\"33349\"}" }, { "context": "api_call_3", "name": "api_call", "value": "get_order_details" }, { "context": "api_call_3", "name": "request", "value": "{\"order_id\": \"51185\"}" }, { "context": "api_response_3", "name": "api_response", "value": "get_order_details" }, { "context": "api_response_3", "name": "response", "value": "{\"order_id\": \"51185\", \"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\": \"33349\", \"menu_item_id\": \"cortado-9258\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-359\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "I'd like a Cortado with 2% Lactose-Free milk and Vanilla too please." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Sure, does this order look okay to your preference?" }, { "annotations": [ { "context": "api_call_4", "name": "api_call", "value": "finish_order" }, { "context": "api_call_4", "name": "request", "value": "{\"order_id\": \"51185\"}" }, { "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": "Yep, perfect." }, { "annotations": [], "index": 3, "segments": [], "speaker": "assistant", "text": "Great, your order will be right up." } ]
dlg-a264fab9-b7b4-4e23-8253-161540cc58ab
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-3786\",\"name\":\"Macchiato\"}]}" } ], "index": 0, "segments": [], "speaker": "user", "text": "Hey, I'd like to get a mocha." }, { "annotations": [], "index": 1, "segments": [], "speaker": "assistant", "text": "Unfortunately, Mocha is not on our menu. Do you mean a macchiato?" } ]