conversation_id
stringlengths 40
40
| vertical
stringclasses 1
value | scenario
stringclasses 32
values | instructions
stringclasses 28
values | utterances
listlengths 2
8
|
---|---|---|---|---|
dlg-60a19ebc-aa4a-4625-8ddd-6a50f077e9d6 | 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-1234\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Single OR Whole Milk\", \"menu_item_id\":\"cortado-1234\"}"
},
{
"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-1234\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"66726\",\"order_item_id\":\"33106\"}"
},
{
"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\": \"66726\", \"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\": \"66726\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"66726\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"66726\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"33106\", \"menu_item_id\": \"cortado-1234\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi. I want a single Cortado with whole 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\": \"66726\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, the order is correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. That's a single Cortado with whole milk to go. Your order will be ready in just a moment. Thank you."
}
] |
dlg-d0c07281-6161-4163-85cf-a5bd2515ab77 | Coffee | Auto template 29 Order two drinks differing by name and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE TWO DRINKS*
{{ENTER drink1 drink Enter a drink from the list above.}}
{{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}}
{{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]}
call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call get_menu_items request {"query": "var_drink2"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-5666\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2%\", \"menu_item_id\":\"mocha-5666\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-5666\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"15597\",\"order_item_id\":\"21370\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"15597\",\"menu_item_id\": \"cortado-7788\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"skim millk Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"15597\",\"order_item_id\":\"67969\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"15597\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"15597\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ace of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"21370\", \"menu_item_id\": \"mocha-5666\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"67969\", \"menu_item_id\": \"cortado-7788\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"skim millk Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I want to order two coffee's, a Mocha with 2% milk and Cortado with skim milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can I confirm that your order is correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"15597\"}"
},
{
"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": "OK your order will be ready soon by the coffee bar."
}
] |
dlg-c3916198-d12b-469b-84f6-9028be2cdb1d | 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-4545\",\"name\":\"latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk OR vanilla\", \"menu_item_id\": \"latte-4545\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-3434\", \"name\": \"vanilla\", \"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-4545\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-3434\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"95700\",\"order_item_id\":\"76714\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"95700\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"95700\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"76714\", \"menu_item_id\": \"latte-4545\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"vanilla-3434\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "i want a latte with 2% and vanilla please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "is this correct"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"95700\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes it is"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "okay it will be out shortly"
}
] |
dlg-fdbb4857-82c8-4400-b91b-bb8cf7fb308c | Coffee | Auto template 30 Notes after no relevant addons found | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*SPECIAL*
{{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3231\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"extra hot\", \"menu_item_id\":\"mocha-3231\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-3231\",\"quantity\": \"1\", \"notes\": \"extra hot\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"11995\",\"order_item_id\":\"99925\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"11995\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"11995\", \"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\": \"99925\", \"menu_item_id\": \"mocha-3231\", \"menu_item_name\": \"mocha\", \"notes\": \"extra hot\"}]}"
}
],
"index": 0,
"segments": [
{
"annotations": [
{
"name": "request"
}
],
"annotator_id": "GENERATED",
"end_index": "33",
"start_index": "24",
"text": "extra hot"
}
],
"speaker": "user",
"text": "I would like to order a extra hot mocha."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Will you confirm your order is correct before I send it to the coffee bar to be made?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"11995\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK and your order will be ready at the coffee bar shortly."
}
] |
dlg-3b3dddb8-6201-4bf3-bf6e-3d7f3b9d50b6 | 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\": \"Ginger Green Cold Steep Tea\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"ginger green cold steep tea-2689\",\"name\":\"Ginger Green Cold Steep Tea\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"ginger green cold steep tea-2689\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"79289\",\"order_item_id\":\"45157\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"79289\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"79289\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of hearts\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"45157\", \"menu_item_id\": \"ginger green cold steep tea-2689\", \"menu_item_name\": \"Ginger Green Cold Steep Tea\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll take a Ginger Green Cold Steep Tea."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Confirm this looks right for me and I'll get that to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"79289\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great that will be over at the coffee bar for you soon."
}
] |
dlg-46d8a4d4-3e8f-4b20-82f9-1e743d01e27b | Coffee | Auto template 7 order a DECAF coffee drink no other mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the coffee bar worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. )
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-4536\",\"name\":\"Mocha \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-4536\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-4536\",\"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\": \"22074\",\"order_item_id\":\"90494\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"22074\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"22074\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"poker\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"90494\", \"menu_item_id\": \"mocha-4536\", \"menu_item_name\": \"Mocha \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Is it at all possible to make a decaf mocha? Is there such a thing?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure. Does this order look right to you?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"22074\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's it."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great. Your order will be ready soon. Have a great day."
}
] |
dlg-a81bb2b8-3be2-47b6-b2b9-74a130cef44f | 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-3490\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat milk OR Caramel sauce\", \"menu_item_id\": \"latte-3490\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"caramel-sauce-3490\", \"name\": \"Caramel sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-3490\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-3490\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"76536\",\"order_item_id\":\"18202\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"76536\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"76536\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Ace of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"18202\", \"menu_item_id\": \"latte-3490\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"caramel-sauce-3490\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a latte with oat milk and caramel sauce."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok. Here is your order."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"76536\"}"
},
{
"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": "Your order will be ready shortly"
}
] |
dlg-b82401f1-93f8-4846-b5b3-e3122bec0b0a | Coffee | Auto template 22 notes based on initial order utterance - fixed | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER*
Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. )
{{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made).
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cartado-1243\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond Milk OR want the drink served room temperature \", \"menu_item_id\":\"cartado-1243\"}"
},
{
"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\": \"cartado-1243\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"notes\": \"want the drink served room temperature \"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"18427\",\"order_item_id\":\"73694\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"18427\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"18427\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"73694\", \"menu_item_id\": \"cartado-1243\", \"menu_item_name\": \"Cortado\", \"notes\": \"want the drink served room temperature \",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there! Can I get a Cortado with Almond milk. I would like it served room temperature please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, does everything look right on your screen? If so we'll get right on it."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"18427\"}"
},
{
"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": "Everything looks correct. Thanks!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Perfect. We'll have your order all done at the coffee bar in a jiffy."
}
] |
dlg-e2a55e27-c4b8-450f-b6c0-a2149bc26419 | Coffee | Auto template 7 order a DECAF coffee drink no other mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the coffee bar worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. )
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-0044\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"latte-0044\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-0044\",\"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\": \"50577\",\"order_item_id\":\"15563\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"50577\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"50577\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"6 of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"15563\", \"menu_item_id\": \"latte-0044\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a decaf latte here please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay is this correct on the screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"50577\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes that's it."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay I'll have that ready for you soon."
}
] |
dlg-0bb6b0e2-1aa2-4600-958f-ffc2e5000271 | Coffee | Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*Here or To go*
{{ENTER delivery delivery Enter either Here OR To go}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_addons request {"query": "var_delivery", "scope": "order"}
response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]}
call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] }
response update_order response {"order_id": "var_order_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you.
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2389\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Double OR Whole Milk\", \"menu_item_id\":\"mocha-2389\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-2389\",\"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\": \"93555\",\"order_item_id\":\"47414\"}"
},
{
"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\": \"93555\", \"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\": \"93555\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"93555\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"93555\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"47414\", \"menu_item_id\": \"mocha-2389\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a double shot Mocha with whole 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\": \"93555\"}"
},
{
"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": "That's exactly right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "This will be ready in just a couple of minutes at the coffee bar. Can I get your name, please?"
}
] |
dlg-9f433cdc-36a5-4fe4-88c8-6d6f066ab07b | 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\":\"chailatte-3842\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"chailatte-3842\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"72753\",\"order_item_id\":\"26229\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"72753\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"72753\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"26229\", \"menu_item_id\": \"chailatte-3842\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Chai Latte please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK, does this all look right before I send it off to be made?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"72753\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your order will be ready very quickly over at the coffee bar."
}
] |
dlg-2663cfd3-303e-4017-9b11-d9053db0be7e | Coffee | Auto template 27 Order two same drinks no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Customer orders *TWO* of these: var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2211\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-2211\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"18543\",\"order_item_id\":\"15789\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"18543\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"18543\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"eight of hearts\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"15789\", \"menu_item_id\": \"mocha-2211\", \"menu_item_name\": \"mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like two mochas."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the order correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"18543\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great, they will be ready soon for pick up."
}
] |
dlg-a85ff5aa-7d15-43bc-9815-eb1247a95e8d | 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\": \"Lavender Earl Grey\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"lavender-earl-grey-3001\",\"name\":\"Lavender Earl Grey\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"lavender-earl-grey-3001\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"36544\",\"order_item_id\":\"53364\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"36544\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"36544\", \"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\": \"53364\", \"menu_item_id\": \"lavender-earl-grey-3001\", \"menu_item_name\": \"Lavender Earl Grey\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I would like to order a lavender Earl grey tea, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, is everything right on the screen?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"36544\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, great your tea will be up shortly."
}
] |
dlg-cfd868d1-70cf-4543-81c3-91597b1c59fc | Coffee | Auto template 9 other beverages no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*OTHER BEVERAGES on the COFFEE BAR MENU*
{{LIST *Ginger Green Cold Steep Tea* (16 oz) (cold steeped tea + ice),*Matcha Latte* (12 oz) (matcha concentrate + milk + microfoam), *Chai Latte* (12 oz) (chai concentrate + milk + microfoam),Hot Chocolate (12 oz) (chocolate + milk + microfoam),Steamer (12 oz) (steamed milk + microfoam),Americano (10 oz) (espresso + hot water),Cold Brew (16 oz) (coffee concentrate + ice)}}
*CHOOSE YOUR BEVERAGE*
{{ENTER drink drink Enter one of the drinks from the list above. Say the phrase you think you'd actually use if you were ordering in a coffee/tea bar.}}
{{ENTER menu_item_id drink Now write the tea name that corresponds to your choice above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, if you say "Hot Chocolate" you would write "hot-chocolate-0291" (use your own number). NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"}, {"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Steamer\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"steamer-3456\",\"name\":\"Steamer\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"steamer-3456\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"82795\",\"order_item_id\":\"26893\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"82795\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"82795\", \"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\": \"26893\", \"menu_item_id\": \"steamer-3456\", \"menu_item_name\": \"Steamer\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a steamer please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, please check the display to make sure the order is right."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"82795\"}"
},
{
"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": "That's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great, your order will be ready at the coffee bear shortly."
}
] |
dlg-95e8fcfd-8d34-48e3-811d-5355aa27191c | 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-3984\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Chocolate Sauce\", \"menu_item_id\": \"americano-3984\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-938\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"americano-3984\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-938\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"85781\",\"order_item_id\":\"23754\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"85781\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"85781\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"23754\", \"menu_item_id\": \"americano-3984\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"chocolate-sauce-938\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Do you guys do chocolate Americanos? I'd like that."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I've entered it in, does everything look right before I send it to be made?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"85781\"}"
},
{
"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": "You've got it, spot-on!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Wonderful, you're order will be right up!"
}
] |
dlg-d6c178f8-0821-4a5f-9354-8b0c4563423f | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Matcha Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a matcha latte please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry. We don't have that on our menu. Can I get you something else instead?"
}
] |
dlg-477fbc4b-94b8-47f2-964f-8fce4c2efe77 | Coffee | Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*Here or To go*
{{ENTER delivery delivery Enter either Here OR To go}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_addons request {"query": "var_delivery", "scope": "order"}
response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]}
call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] }
response update_order response {"order_id": "var_order_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you.
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-4200\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Double OR Whole Milk\", \"menu_item_id\":\"mocha-4200\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-4200\",\"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\": \"52240\",\"order_item_id\":\"11595\"}"
},
{
"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\": \"52240\", \"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\": \"52240\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"52240\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"52240\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"11595\", \"menu_item_id\": \"mocha-4200\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello I would like to order a Double Mocha with Whole 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\": \"52240\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes that looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok well your order will be complete shortly."
}
] |
dlg-5f51af15-66e0-4b41-988c-4495b14ba4ac | Coffee | Auto template 4 order a coffee drink mod milk and sweetener | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-3488\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk OR Hazelnut sweetener\", \"menu_item_id\": \"cappuccino-3488\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-349\", \"name\": \"Hazelnut sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-3488\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-349\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"32008\",\"order_item_id\":\"95125\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"32008\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"32008\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Ace of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"95125\", \"menu_item_id\": \"cappuccino-3488\", \"menu_item_name\": \"Cappuccino\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-349\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a caramel cappuccino with almond milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm the order displayed is correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"32008\"}"
},
{
"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": "Okay, your order will be ready in just a few at the coffee bar"
}
] |
dlg-28c8d4a5-8c19-4134-913e-25edeb363ba9 | Coffee | Auto template 27 Order two same drinks no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Customer orders *TWO* of these: var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-7556\",\"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-7556\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"31885\",\"order_item_id\":\"73901\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"31885\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"31885\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Poker\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"73901\", \"menu_item_id\": \"chai-latte-7556\", \"menu_item_name\": \"Chai Latte \"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like to order two chai lattes please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is everything correct with your order?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"31885\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your order will be ready for you real soon."
}
] |
dlg-125640f4-97d3-46e7-8d09-79d576238bcc | 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 do you think of the new Artificial Intelligence technology, ChatGPT?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I am not really familiar with ChatGPT Artificial Intelligence, but I can help you decide what kind of coffee or tea to drink"
}
] |
dlg-53325596-a367-4138-83e7-a48432c51284 | Coffee | Auto template 28 Order two same drinks differing by milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* of these: var_drink. HOWEVER, for ONE of them you want var_milk1 milk while for the OTHER you want var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk1 milk OR var_milk2 milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-2311\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat milk OR 2% Lactose-Free milk\", \"menu_item_id\":\"chai-latte-2311\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"chai-latte-2311\",\"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\": \"22422\",\"order_item_id\":\"13267\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"22422\",\"menu_item_id\": \"chai-latte-2311\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"22422\",\"order_item_id\":\"99925\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"22422\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"22422\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"patience\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"13267\", \"menu_item_id\": \"chai-latte-2311\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"99925\", \"menu_item_id\": \"chai-latte-2311\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like two chai lattes, one should be oat milk and the other 2% lactose free."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, does the order look right?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"22422\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order is going to be ready soon"
}
] |
dlg-46897c39-aa81-44b6-ae54-98afd281474e | 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-1234\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"triple OR oat Milk\", \"menu_item_id\":\"cortado-1234\"}"
},
{
"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-1234\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"triple\"},{\"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\": \"84599\",\"order_item_id\":\"81814\"}"
},
{
"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\": \"84599\", \"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\": \"84599\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"84599\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"84599\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ace of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"to go\"}], \"menu_items\": [{\"order_item_id\": \"81814\", \"menu_item_id\": \"cortado-1234\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"triple\"},{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a triple cortado with oatmilk 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\": \"84599\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, please wait and it will be ready shortly."
}
] |
dlg-4f11a3b0-dd7d-43db-bece-d9174f94b894 | 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\": \"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-5281\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-5281\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"63656\",\"order_item_id\":\"43746\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"63656\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"63656\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"jack of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"43746\", \"menu_item_id\": \"cappuccino-5281\", \"menu_item_name\": \"Cappuccino\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "May I have a Cappuccino please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok. Please verify that your order is correct."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"sweetener\", \"menu_item_id\":\"cappuccino-5281\"}"
},
{
"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 type of sweetener do you have?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"43746\",\"addons\": [{\"addon_id\": \"013\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"43746\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"63656\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"63656\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"jack of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"43746\", \"menu_item_id\": \"cappuccino-5281\", \"menu_item_name\": \"Cappuccino\", \"addons\": [{\"addon_id\": \"013\", \"option\":\"ADD\"}]}]}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "OK, Can I have Hazelnut added please."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Please ensure that your order is correct"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"63656\"}"
},
{
"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 it is."
},
{
"annotations": [],
"index": 7,
"segments": [],
"speaker": "assistant",
"text": "Great. Your order will be ready in a short while at the bar."
}
] |
dlg-1228fdd6-6a3c-4695-bf81-23d9f2758896 | 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\": \"wild strawberry\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"wild-strawberry-4329\",\"name\":\"wild strawberry\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"wild-strawberry-4329\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"70626\",\"order_item_id\":\"88143\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"70626\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"70626\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"jack of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"88143\", \"menu_item_id\": \"wild-strawberry-4329\", \"menu_item_name\": \"wild strawberry\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a wild strawberry tea."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm your order details are correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"70626\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order will be up at the coffee bar in just a few minutes."
}
] |
dlg-7d744672-0f58-4b73-a5bb-814256db6795 | Coffee | Auto template 17 do you have x NO | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and you're about ready to order:
*NOT ON MENU*
{{ENTER category category Think of something you would NEVER expect to be served at a strictly coffee or tea bar (like alcohol, hot sauce, etc.) and enter it here. INVENT YOUR OWN--don't use the examples given.}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.)
call show_menu request {}
response show_menu response {"success":true}
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[]}
hint assistant (Politely explain they don't have that. Then ask if there's something from the menu they would like)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"hot dogs\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Do you have any hot dogs?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Unfortunately, no. Anything from the menu that you would like to have, instead?"
}
] |
dlg-22c266b7-c1c1-4a57-bc0f-40a8fcdabf8a | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-6709\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk\", \"menu_item_id\":\"latte-6709\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-6709\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"38223\",\"order_item_id\":\"99728\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"38223\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"38223\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"99728\", \"menu_item_id\": \"latte-6709\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a Latte with 2% milk, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "You bet! Is this correct for your order?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"38223\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Pick up can be done at the coffee bar shortly, sir."
}
] |
dlg-14fa69b0-983d-4857-9c3a-bdcee5d1de24 | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Colombian Coffee\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Could you please give me a black Colombian coffee?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry we don't have that in our menu, anything else you see that you would like?"
}
] |
dlg-777c746a-c3bf-43ce-b947-24dae7cd84b3 | 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-9881\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"iced OR Oat milk OR Hazelnut\", \"menu_item_id\":\"latte-9881\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"attribute_name\": \"Hot or Iced\", \"options\":[\"Hot\",\"Iced\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-134\", \"name\": \"Hazelnut\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-9881\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-134\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"56501\",\"order_item_id\":\"27385\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"56501\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"56501\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"27385\", \"menu_item_id\": \"latte-9881\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"hazelnut-134\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a latte, but I want it iced and made with oat milk. Also, can I get a shot of hazelnut flavoring?"
},
{
"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\": \"56501\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Absolutely."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. Your order will be ready shortly. Have a Brew-tiful day!"
}
] |
dlg-f6a1fb54-9882-4f1d-8911-0f70c4c9b7dc | 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-0198\",\"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-0198\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-001\", \"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-0198\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-001\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"35774\",\"order_item_id\":\"71718\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"35774\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"35774\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"71718\", \"menu_item_id\": \"latte-0198\", \"menu_item_name\": \"Latte \", \"addons\": [{\"addon_id\": \"chocolate-sauce-001\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a chocolate latte? Thank you."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the order displayed on the screen correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"35774\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Looks good to me."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alrighty, your order will be ready in a few at the coffee bar."
}
] |
dlg-2cfcbe62-f7c3-4b54-a5fd-ef9bfc99dff8 | Coffee | Auto template 28 Order two same drinks differing by milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* of these: var_drink. HOWEVER, for ONE of them you want var_milk1 milk while for the OTHER you want var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk1 milk OR var_milk2 milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3832\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Non-Fat milk OR Almond milk\", \"menu_item_id\":\"mocha-3832\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-3832\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"43292\",\"order_item_id\":\"66520\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"43292\",\"menu_item_id\": \"mocha-3832\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"43292\",\"order_item_id\":\"55581\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"43292\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"43292\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"66520\", \"menu_item_id\": \"mocha-3832\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]},{\"order_item_id\": \"55581\", \"menu_item_id\": \"mocha-3832\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "One non-fat mocha and one almond milk mocha please!"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Absolutely, but before I move this forward I just want to confirm everything here looks correct. Everything look good?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"43292\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yeah you got it right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK great, I'll have that shortly for you over at the coffee bar."
}
] |
dlg-b2e45b8a-a6a5-424b-b07f-7bc4efd3e9a5 | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there I would like to try a 12 oz. Mocha."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I am so sorry but we don't sell Mocha drinks. Would you like to try something else instead?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Okay could you please show me the menu again so I can see what you have?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Yes, here you go. Let me know if you need anything."
}
] |
dlg-43f285b0-1a0e-438d-a7e0-2747decb6b2e | 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\": \"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-1234-latte\",\"name\":\"Matcha Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"no foam\", \"menu_item_id\":\"matcha-1234-latte\"}"
},
{
"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\": \"matcha-1234-latte\",\"quantity\": \"1\", \"notes\": \"no foam\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"15269\",\"order_item_id\":\"99141\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"15269\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"15269\", \"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\": \"99141\", \"menu_item_id\": \"matcha-1234-latte\", \"menu_item_name\": \"Matcha Latte\", \"notes\": \"no foam\"}]}"
}
],
"index": 0,
"segments": [
{
"annotations": [
{
"name": "request"
}
],
"annotator_id": "GENERATED",
"end_index": "52",
"start_index": "45",
"text": "no foam"
}
],
"speaker": "user",
"text": "Yes hi could I please get a Mocha Latte with no foam?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Could you look at this order? If it's right let me know. I will have the order sent to coffee bar to be made."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"15269\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes it is right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, I will have this made for you soon. It will be ready to be picked up at the coffee bar."
}
] |
dlg-3743a97d-43d8-410d-87a3-c9896e7cebb7 | Coffee | Auto template 14b what kind of menu_items do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST black tea,herbal tea,matcha drinks,chai drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any name you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any name you know of that matches that category.}}
{{RAND item_id2 id 10000 99999}}
{{ENTER drink3 drink Enter one last name of a specific example from the category you listed above. It can be any name you know of that matches that category.}}
{{RAND item_id3 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}, {"menu_item_id":"var_item_id3","name":"var_drink3"}]}
hint assistant (Explains they have var_drink1, var_drink2, and var_drink3.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"black tea\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"42693\",\"name\":\"oolong\"}, {\"menu_item_id\":\"92006\",\"name\":\"Earl Grey\"}, {\"menu_item_id\":\"51291\",\"name\":\"English Breakfast\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "What kind of black teas do you have?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have Oolong, Earl Grey and English Breakfast available."
}
] |
dlg-0fa229e0-5682-4b2d-b86d-97c20fdbcfa3 | Coffee | Auto template 1 order a coffee drink no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-0245\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-0245\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"93687\",\"order_item_id\":\"69742\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"93687\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"93687\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"69742\", \"menu_item_id\": \"macchiato-0245\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I please have a Macchiato to drink?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay I have your drink on the screen. Does everything appear right? Then I will send this to the coffee bar to make."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"93687\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes it is right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay we will get this drink made fast. It will be ready at the coffee bar."
}
] |
dlg-4b5dfd0c-02a0-4ac9-a294-9c9c5649f17b | Coffee | Auto template 29 Order two drinks differing by name and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE TWO DRINKS*
{{ENTER drink1 drink Enter a drink from the list above.}}
{{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}}
{{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]}
call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call get_menu_items request {"query": "var_drink2"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-6574\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2%\", \"menu_item_id\":\"mocha-6574\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-6574\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"72811\",\"order_item_id\":\"84865\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"72811\",\"menu_item_id\": \"latte-4578\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"72811\",\"order_item_id\":\"37698\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"72811\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"72811\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"nine of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"84865\", \"menu_item_id\": \"mocha-6574\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"37698\", \"menu_item_id\": \"latte-4578\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get a Mocha with 2% and then a Latte with oat milk please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, is this correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"72811\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay then, your order will be up in a minute at the coffee bar."
}
] |
dlg-e8061d23-2339-4357-9fce-b39d2390e018 | 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\":\"amercano-3454\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Caramel Sauce\", \"menu_item_id\": \"amercano-3454\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-329\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"amercano-3454\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-329\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"44073\",\"order_item_id\":\"49862\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"44073\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"44073\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"49862\", \"menu_item_id\": \"amercano-3454\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"caramel-sauce-329\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I would like to order a Americano with Caramel Sauce please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, is everything right on the screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"44073\"}"
},
{
"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 a americano with caramel sauce."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, great, your order will up shortly."
}
] |
dlg-e23fcb9f-34ea-4a68-925e-8700cb6bc9c7 | 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-2757\",\"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-2757\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetener-4789\", \"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-2757\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-4789\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"50701\",\"order_item_id\":\"21177\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"50701\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"50701\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"21177\", \"menu_item_id\": \"latte-2757\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-4789\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Please give me a latte flavored with vanilla ."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is your order correct on the display?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"50701\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes it is right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Fantastic it will be ready soon."
}
] |
dlg-21f346e8-2e66-4baf-97ab-d4f995797389 | 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": "Hi. How do I get my boyfriend to marry me?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm not sure but maybe a coffee or tea could give you some ideas. May I get you one?"
}
] |
dlg-8d92c9ab-78c4-4d25-89f1-b05520ceb55e | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-9993\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% lactose free milk\", \"menu_item_id\":\"latte-9993\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-9993\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% lactose free Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"42614\",\"order_item_id\":\"63185\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"42614\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"42614\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Eight of Spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"63185\", \"menu_item_id\": \"latte-9993\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% lactose free Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey, can I get a latte with the 2% lactose free milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Of course, a latte with the lactose free milk?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"42614\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yep!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, we'll have that out on the coffee bar for you in just a few."
}
] |
dlg-51910d04-486f-49de-8e8d-9697e0bcc0f5 | Coffee | Auto template 10 order a coffee drink with first name | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-1526\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-1526\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"19790\",\"order_item_id\":\"15521\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"19790\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"19790\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"15521\", \"menu_item_id\": \"cortado-1526\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a Cortado and that's for Jim."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'll get that to the coffee bar for you just check the screen please, is this right?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"cortado-1526\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"15521\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"15521\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"19790\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"19790\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"15521\", \"menu_item_id\": \"cortado-1526\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "No I need it to be decaf."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok check that screen, does this look right?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"19790\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Great that will be up at the coffee bar soon."
}
] |
dlg-6a4fa419-2978-4fb1-ab5e-dc049940a49b | Coffee | Auto template 20 order a coffee drink TO GO | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-394\",\"name\":\"Cortado \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-394\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"45351\",\"order_item_id\":\"70101\"}"
},
{
"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\": \"45351\", \"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\": \"45351\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"45351\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"45351\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"three of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"70101\", \"menu_item_id\": \"cortado-394\", \"menu_item_name\": \"Cortado \"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like a cortado to go."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"45351\"}"
},
{
"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": "Perfect."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok your order will be ready at the bar in a few minutes."
}
] |
dlg-d7887a74-2149-471c-a51e-bf374ec823a6 | 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-2284\",\"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-2284\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"16721\",\"order_item_id\":\"87401\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"16721\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"16721\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of clubs\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"87401\", \"menu_item_id\": \"chai-latte-2284\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd love a Chai Latte, please!"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "You've got it! I'll give your order to the coffee bar shortly. Do I have it correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"16721\"}"
},
{
"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, you do."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great, you can pick it up at the coffee bar very soon."
}
] |
dlg-80edbc42-29a7-493c-9e41-0b13a119109d | 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 is your favorite band?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry, I can only help you with your order."
}
] |
dlg-70ed500e-e514-44e5-bc45-0cfe6df7e483 | Coffee | Auto template 4b order a coffee drink mod decaf and sweetener | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*SWEETENERS*
{{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut Sweetener,Chocolate Sauce,Caramel Sauce}}
{{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}}
{{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with these two modifications: (a) decaf and (b) has var_sweet. Do NOT use the word "sweetener" or "sauce" (unless you're sure you'd say it normally). How would you say it? *Say it out loud first* then write it.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf OR var_sweet", "menu_item_id": "var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf","Caff"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}], "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (confirms details are right)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly -- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-4092\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf OR Caramel Sauce\", \"menu_item_id\": \"macchiato-4092\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\",\"Caff\"]}], \"addons\": [{\"addon_id\": \"caramel-sauce-112\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-4092\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-112\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"51654\",\"order_item_id\":\"14392\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"51654\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"51654\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"jack of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14392\", \"menu_item_id\": \"macchiato-4092\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"caramel-sauce-112\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like one decaf caramel Macchiato please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please make sure your order has everything you want so it can be made fresh."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"51654\"}"
},
{
"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 has everything."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright, your order will be up shortly."
}
] |
dlg-eee045d0-c109-48de-aa4a-8430c63e859a | 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\": \"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-1198\",\"name\":\"Mocha\"}, {\"menu_item_id\":\"Latte -024\",\"name\":\"Latte \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Triple \", \"menu_item_id\":\"mocha-1198\"}"
},
{
"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\": \"mocha-1198\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple \"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"16814\",\"order_item_id\":\"57739\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"16814\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"16814\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Jack of Clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"57739\", \"menu_item_id\": \"mocha-1198\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple \"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a triple shot mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"16814\"}"
},
{
"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 all looks right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok then please wait by the coffee bar. It will be ready shortly."
}
] |
dlg-2f66b509-038c-42f8-bb74-7f335c228237 | Coffee | Auto template 4 order a coffee drink mod milk and sweetener | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-2570\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk OR Hazelnut Sweetener\", \"menu_item_id\": \"cappuccino-2570\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-092\", \"name\": \"Hazelnut Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-2570\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-092\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"98282\",\"order_item_id\":\"91666\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"98282\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"98282\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"91666\", \"menu_item_id\": \"cappuccino-2570\", \"menu_item_name\": \"Cappuccino\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-092\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "May I have a hazelnut 2% cappuccino?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Here are your order details. Are they all right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"98282\"}"
},
{
"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, they are right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Perfect. Your order will be done in a minute. Thanks for your order."
}
] |
dlg-2fdac062-0f78-4882-9789-df3d502ab767 | 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-1374\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Caramel Sauce\", \"menu_item_id\": \"americano-1374\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-193\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"americano-1374\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-193\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"27668\",\"order_item_id\":\"18736\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"27668\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"27668\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"18736\", \"menu_item_id\": \"americano-1374\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"caramel-sauce-193\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to have an Americano and please add caramel syrup."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the order on the screen correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"27668\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it is right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you and we will have your order ready shortly."
}
] |
dlg-1d3bc512-42a9-49c4-ab09-57a89b3d7978 | 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-6291\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% Lactose-Free milk\", \"menu_item_id\":\"cortado-6291\"}"
},
{
"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-6291\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"27181\",\"order_item_id\":\"39334\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"27181\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"27181\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"nine of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"39334\", \"menu_item_id\": \"cortado-6291\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I need a Cortado, but with 2% Lactose-Free milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is this the right order?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"27181\"}"
},
{
"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 what I'm getting."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, it should be ready in a bit."
}
] |
dlg-5371b093-2413-4ca4-97ad-16f277d61bfd | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Espresso\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey, I'd like an Espresso, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry to say that we don't have anything like that on the menu, but I'd love to get something else for you today."
}
] |
dlg-4d0d8ded-60bf-411a-aebb-bb4ef5778b93 | 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\": \"Lavender Earl Grey\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"lavender-earl-grey-5035\",\"name\":\"Lavender Earl Grey\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"lavender-earl-grey-5035\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"59502\",\"order_item_id\":\"31087\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"59502\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"59502\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Jack of Hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"31087\", \"menu_item_id\": \"lavender-earl-grey-5035\", \"menu_item_name\": \"Lavender Earl Grey\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I think I'd like to try the Lavender Earl Grey."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, there's your order on the screen. Can you confirm that's what you're wanting before I have it made?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"59502\"}"
},
{
"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": "Yep, that's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Wonderful! Your order will be out shortly, and you can get that at the coffee bar."
}
] |
dlg-9649103b-8866-4d27-971e-39001b5a1512 | 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-7765\",\"name\":\"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I need a Cappuccino."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I apologize, but we don't seem to have that on the menu. Did you mean to ask for a Cortado?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "No, I don't want that. What's available in terms of tea drinks?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "We have a number of teas, including black, herbal, and oolong teas. Please view the menu for all available options."
}
] |
dlg-6d00d4e0-bc38-4efc-85db-f3510bd8849b | Coffee | Auto template 10 order a coffee drink with first name | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-8381\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-8381\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"25322\",\"order_item_id\":\"70671\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"25322\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"25322\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"70671\", \"menu_item_id\": \"mocha-8381\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Mocha. It'll be for Marie."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Would you be so kind as to confirm that your order has been received accurately?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-8381\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"70671\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"70671\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"25322\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"25322\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"70671\", \"menu_item_id\": \"mocha-8381\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Actually, no, I'd like to change it. I want a decaf Mocha instead."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Sure. Can you confirm that we have your revised order correct before we begin making it?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"25322\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "Yes, that's what I want."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Great. Your order will be up at the coffee bar soon."
}
] |
dlg-c7195f7e-dbcc-4ba2-a9d0-c13c2a4317a4 | Coffee | Auto template 20 order a coffee drink TO GO | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-5643\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-5643\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"91793\",\"order_item_id\":\"21818\"}"
},
{
"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\": \"91793\", \"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\": \"91793\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"91793\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"91793\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"nine of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"21818\", \"menu_item_id\": \"latte-5643\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Good Morning! I just want a Latte to go please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"91793\"}"
},
{
"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": "Thats what I ordered."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK great! You can get your Latte at the coffee bar as soon as the barista has finished making it. Which shouldn't take too long."
}
] |
dlg-13cd8e51-cc54-4455-8e81-7b18f96adb66 | Coffee | Auto template 7 order a DECAF coffee drink no other mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the coffee bar worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. )
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-1237\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"mocha-1237\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-1237\",\"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\": \"62250\",\"order_item_id\":\"21006\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"62250\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"62250\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"21006\", \"menu_item_id\": \"mocha-1237\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a decaf mocha, please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Of course, can you please review the order on the screen in front of you"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"62250\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Your order will be ready soon, thanks"
}
] |
dlg-81ef1faf-ad0f-43b2-bac2-72777a9f58ab | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-4421\",\"name\":\"Macchiato \"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a mocha?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I don't see a mocha on our menu, did you mean a macchiato?"
}
] |
dlg-69a44e1f-c935-4ced-aa1b-724ec43c1195 | Coffee | Auto template 7 order a DECAF coffee drink no other mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the coffee bar worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink, but decaffeinated. Say it out loud, then write it in the way you'd order it at a real coffee bar. )
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Caff","Decaf"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-7416 \",\"name\":\"Cortado \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"cortado-7416 \"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-7416 \",\"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\": \"87519\",\"order_item_id\":\"17295\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"87519\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"87519\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"17295\", \"menu_item_id\": \"cortado-7416 \", \"menu_item_name\": \"Cortado \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll get a decaf cortado."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Your order is displayed here. Is that correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"87519\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you. Your drink will be out soon."
}
] |
dlg-48a790a4-8401-4723-b173-8239c9cd0ef4 | 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-8921\",\"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-8921\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"59487\",\"order_item_id\":\"63575\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"59487\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"59487\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of diamonds\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"63575\", \"menu_item_id\": \"chai-8921\", \"menu_item_name\": \"chai latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a chai latte please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure. Does your order look okay?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"59487\"}"
},
{
"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": "Cool, I will have that out in a sec."
}
] |
dlg-3a73b1f5-0361-4250-ae00-563082de63cd | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Boba Tea \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello, I'd like to order a large Boba Tea, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry, Boba Tea isn't on the menu. Is there another item I can make for you?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "May I see the menu again?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here you are. Please let me know if I can anything for you."
}
] |
dlg-a8869966-452f-4eb7-90cd-09d4520701a1 | 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\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"81215\",\"order_item_id\":\"53319\"}"
},
{
"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\": \"81215\", \"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\": \"81215\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"81215\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"81215\", \"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\": \"53319\", \"menu_item_id\": \"macchiato\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I have a macchiato? And I'll have it 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\": \"81215\"}"
},
{
"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, your order will be ready at the coffee bar in just a minute."
}
] |
dlg-84d715b4-5cb4-4098-a677-42ec29ef4eea | 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\":\"cortago-7765\",\"name\":\"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd really like a cappuccino, if you can?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Unfortunately, I don't see cappuccino on the menu. Do you mean Cortado?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "No. Can you just tell me what kind of tea drinks you have?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "We have several - black, herbal, and oolong. If you need more information, please see the menu."
}
] |
dlg-26c8c0c2-7ae6-43d1-bc7c-7f4da20ed6ca | Coffee | Auto template 10 order a coffee drink with first name | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"64415\",\"order_item_id\":\"75277\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"64415\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"64415\", \"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\": \"75277\", \"menu_item_id\": \"cappuccino\", \"menu_item_name\": \"Cappuccino\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi I'd like to order a cappuccino for Larry please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you please confirm that your is correct please."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"cappuccino\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"75277\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"75277\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"64415\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"64415\", \"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\": \"75277\", \"menu_item_id\": \"cappuccino\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "No it's not correct. Can I please change it to a decaf cappuccino please. Thanks."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm that your order is now correct?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"64415\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "Yes it's correct."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Ok. Your order will be ready for you shortly. Have a nice day."
}
] |
dlg-3bd9ebcc-f5a8-4187-adaa-3fefe461eaf2 | Coffee | Auto template 18 order a coffee drink specify espresso shots | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]}
force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar.
hint user (confirms it correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-0311\",\"name\":\"Cappuccino\"}, {\"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\": \"Triple\", \"menu_item_id\":\"cappuccino-0311\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-0311\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"95520\",\"order_item_id\":\"38212\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"95520\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"95520\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"38212\", \"menu_item_id\": \"cappuccino-0311\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll have one Triple Cappuccino."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"95520\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your drink will be ready at the coffee bar in just a few moments."
}
] |
dlg-b765e690-8878-4a1b-8b79-8754ae5d79f7 | 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-3931\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Caramel Sauce\", \"menu_item_id\": \"americano-3931\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-339\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"americano-3931\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-339\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"98319\",\"order_item_id\":\"98317\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"98319\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"98319\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"98317\", \"menu_item_id\": \"americano-3931\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"caramel-sauce-339\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "May I have an americano with a pump of caramel?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "of course. Can you check and tell me if this looks good?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"98319\"}"
},
{
"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": "perfect!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, it will be ready for you soon over there."
}
] |
dlg-c660ad8b-750e-4ad2-86ae-d52989d8cf40 | Coffee | Auto template 16 do you have x | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question:
*CATEGORY*
{{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}}
{{RAND item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.)
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]}
hint assistant (Answers Yes, we have var_drink1 and var_drink2)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"black tea\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"56194\",\"name\":\"almond milk\"}, {\"menu_item_id\":\"58210\",\"name\":\"oat milk\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello, do you have black tea on the menu?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We do actually. Do you want almond milk or oat ,ilk with that?"
}
] |
dlg-d4a56de8-ef12-4c8f-9deb-65e24a6e2cf3 | Coffee | Auto template 14b what kind of menu_items do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST black tea,herbal tea,matcha drinks,chai drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any name you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any name you know of that matches that category.}}
{{RAND item_id2 id 10000 99999}}
{{ENTER drink3 drink Enter one last name of a specific example from the category you listed above. It can be any name you know of that matches that category.}}
{{RAND item_id3 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}, {"menu_item_id":"var_item_id3","name":"var_drink3"}]}
hint assistant (Explains they have var_drink1, var_drink2, and var_drink3.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"herbal tea\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"65617\",\"name\":\"Lipton\"}, {\"menu_item_id\":\"41806\",\"name\":\"Bigelow\"}, {\"menu_item_id\":\"93436\",\"name\":\"Mumi\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "What kind of herbal teas do you have?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have Lipton, Bigelow and Mumi."
}
] |
dlg-3ae141e5-f12b-43f9-b1c8-92c326b5f336 | Coffee | Auto template 20 order a coffee drink TO GO | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-1120\",\"name\":\"latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-1120\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"50256\",\"order_item_id\":\"64557\"}"
},
{
"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\": \"50256\", \"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\": \"50256\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"50256\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"50256\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"64557\", \"menu_item_id\": \"latte-1120\", \"menu_item_name\": \"latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I please have a latte to go."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"50256\"}"
},
{
"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, I would like a latte to go."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, you order will be ready at the coffee bar shortly."
}
] |
dlg-2e1659c0-2823-434f-8472-bfcf62ff4381 | 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\": \"Cold Brew\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cold-brew-1034\",\"name\":\"Cold Brew\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cold-brew-1034\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"21095\",\"order_item_id\":\"74064\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"21095\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"21095\", \"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\": \"74064\", \"menu_item_id\": \"cold-brew-1034\", \"menu_item_name\": \"Cold Brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a cold brew."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm on the screen?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"21095\"}"
},
{
"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": "Thanks. It'll be out soon."
}
] |
dlg-d3b2d3a4-6c70-400c-b062-01897f8ab63e | Coffee | Auto template 1 order a coffee drink no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-7717\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-7717\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"71104\",\"order_item_id\":\"30082\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"71104\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"71104\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"30082\", \"menu_item_id\": \"mocha-7717\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi. I need a Mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Could you please check the order displayed here to be sure it's correct before I send it back?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"71104\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that is correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, it will be ready shortly at coffee bar."
}
] |
dlg-d882fed1-0acf-45b1-b4c9-7a856e9502b5 | 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\": \"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-8547\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-8547\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"44322\",\"order_item_id\":\"20928\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"44322\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"44322\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"20928\", \"menu_item_id\": \"cortado-8547\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a large Cortado please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "IS the order correct on the screen"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"44322\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes that's right"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "I will get your drink ready for you at the coffee bar"
}
] |
dlg-a8552290-53ff-46e2-b489-e9fa77a76270 | Coffee | Auto template 10 order a coffee drink with first name | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-2323\",\"name\":\"latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-2323\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"90410\",\"order_item_id\":\"98688\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"90410\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"90410\", \"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\": \"98688\", \"menu_item_id\": \"latte-2323\", \"menu_item_name\": \"latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "i want a latte it is for jay"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "is this correct"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"latte-2323\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"98688\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"98688\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"90410\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"90410\", \"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\": \"98688\", \"menu_item_id\": \"latte-2323\", \"menu_item_name\": \"latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "no i want it to be decaf"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "great so decaf"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"90410\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "yes thanks"
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "it will be ready shortly"
}
] |
dlg-99c0191f-d1c9-4e44-93ef-6b3b25660191 | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a latte, but I would like it be decaffeinated, with ice, and non-fat milk, and vanilla syrup please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Unfortunately there are no menu items available for the order you requested. Would you like something off the menu instead?"
}
] |
dlg-5c1a7746-8179-40e3-aeeb-185864e8ab1f | 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-4407\",\"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-4407\"}"
},
{
"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-4407\",\"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\": \"61956\",\"order_item_id\":\"76419\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"61956\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"61956\", \"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\": \"76419\", \"menu_item_id\": \"cortado-4407\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I would like a Cortado with oat milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, does your order look right on that screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"61956\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes it does"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Fantastic, your order will be good to go shortly at the coffee bar."
}
] |
dlg-a5bf5f68-01a2-43c3-a4a6-fe7713d0b263 | Coffee | Auto template 1 order a coffee drink no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-5624\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-5624\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"89484\",\"order_item_id\":\"33281\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"89484\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"89484\", \"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\": \"33281\", \"menu_item_id\": \"macchiato-5624\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I like a Macchiato please!"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, I got the order on screen. Is this correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"89484\"}"
},
{
"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, I'll get the order done shortly."
}
] |
dlg-deae07df-e82a-4342-9f7b-3c6bf223a8dc | Coffee | Auto template 29 Order two drinks differing by name and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE TWO DRINKS*
{{ENTER drink1 drink Enter a drink from the list above.}}
{{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}}
{{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]}
call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call get_menu_items request {"query": "var_drink2"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-0388\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond\", \"menu_item_id\":\"chai-latte-0388\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"chai-latte-0388\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"64482\",\"order_item_id\":\"54999\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"64482\",\"menu_item_id\": \"matcha-latte-9457\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"64482\",\"order_item_id\":\"16722\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"64482\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"64482\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"54999\", \"menu_item_id\": \"chai-latte-0388\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"16722\", \"menu_item_id\": \"matcha-latte-9457\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Chai Latte with Almond Milk and a Matca Latte with Oat Milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok - can you confirm your order on the display and make sure its accurate?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"64482\"}"
},
{
"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 right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok - your order has been placed and will be up shortly at the coffee bar. Thanks!"
}
] |
dlg-489d4221-6e90-4ecb-9df8-c29fb271ffac | 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\": \"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-2190\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"mocha-2190\"}"
},
{
"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\": \"mocha-2190\",\"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\": \"52252\",\"order_item_id\":\"32632\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"52252\",\"order_id\": \"52252\", \"menu_item_id\": \"mocha-2190\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"52252\",\"order_item_id\":\"74571\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"52252\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"52252\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"32632\", \"menu_item_id\": \"mocha-2190\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"74571\", \"menu_item_id\": \"mocha-2190\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want two mochas. One decaf and the other regular."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok. Is this right?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"52252\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok. Your order will be up shortly."
}
] |
dlg-53b25285-fbfa-4b27-b986-32d274dc45ce | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-1099\",\"name\":\"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I need a mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry I don't see mocha on the menu. Do you mean Macchiato?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "No. What kind of tea do you serve?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Well,we have lots of teas; black, herbal and oolong. Please take a look at our menu for full details."
}
] |
dlg-2ac6c23b-b1ce-455d-b74d-8642b9c2624a | 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\": \"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-0981\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"cortado-0981\"}"
},
{
"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\": \"cortado-0981\",\"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\": \"66646\",\"order_item_id\":\"74525\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"66646\",\"order_id\": \"66646\", \"menu_item_id\": \"cortado-0981\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"66646\",\"order_item_id\":\"43249\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"66646\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"66646\", \"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\": \"74525\", \"menu_item_id\": \"cortado-0981\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"43249\", \"menu_item_id\": \"cortado-0981\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi! Can I get one decaf Cortado and one regular Cortado?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure! Please review your order here. Make sure it's correct."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"66646\"}"
},
{
"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": "This looks good to me."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great! We'll get those started for you. Please wait at the end of the bar for your drinks."
}
] |
dlg-93a233ee-8543-45b5-aa3b-424f49779024 | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-0220\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk\", \"menu_item_id\":\"latte-0220\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-0220\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"10746\",\"order_item_id\":\"18482\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"10746\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"10746\", \"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\": \"18482\", \"menu_item_id\": \"latte-0220\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like a latte with almond milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "No problem, just confirm your order and I'll send it to the bar immediately. Is this the right order?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"10746\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright, your order is placed and will be ready soon at the coffee bar."
}
] |
dlg-b7a83fb5-3348-4937-8324-569a3effd1a3 | 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-1010\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"iced OR Oat milk OR Hazelnut\", \"menu_item_id\":\"latte-1010\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"attribute_name\": \"Hot or Iced\", \"options\":[\"Hot\",\"Iced\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-367\", \"name\": \"Hazelnut\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-1010\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-367\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"66411\",\"order_item_id\":\"25564\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"66411\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"66411\", \"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\": \"25564\", \"menu_item_id\": \"latte-1010\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"hazelnut-367\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "give me an iced oat milk latte with hazelnut, please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the order displayed correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"66411\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. Your order will be ready shortly. Have a Brew-tiful day!"
}
] |
dlg-9ebde36c-04a8-40d9-ab88-cf45d4d45ec2 | Coffee | Auto template 23 order a coffee drink then ask for sweeteners | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*CHOOSE A DRINK*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*Choose a term*
{{ENTER sweet_term word Enter the word "sweetener" or "syrup":}}
*Choose a SWEETENER*
{{LIST Vanilla,Sugar Free Vanilla,Hazelnut, Caramel Sauce}}
{{ENTER sweet_name name sweetener names (the one without a number) as it is written from the list above:}}
*SWEETENER ID*
{{LIST vanilla-sweetener-011,sugar-free-vanilla-sweetener-012,hazelnut-sweetener-013,caramel-sauce-15}}
{{ENTER sweet_id id Enter the sweetener ID that matches your sweetener name exactly as it is written from the list above:}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink but don't mention any modifiers.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (asks what kind of var_sweet_term they have)
call get_addons request {"query": "var_sweet_term", "menu_item_id":"var_menu_item_id"}
response get_addons response {"addons":[{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["ADD"]},{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["NO","ADD"]},{"addon_id":"hazelnut-sweetener-013","name":"Hazelnut Sweetener","options":["NO","ADD"]},{"addon_id":"vanilla-sweetener-011","name":"Vanilla sweetener","options":["NO","ADD"]},{"addon_id":"chocolate-sauce-014","name":"Chocolate Sauce","options":["NO","ADD"]},{"addon_id":"caramel-sauce-015","name":"Caramel Sauce","options":["NO","ADD"]},{"addon_id":"honey-016","name":"Honey","options":["NO","ADD"]},{"addon_id":"sugar-017","name":"Sugar ","options":["NO","ADD"]}]}
force assistant We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar.
hint user (Say you want to add the var_sweet_name.)
call update_order_item request {"order_item_id": "var_order_item_id","addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}
response update_order_item response {"order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}]}
hint assistant (the worker asks the customer again to confirm the order is correct before sending it to the coffee bar).
hint user (confirms it's correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar -- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-4829\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-4829\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"53763\",\"order_item_id\":\"31396\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"53763\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"53763\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"31396\", \"menu_item_id\": \"mocha-4829\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Mocha, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the displayed order correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"syrup\", \"menu_item_id\":\"mocha-4829\"}"
},
{
"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": "Actually, what kind of syrups do you have for the coffee?"
},
{
"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\": \"31396\",\"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\":\"31396\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"53763\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"53763\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"31396\", \"menu_item_id\": \"mocha-4829\", \"menu_item_name\": \"Mocha\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-011\", \"option\":\"ADD\"}]}]}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "I guess I'd like to add Vanilla then."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Okay. Could you confirm the accuracy of your order before I send it to be made?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"53763\"}"
},
{
"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": "Yup, you got it."
},
{
"annotations": [],
"index": 7,
"segments": [],
"speaker": "assistant",
"text": "Great. Your order will be available soon."
}
] |
dlg-242383fa-66bb-4cd1-8be6-1eb880b10683 | 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-3332\",\"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-3332\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"95197\",\"order_item_id\":\"59610\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"95197\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"95197\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of spades\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"59610\", \"menu_item_id\": \"matcha-latte-3332\", \"menu_item_name\": \"Matcha latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I need to get a Matcha latte please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Of course. Is your drink order correct on the screen"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"95197\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes it is"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "I will have that ready for you shortly at the coffee bar"
}
] |
dlg-e94b81f6-d381-425d-9ac5-455fdc3e38e8 | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-4523\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk\", \"menu_item_id\":\"macchiato-4523\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-4523\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"91583\",\"order_item_id\":\"98406\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"91583\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"91583\", \"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\": \"98406\", \"menu_item_id\": \"macchiato-4523\", \"menu_item_name\": \"Macchiato\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I like an Almond milk Macchiato pleas."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm looking at the display. Is this correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"91583\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, I'll get it done shortly."
}
] |
dlg-0adb02dd-7849-4819-8fe8-ba372e7dec66 | Coffee | Auto template 29 Order two drinks differing by name and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE TWO DRINKS*
{{ENTER drink1 drink Enter a drink from the list above.}}
{{ENTER menu_item_id1 drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a DIFFERENT drink from the list above.}}
{{ENTER menu_item_id2 drink Now write again what you have entered just above but, again, (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "mocha-6901". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* different drinks: a var_drink1 with var_milk1 milk and a var_drink2 with var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id1","name":"var_drink1"}]}
call get_addons request {"query": "var_milk1", "menu_item_id":"var_menu_item_id1"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id1","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call get_menu_items request {"query": "var_drink2"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id2","name":"var_drink2"}]}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id2","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id1", "menu_item_name": "var_drink1", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id2", "menu_item_name": "var_drink2", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-9393\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond\", \"menu_item_id\":\"mocha-9393\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-9393\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"30259\",\"order_item_id\":\"79545\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"30259\",\"menu_item_id\": \"cortado-9994\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"30259\",\"order_item_id\":\"46012\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"30259\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"30259\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ace of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"79545\", \"menu_item_id\": \"mocha-9393\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"46012\", \"menu_item_id\": \"cortado-9994\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I woudld like an almond milk mocha and an oat milk cortado please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "ok, does this look correct here on the screen? please confirm"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"30259\"}"
},
{
"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, all good!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, give us a few minutes and it will be ready"
}
] |
dlg-ecb1afe1-0361-45a0-bd10-deb2f55a94f5 | 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-1234\",\"name\":\"latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-1234\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"74209\",\"order_item_id\":\"85177\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"74209\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"74209\", \"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\": \"85177\", \"menu_item_id\": \"latte-1234\", \"menu_item_name\": \"latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a latte"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, can you confirm this is correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"74209\"}"
},
{
"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, it should be ready shortly"
}
] |
dlg-1142d79b-d0ad-48fc-88a3-e2dd4e5bc0ee | Coffee | Auto template 10 order a coffee drink with first name | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-5678\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-5678\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"79164\",\"order_item_id\":\"25927\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"79164\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"79164\", \"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\": \"25927\", \"menu_item_id\": \"latte-5678\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a latte for Jack please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok great, please check the display. Is this right?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"latte-5678\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Caff\",\"Decaf\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"25927\",\"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"25927\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"79164\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"79164\", \"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\": \"25927\", \"menu_item_id\": \"latte-5678\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "No, I'd like it to be decaf, please."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok great. Is this right?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"79164\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "Yes, that's right."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order will be at the bar in a moment."
}
] |
dlg-a535fa4c-d9b5-4302-b6d1-bf137c054c15 | 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\", \"menu_item_id\": \"cold-brew-3335\", \"name\": \"Cold Brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can you tell me what's in the Cold Brew"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "That drink has ice and our special coffee concentrate"
}
] |
dlg-4364b2b2-29c0-4469-bf39-bbd6685d6b43 | 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": "Good morning, what kind of espresso drinks do you have available?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have quite a large selection of drinks including latte, mocha, cappuccino, americano, iced coffee, and several others. Please take a look over our menu for more info."
}
] |
dlg-d7a8e330-8f26-4ab4-9d54-dd8d2db357ff | 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-2342\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-2342\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"29299\",\"order_item_id\":\"20535\"}"
},
{
"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\": \"29299\", \"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\": \"29299\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"29299\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"29299\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"20535\", \"menu_item_id\": \"mocha-2342\", \"menu_item_name\": \"mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a mocha 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\": \"29299\"}"
},
{
"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 is correct"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK and your order will be done shortly at the coffee bar."
}
] |
dlg-f687938d-a859-4667-a961-b78a23532788 | 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\": \"Cold Brew\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cold-brew-4444\",\"name\":\"Cold Brew\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cold-brew-4444\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"47708\",\"order_item_id\":\"29201\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"47708\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"47708\", \"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\": \"29201\", \"menu_item_id\": \"cold-brew-4444\", \"menu_item_name\": \"Cold Brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like a Cold Brew, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure! Just check to see if your order looks correct and I'dd send it to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"47708\"}"
},
{
"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": "That's it!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great, you can pick it up at the coffee bar in a few minutes."
}
] |
dlg-45ebc0f9-25ac-446a-ace7-74bdf9007a55 | Coffee | Auto template 31 Order two same drinks differing by caffeine | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte-\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-2402\",\"name\":\"Chai Latte-\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"chai-latte-2402\"}"
},
{
"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\": \"chai-latte-2402\",\"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\": \"50548\",\"order_item_id\":\"66603\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"50548\",\"order_id\": \"50548\", \"menu_item_id\": \"chai-latte-2402\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"50548\",\"order_item_id\":\"16755\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"50548\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"50548\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of a kind\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"66603\", \"menu_item_id\": \"chai-latte-2402\", \"menu_item_name\": \"Chai Latte-\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"16755\", \"menu_item_id\": \"chai-latte-2402\", \"menu_item_name\": \"Chai Latte-\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to get a decaf Chai Latte and a regular Chai Latte."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Can you confirm the order for us before we send it in to be made?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"50548\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. You can get your drinks at the coffee bar soon."
}
] |
dlg-305eb08e-eab7-47a6-aa44-b39245a3a6a2 | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a Mocha please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry, we don't sell that. do you want something else?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Can I see the menu please?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here you do, let me know what you'd like."
}
] |
dlg-177a06fa-81ed-41c1-b053-e15ac04cee93 | 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-2353\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat milk OR Almond milk\", \"menu_item_id\":\"cortado-2353\"}"
},
{
"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-2353\",\"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\": \"28264\",\"order_item_id\":\"43710\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"28264\",\"menu_item_id\": \"cortado-2353\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"28264\",\"order_item_id\":\"15438\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"28264\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"28264\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"43710\", \"menu_item_id\": \"cortado-2353\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"15438\", \"menu_item_id\": \"cortado-2353\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "May I please have two cortados but one with oat milk and the other with almond milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Will you please check to see if the order displayed is correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"28264\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, you can get your order soon at the coffee bar."
}
] |
dlg-569b4909-910f-4662-b16a-f5199e147469 | 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. How are you?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm good. What can I get for you today"
},
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Can you let me why kinds of milk you have"
}
] |
dlg-cb9dab0e-e4f6-4d91-b84a-2d12b57b4bce | Coffee | Auto template 15 what kind of coffee do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST coffee,coffee drinks,espresso drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
{{CONVERSATION
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have a large variety of drinks including latte, mocha, cappuccino, americano, iced coffee, and several others. Politely suggests they take a look at the menu for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "What types of coffee drinks do you have here?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have many different kinds. We have latte, mocha, cappuccino, americano, iced coffee, and several other kinds. Our menu shows all the specifics, if you'd like to take a look."
}
] |
dlg-ebda198a-95fd-4507-9d7d-682bab03c397 | Coffee | Auto template 22 notes based on initial order utterance - fixed | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER*
Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. )
{{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made).
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-3498\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond Milk OR extra foam\", \"menu_item_id\":\"cortado-3498\"}"
},
{
"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-3498\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"notes\": \"extra foam\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"40622\",\"order_item_id\":\"19976\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"40622\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"40622\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"King of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"19976\", \"menu_item_id\": \"cortado-3498\", \"menu_item_name\": \"Cortado\", \"notes\": \"extra foam\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a cortado with almond milk and extra foam?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm the order before I send it to be made?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"40622\"}"
},
{
"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": "Okay, your order will be ready in a few minutes at the coffee bar"
}
] |
dlg-7f8cddbd-aaac-4356-b09a-e851000a1ec5 | Coffee | Auto template 30 Notes after no relevant addons found | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*SPECIAL*
{{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-6587\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"go half on the espresso and double on the milk\", \"menu_item_id\":\"cortado-6587\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-6587\",\"quantity\": \"1\", \"notes\": \"go half on the espresso and double on the milk\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"36420\",\"order_item_id\":\"83184\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"36420\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"36420\", \"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\": \"83184\", \"menu_item_id\": \"cortado-6587\", \"menu_item_name\": \"Cortado\", \"notes\": \"go half on the espresso and double on the milk\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi. I'd like a Cortado. I need it made with only half espresso and double on the milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Here's the order. Is it right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"36420\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay. I'll get that to you in a sec!"
}
] |
dlg-5dafba48-ad5d-494f-9774-9d003fd72029 | Coffee | Auto template 19 order a coffee drink specify espresso shots and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify two things: it's a var_shots and you want var_milk milk. How would you say it naturally? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots OR var_milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started.
hint user (confirms all looks right)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-7847\",\"name\":\"Latte\"}, {\"menu_item_id\":\"Mocha-024\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Triple OR Almond\", \"menu_item_id\":\"latte-7847\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-7847\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"},{\"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\": \"95493\",\"order_item_id\":\"57977\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"95493\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"95493\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"57977\", \"menu_item_id\": \"latte-7847\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a triple Latte with Almond 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\": \"95493\"}"
},
{
"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": "Ok, you can pick it up at the coffee bar shortly. Thank you."
}
] |
dlg-a2b2edc2-bd26-4066-bd2f-7e81a708e991 | 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-0684\", \"name\": \"Cold Brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can you tell me what's in the Cold Brew please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Our Cold Brew consists of ice and coffee concentrate and it weighs 16 oz."
}
] |
dlg-66a6b998-c1f6-4267-9e19-4fa5e958e055 | 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-1129\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-1129\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"93105\",\"order_item_id\":\"98796\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"93105\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"93105\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"eight of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"98796\", \"menu_item_id\": \"latte-1129\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a Latte please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay is this correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"93105\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay it will be ready in a few minutes."
}
] |
dlg-010e53bb-67ee-42e1-b25a-fdc2597fef16 | 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-2945\",\"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-2945\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetener-295\", \"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-2945\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-295\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"19781\",\"order_item_id\":\"73750\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"19781\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"19781\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"73750\", \"menu_item_id\": \"americano-2945\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-295\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello there can I get a Americano with vanilla sweetener, please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure thing I can get that for you. Any please confirm your order is displayed correctly on the screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"19781\"}"
},
{
"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": "Everything is looking good there."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Awesome, your order will be ready shortly for you at the coffee bar."
}
] |