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." } ]

taskmaster 4 2024

Data from taskmaster 4 (source repo). Default config corresponds to 'data' folder.

@misc{sidahmed2024parameterefficientreinforcementlearning,
      title={Parameter Efficient Reinforcement Learning from Human Feedback}, 
      author={Hakim Sidahmed and Samrat Phatale and Alex Hutcheson and Zhuonan Lin and Zhang Chen and Zac Yu and Jarvis Jin and Simral Chaudhary and Roman Komarytsia and Christiane Ahlheim and Yonghao Zhu and Bowen Li and Saravanan Ganesh and Bill Byrne and Jessica Hoffmann and Hassan Mansoor and Wei Li and Abhinav Rastogi and Lucas Dixon},
      year={2024},
      eprint={2403.10704},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2403.10704}, 
}
Downloads last month
0