conversation_id
stringlengths 40
40
| vertical
stringclasses 1
value | scenario
stringclasses 32
values | instructions
stringclasses 28
values | utterances
listlengths 2
8
|
---|---|---|---|---|
dlg-79a50ec1-5038-4fe7-8177-0161066eab81 | 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\": \"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-5935\",\"name\":\"Mocha\"}, {\"menu_item_id\":\"Espresso-024\",\"name\":\"Espresso\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Quadruple OR Non-Fat\", \"menu_item_id\":\"mocha-5935\"}"
},
{
"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-5935\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Quadruple\"},{\"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\": \"30342\",\"order_item_id\":\"97850\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"30342\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"30342\", \"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\": \"97850\", \"menu_item_id\": \"mocha-5935\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Quadruple\"},{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I have one Quadruple Mocha with Non-Fat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"30342\"}"
},
{
"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 right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your order will be out soon over at the coffee bar."
}
] |
dlg-95bac89b-3044-41bf-b41f-1f6d7ee5a8a9 | Coffee | Auto template 26 order match and chai latte drinks no mods | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Matcha Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"matcha-latte-3678\",\"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-3678\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"29359\",\"order_item_id\":\"48227\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"29359\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"29359\", \"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\": \"48227\", \"menu_item_id\": \"matcha-latte-3678\", \"menu_item_name\": \"Matcha Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I see you have the Matcha Latte, my fave. I'll take one of those, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Now, please look at what I entered, so you get exactly what you'd like. Did I type in things correctly, for you?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"29359\"}"
},
{
"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 perfecto!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, now you can go over to the coffee bar, and snag your drink. It should be ready for your enjoyment, shortly."
}
] |
dlg-6a1b8672-7ce4-437d-a594-eddf2f22088c | 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-1120\",\"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-1120\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-1120\", \"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-1120\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-1120\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"85800\",\"order_item_id\":\"47664\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"85800\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"85800\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"47664\", \"menu_item_id\": \"latte-1120\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"chocolate-sauce-1120\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I please order a latte with chocolate sauce."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Could you please say your order again, so I can make sure it's correct."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"85800\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Sure, I would like a latte with chocolate sauce."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, great! Your order will be ready at the coffee bar shortly."
}
] |
dlg-2b5f748d-e05a-47a7-9e23-9e8f99539ce0 | 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-4587\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"non-fat milk OR Vanilla Sweetener\", \"menu_item_id\": \"latte-4587\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-452\", \"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-4587\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"non-fat Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-452\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"27678\",\"order_item_id\":\"96338\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"27678\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"27678\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"96338\", \"menu_item_id\": \"latte-4587\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-452\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"non-fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, may I have a Latte with non-fat milk and vanilla?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure. please take a look at the order and confirm that your order is correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"27678\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "That's right, thank you."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok then, your order will be ready in a few minutes."
}
] |
dlg-57a0757f-8d0e-491a-b58f-e6aeee926269 | 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-2039\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Double OR Almond Milk\", \"menu_item_id\":\"cortado-2039\"}"
},
{
"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-2039\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"54001\",\"order_item_id\":\"65762\"}"
},
{
"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\": \"54001\", \"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\": \"54001\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"54001\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"54001\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"seven of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"65762\", \"menu_item_id\": \"cortado-2039\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello can I please have a Double Cortado with almond milk? I need that 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\": \"54001\"}"
},
{
"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's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK we'll have that drink ready at the coffee bar in a jiffy."
}
] |
dlg-a0481306-a968-44c3-8e12-f3c83b5b0e51 | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-1245\",\"name\":\"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a mocha please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I don't think I see mocha, do you mean a cortado?"
}
] |
dlg-4a8f6747-dd0e-4641-b137-04f186242177 | 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\": \" made from coffee concentrate and ice\", \"menu_item_id\": \"coldbrew-9949\", \"name\": \"cold brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Could you please let me know what is in the cold brew?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, we typically make that from the concentrated portion of our coffee, poured over ice."
}
] |
dlg-314cb81b-efea-4ca2-b775-f0e94eddfc3e | Coffee | Auto template 4 order a coffee drink mod milk and sweetener | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"Macchiato-8654\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"oat milk OR hazelnut sweetener\", \"menu_item_id\": \"Macchiato-8654\"}"
},
{
"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-764\", \"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\": \"Macchiato-8654\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-sweetener-764\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"23823\",\"order_item_id\":\"93621\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"23823\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"23823\", \"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\": \"93621\", \"menu_item_id\": \"Macchiato-8654\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-764\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a Macchiato with oat milk and hazelnut"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Will you please confirm that the order on the screen is correct."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"23823\"}"
},
{
"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": "The details are right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you and the order will be ready shortly."
}
] |
dlg-4e3078ad-5ccd-486e-8689-fc028f780861 | Coffee | Auto template 4 order a coffee drink mod milk and sweetener | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-2570\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk OR Sugar-Free Vanilla Sweetener\", \"menu_item_id\": \"macchiato-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\": \"sugar-free-vanilla-sweetener-537\", \"name\": \"Sugar-Free Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-2570\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-537\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"16639\",\"order_item_id\":\"69486\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"16639\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"16639\", \"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\": \"69486\", \"menu_item_id\": \"macchiato-2570\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-537\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Sugar-Free Vanilla Macchiato with almond milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm if your order details are correct prior to sending it to the coffee bar?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"16639\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, the order details are good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay. Your drink will be done shortly."
}
] |
dlg-b96e1052-dec4-4579-b288-f456bb64a93e | 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, could I get a Mocha, please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm so sorry, we don't have Mocha on our menu. Is there anything else I can make for you?"
}
] |
dlg-3663255e-4d64-413c-913f-01309d3536d9 | Coffee | Auto template 25 What's in a <drink> | *SCENARIO: Ordering from a coffee bar*
*OTHER BEVERAGES on the COFFEE BAR MENU*
{{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}}
{{ENTER drink drink Enter just the drink name from one of the list choices above.}}
{{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}}
{{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}}
{{CONVERSATION
hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way)
call get_menu_items request {"query": "var_drink", "fields": ["description"]}
response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]}
hint assistant (Say this in a slightly different way: var_details.)
}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Americano\", \"fields\": [\"description\"]}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\": [{\"description\": \"The Americano is a mix of espresso and hot water (10 oz)\", \"menu_item_id\": \"americano-4983\", \"name\": \"Americano\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello can you tell me what is in an Americano please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "An espresso shot mixed mixed with 10 oz. of hot water."
}
] |
dlg-076b61ec-9d5d-479f-b952-14220ff212e4 | 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-5033\",\"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-5033\"}"
},
{
"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-5033\",\"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\": \"36696\",\"order_item_id\":\"17174\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"36696\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"36696\", \"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\": \"17174\", \"menu_item_id\": \"latte-5033\", \"menu_item_name\": \"Latte \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like a decaf latte please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, 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\": \"36696\"}"
},
{
"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": "Great. Your order will be ready soon at the coffee bar."
}
] |
dlg-cee19bd0-ca36-41e7-9c53-e82252ab14a4 | 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\":\"macchiato-9432\",\"name\":\"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a Cappuccino, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I don't see Cappuccino 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 kinds of tea drinks do you have?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "We have several black, herbal, and oolong teas. Our menu that is displayed shows more details, if you would like to take a look."
}
] |
dlg-6a70e35f-2474-49ce-aa48-c996c4688e8d | 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": "Do you know where I can get a good kabob around here?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry, I don't. But if you'd like a coffee or tea drink, I can help you out!"
}
] |
dlg-9620b16c-af43-43ed-bcea-cbff632887cb | 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-8716\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"latte-8716\"}"
},
{
"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-8716\",\"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\": \"63709\",\"order_item_id\":\"99964\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"63709\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"63709\", \"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\": \"99964\", \"menu_item_id\": \"latte-8716\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "A decaf Latte please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok can you confirm what's correct is on the screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"63709\"}"
},
{
"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 the order will be ready for pickup at the coffee bar shortly."
}
] |
dlg-e7eb8a21-0aa1-4757-98a7-5299159eb0db | 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-4875\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2%\", \"menu_item_id\":\"chai-latte-4875\"}"
},
{
"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-4875\",\"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\": \"35212\",\"order_item_id\":\"89780\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"35212\",\"menu_item_id\": \"mocha-4278\",\"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\": \"35212\",\"order_item_id\":\"86645\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"35212\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"35212\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"four of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"89780\", \"menu_item_id\": \"chai-latte-4875\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"86645\", \"menu_item_id\": \"mocha-4278\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a Chai Latte using 2% milk and a Mocha using Almond milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm the order is correct before I send it to the coffee bar to make it?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"35212\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your order will be ready at the coffee bar in a moment."
}
] |
dlg-dd2d9ae0-39fb-4aaf-9176-f20b348a8257 | 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-2356\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-2356\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"78483\",\"order_item_id\":\"14842\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"78483\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"78483\", \"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\": \"14842\", \"menu_item_id\": \"latte-2356\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey, can I get a latte?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does this look right to you?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"78483\"}"
},
{
"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": "Yup, just the latte. thanks."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay that'll be ready at the bar for you in just a few."
}
] |
dlg-d83ded4e-0170-46cb-b8ac-073b10b618f5 | 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\":\"chailatte-0987\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk OR Oat milk\", \"menu_item_id\":\"chailatte-0987\"}"
},
{
"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\": \"chailatte-0987\",\"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\": \"30458\",\"order_item_id\":\"45850\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"30458\",\"menu_item_id\": \"chailatte-0987\",\"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\": \"30458\",\"order_item_id\":\"91761\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"30458\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"30458\", \"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\": \"45850\", \"menu_item_id\": \"chailatte-0987\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"91761\", \"menu_item_id\": \"chailatte-0987\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Could I get a Chai Latte with 2% milk and a Chai Latte with oat milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does this look right?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"30458\"}"
},
{
"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": "Alright, we will have that for you shortly!"
}
] |
dlg-4693b8c3-0b91-4bea-85aa-123c36e945e0 | 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\": \"Cafe' au lait\"}"
},
{
"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'd like to order a Cafe' au lait, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry, we don't have Cafe' au lait on the menu. Is there something else that I can get 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": "Could you please show me the menu again?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Sure thing. Here you go. Let me know if I can get you anything from the menu."
}
] |
dlg-717bdb22-c4de-4bd6-a5db-0e1aeec0ecd0 | 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-7591\",\"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-7591\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"13328\",\"order_item_id\":\"35270\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"13328\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"13328\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of hearts\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"35270\", \"menu_item_id\": \"matcha-latte-7591\", \"menu_item_name\": \"Matcha Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll take one Matcha Latte."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, here's what I'm showing for your order. Verify that's correct and I'll get that over to the coffee bar for preparation."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"13328\"}"
},
{
"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 correct, yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright, that'll be out shortly, and you can pick it up at the coffee bar."
}
] |
dlg-bd32a84d-8e80-4cf7-8301-45782d69de92 | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-8798\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk\", \"menu_item_id\":\"mocha-8798\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-8798\",\"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\": \"88471\",\"order_item_id\":\"17111\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"88471\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"88471\", \"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\": \"17111\", \"menu_item_id\": \"mocha-8798\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a mocha with almond milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, does the order on the screen look accurate?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"88471\"}"
},
{
"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, your order will be ready at the coffee bar very soon."
}
] |
dlg-70c96539-06d8-4c21-84b7-ca1e3318dcdb | 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-4566\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"iced OR 2% milk OR Sugar Free Vanilla Sweetener\", \"menu_item_id\":\"latte-4566\"}"
},
{
"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\": \"sugar-free-vanilla-sweetener-543\", \"name\": \"Sugar Free Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-4566\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-543\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"93787\",\"order_item_id\":\"68747\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"93787\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"93787\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"jack of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"68747\", \"menu_item_id\": \"latte-4566\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-543\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I want to order one iced Latte with 2% milk and sugar free vanilla sweetener and that's all."
},
{
"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\": \"93787\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. Your order will be ready shortly. Have a Brew-tiful day!"
}
] |
dlg-7cd1e408-2f5e-4937-a001-0d3c1fcc7c21 | Coffee | Auto template 18 order a coffee drink specify espresso shots | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]}
force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar.
hint user (confirms it correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-3847\",\"name\":\"Latte\"}, {\"menu_item_id\":\"Espresso-024\",\"name\":\"Espresso\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Single\", \"menu_item_id\":\"latte-3847\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-3847\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"42711\",\"order_item_id\":\"49775\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"42711\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"42711\", \"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\": \"49775\", \"menu_item_id\": \"latte-3847\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Well, since I sort of, need to watch my caffeine intake, I'll just have a single shot, of Latte, thanks."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"42711\"}"
},
{
"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": "Nice. You got it right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok. In just a bit, your order will be ready, over at the coffee bar."
}
] |
dlg-c82d2f7a-5def-44a3-9746-86dfe932e9f7 | Coffee | Auto template 31 Order two same drinks differing by caffeine | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-7755\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"macchiato-7755\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-7755\",\"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\": \"29330\",\"order_item_id\":\"84011\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"29330\",\"order_id\": \"29330\", \"menu_item_id\": \"macchiato-7755\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"29330\",\"order_item_id\":\"60369\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"29330\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"29330\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Poker\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"84011\", \"menu_item_id\": \"macchiato-7755\", \"menu_item_name\": \"Macchiato\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"60369\", \"menu_item_id\": \"macchiato-7755\", \"menu_item_name\": \"Macchiato\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to get two macchiatos, one regular and one decaf."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is everything correct to you?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"29330\"}"
},
{
"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, we'll have that ready for you shortly."
}
] |
dlg-636a4a47-453c-4990-81b9-8d2c46bc5eaa | Coffee | Auto template 22 notes based on initial order utterance - fixed | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER*
Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. )
{{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made).
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-8585\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"oat Milk OR I would like double the oat milk.\", \"menu_item_id\":\"mocha-8585\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-8585\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"notes\": \"I would like double the oat milk.\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"40401\",\"order_item_id\":\"14263\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"40401\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"40401\", \"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\": \"14263\", \"menu_item_id\": \"mocha-8585\", \"menu_item_name\": \"mocha\", \"notes\": \"I would like double the oat milk.\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a mocha with oat milk and I would like to double the oat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Will you confirm the order is correct before I submit it to be made?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"40401\"}"
},
{
"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 and your order will be ready at the coffee bar shortly."
}
] |
dlg-75124dc8-ae5a-4b8e-9337-8179cc75a924 | Coffee | Auto template 5 Order a coffee drink mod decaf or iced, milk, sweetener FIX | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*FIRST MOD CHOICE -- BE CAREFUL HERE!!!*
{{ENTER attri_id id Enter ONE of these two exactly as written: caffeine OR hot-or-iced.}}
{{ENTER main_option option If you chose "caffeine" above write Decaf here (no quotes). If you chose "hot-or-iced" above, write "Iced" here (no quotes): }}
{{ENTER other_option option If you chose caffeine above, write Caff here (no quotes). If you chose hot-or-iced, write Hot here (no quotes): }}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*SWEETENERS*
{{LIST Vanilla,Sugar-Free Vanilla,Hazelnut,Chocolate Sauce,Caramel Sauce}}
{{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}}
{{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}}
*TASK: Write the transcript of a conversation that you would have with the coffee bar worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink that has three modifications: (a) var_main_option (b) var_milk milk and (c) var_sweet (in whatever order seems right). Do NOT use the word "sweetener" or "sauce". How would you say it? *Say it out loud first* then write it.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_main_option OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "var_attri_id", "attribute_name": "var_attri_id", "options":["var_main_option","var_other_option"]},{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}]}
force assistant Please check the details of your order. Are you ready to send it to the coffee bar?
hint user (confirms)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-1010\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Iced OR Almond 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\":[\"Iced\",\"Hot\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-555\", \"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\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-555\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"62424\",\"order_item_id\":\"15845\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"62424\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"62424\", \"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\": \"15845\", \"menu_item_id\": \"latte-1010\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-555\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like an Iced Hazelnut Latte with Almond milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please check the details of your order. Are you ready to send it to the coffee bar?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"62424\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "That's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your drink is being made fresh and will be ready for pickup in a few minutes, thank you."
}
] |
dlg-044f0aee-e066-4ef0-b557-fd70fa457cc9 | 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-8763\",\"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-8763\"}"
},
{
"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-8763\",\"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\": \"88595\",\"order_item_id\":\"21510\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"88595\",\"menu_item_id\": \"chai Latte-9087\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}]}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"88595\",\"order_item_id\":\"15100\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"88595\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"88595\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"6 of Spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"21510\", \"menu_item_id\": \"mocha-8763\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"15100\", \"menu_item_id\": \"chai Latte-9087\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want an Almond Mocha and a Chai Latte Non fat milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok just make sure the order is correct."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"88595\"}"
},
{
"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 looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok the order will be out very soon."
}
] |
dlg-c0ef021b-d823-40a9-aaf7-8cb3e5fdd355 | 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\": \"Iced 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": "I would like an iced coffee please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We do not have an item for iced coffee. Could I get you 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 again?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here you go. Let me know if I can get you anything."
}
] |
dlg-200ac72e-2d9f-481f-8a2e-6809d97bd4c1 | Coffee | Auto template 26 order match and chai latte drinks no mods | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Matcha Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"matcha-latte-5676\",\"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-5676\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"33724\",\"order_item_id\":\"14487\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"33724\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"33724\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14487\", \"menu_item_id\": \"matcha-latte-5676\", \"menu_item_name\": \"Matcha Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a matcha latte."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Will you confirm the order is correct 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\": \"33724\"}"
},
{
"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 and your order will be ready at the coffee bar shortly."
}
] |
dlg-25a8dcd7-310f-4f3b-8181-a8ff586daefd | 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-3049\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf OR Vanilla Sweetener\", \"menu_item_id\": \"macchiato-3049\"}"
},
{
"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\": \"vanilla-sweetener-394\", \"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\": \"macchiato-3049\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-394\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"37055\",\"order_item_id\":\"20748\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"37055\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"37055\", \"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\": \"20748\", \"menu_item_id\": \"macchiato-3049\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-394\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get a decaf macchiato with vanilla?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Of course. Please confirm this is right and I'll send it out to get made."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"37055\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "That's perfect."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok great. Your order will be ready soon."
}
] |
dlg-79de1377-daa1-48a4-82f2-7dbfd8f983b6 | 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\":\"99459\",\"name\":\"lemon grass\"}, {\"menu_item_id\":\"36554\",\"name\":\"Rooibos\"}, {\"menu_item_id\":\"48273\",\"name\":\"Butterfly pea flower\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello, what herbal teas do you have?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have Butterfly pea flower, Rooibos, and lemon grass."
}
] |
dlg-b19057e0-b882-42be-b6ad-a458e58712ed | 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-5677\",\"name\":\"Mocha \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-5677\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"47787\",\"order_item_id\":\"97638\"}"
},
{
"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\": \"47787\", \"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\": \"47787\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"47787\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"47787\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of spades \"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"97638\", \"menu_item_id\": \"mocha-5677\", \"menu_item_name\": \"Mocha \"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'm going to have 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\": \"47787\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that looks right to me."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK then, the order will be waiting for you at the coffee bar really soon."
}
] |
dlg-a29cc952-e775-4924-ad10-d04c951de654 | Coffee | Auto template 22 notes based on initial order utterance - fixed | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER*
Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. )
{{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made).
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-4545\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2& Milk OR extra hot\", \"menu_item_id\":\"mocha-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\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-4545\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2& Milk\"}], \"notes\": \"extra hot\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"70099\",\"order_item_id\":\"86886\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"70099\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"70099\", \"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\": \"86886\", \"menu_item_id\": \"mocha-4545\", \"menu_item_name\": \"mocha\", \"notes\": \"extra hot\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2& Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "i want a 2% mocha and extra hot please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "okay great does this look right"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"70099\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes it does"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "great that will be out shortly"
}
] |
dlg-cb77458b-3140-4158-ba9c-a3ee7c9b2292 | Coffee | Auto template 4 order a coffee drink mod milk and sweetener | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-1128\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Non-fat milk OR Caramel Sauce\", \"menu_item_id\": \"cortado-1128\"}"
},
{
"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-992\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-1128\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-992\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"55308\",\"order_item_id\":\"92516\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"55308\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"55308\", \"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\": \"92516\", \"menu_item_id\": \"cortado-1128\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"caramel-sauce-992\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll have a no-fat cortado with some caramel on top please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does the order look alright?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"55308\"}"
},
{
"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": "Okay, looks fine."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, great! It will be ready very soon."
}
] |
dlg-7ff34d0c-9917-488f-82ba-98110ff88941 | 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\": \"Hot Chocolate\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"hot-chocolate-9460\",\"name\":\"Hot Chocolate\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"hot-chocolate-9460\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"28259\",\"order_item_id\":\"98375\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"28259\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"28259\", \"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\": \"98375\", \"menu_item_id\": \"hot-chocolate-9460\", \"menu_item_name\": \"Hot Chocolate\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want to get a Hot Chocolate, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Could you confirm that's the right order?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"28259\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yeah, that's the one."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, your order will be up shortly."
}
] |
dlg-f8d4b272-21f6-42d7-bfab-de389a580b5a | 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-5542\",\"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-5542\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"17205\",\"order_item_id\":\"69961\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"17205\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"17205\", \"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\": \"69961\", \"menu_item_id\": \"wild-strawberry-5542\", \"menu_item_name\": \"Wild Strawberry\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to order a Wild Strawberry tea, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Could you confirm the order?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"17205\"}"
},
{
"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's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "It'll be done in moment, please wait at the coffee bar."
}
] |
dlg-125c4bf4-a6bd-49af-bb06-b91131794878 | 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-3394\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Caramel Sauce\", \"menu_item_id\": \"latte-3394\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-114\", \"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-3394\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-114\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"27787\",\"order_item_id\":\"60920\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"27787\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"27787\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"60920\", \"menu_item_id\": \"latte-3394\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"caramel-sauce-114\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Could you please give me a caramel Latte?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "yes, does this look correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"27787\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "ok, it will be ready in a few minutes."
}
] |
dlg-1cf19e42-d362-4c3d-b5da-5cec9893254a | 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\":\"moccha-3231\",\"name\":\"Mocha \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"moccha-3231\"}"
},
{
"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\": \"moccha-3231\",\"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\": \"85902\",\"order_item_id\":\"13450\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"85902\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"85902\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"rummy\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"13450\", \"menu_item_id\": \"moccha-3231\", \"menu_item_name\": \"Mocha \", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a mocha that's decaffeinated"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, please check the order"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"85902\"}"
},
{
"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, everything is fine"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, the order is going to be available soon"
}
] |
dlg-0d5bdbad-fe6c-49b0-9061-c55d2ff8aa65 | 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\": \"Macha 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-2344\",\"name\":\"Macha Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk OR Oat milk\", \"menu_item_id\":\"matcha-latte-2344\"}"
},
{
"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\": \"matcha-latte-2344\",\"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\": \"19182\",\"order_item_id\":\"79195\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"19182\",\"menu_item_id\": \"matcha-latte-2344\",\"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\": \"19182\",\"order_item_id\":\"73165\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"19182\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"19182\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"6 of Spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"79195\", \"menu_item_id\": \"matcha-latte-2344\", \"menu_item_name\": \"Macha Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"73165\", \"menu_item_id\": \"matcha-latte-2344\", \"menu_item_name\": \"Macha Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get two Macha lattes? one of them needs to be Oat milk while the other should be 2%"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, I think I got that right, can you confirm?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"19182\"}"
},
{
"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 thats correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay it should only take 5 minutes."
}
] |
dlg-f5d2e169-4d02-4a75-8af0-a1bf3d003c92 | Coffee | Auto template 14a what kind of add_ons do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST milk,sweeteners}}
{{ENTER category category Enter one of the choices exactly as written above.}}
{{CONVERSATION
hint user (starts with a polite hello)
hint assistant (answers politely and then asks what they can get for the customer)
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
call get_addons request {"query": "var_category"}
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Hi, what can I help you with?"
},
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "What kind of milk do you have?"
}
] |
dlg-06fb96e5-83f4-4de9-a310-4cb5f8ae896d | 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\":\"mochae-4321\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mochae-4321\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"89469\",\"order_item_id\":\"66918\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"89469\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"89469\", \"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\": \"66918\", \"menu_item_id\": \"mochae-4321\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a mocha"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, can you please confirm the order please."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"syrup\", \"menu_item_id\":\"mochae-4321\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"addons\":[{\"addon_id\":\"sf-vanilla-sweetener-012\",\"name\":\"Sugar Free Vanilla Sweetener\",\"options\":[\"ADD\"]},{\"addon_id\":\"sf-vanilla-sweetener-012\",\"name\":\"Sugar Free Vanilla Sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"hazelnut-sweetener-013\",\"name\":\"Hazelnut Sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"vanilla-sweetener-011\",\"name\":\"Vanilla sweetener\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"chocolate-sauce-014\",\"name\":\"Chocolate Sauce\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"caramel-sauce-015\",\"name\":\"Caramel Sauce\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"honey-016\",\"name\":\"Honey\",\"options\":[\"NO\",\"ADD\"]},{\"addon_id\":\"sugar-017\",\"name\":\"Sugar \",\"options\":[\"NO\",\"ADD\"]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "What kind of syrup 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\": \"66918\",\"addons\": [{\"addon_id\": \"011\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order_item"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_item_id\":\"66918\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"89469\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"89469\", \"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\": \"66918\", \"menu_item_id\": \"mochae-4321\", \"menu_item_name\": \"Mocha\", \"addons\": [{\"addon_id\": \"011\", \"option\":\"ADD\"}]}]}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "Vanilla please"
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Okay, we have a vanilla mocha"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"89469\"}"
},
{
"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"
},
{
"annotations": [],
"index": 7,
"segments": [],
"speaker": "assistant",
"text": "okay, your order will be ready shortly"
}
] |
dlg-fe6c3152-e3a5-4fdf-8007-c9cba083adb2 | 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\": \"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-6366\",\"name\":\"Matcha Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"matcha-latte-6366\"}"
},
{
"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\": \"matcha-latte-6366\",\"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\": \"83608\",\"order_item_id\":\"63130\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"83608\",\"order_id\": \"83608\", \"menu_item_id\": \"matcha-latte-6366\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"83608\",\"order_item_id\":\"49521\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"83608\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"83608\", \"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\": \"63130\", \"menu_item_id\": \"matcha-latte-6366\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"49521\", \"menu_item_id\": \"matcha-latte-6366\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I need to get two Matcha Lattes, with one of those being decaf"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok. Is the order displayed on the screen correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"83608\"}"
},
{
"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": "I will have your drinks ready for you shortly at the coffee bar."
}
] |
dlg-1f97c3a5-bfe6-4761-8983-715f17af9fc0 | 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-1824\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-1824\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"44379\",\"order_item_id\":\"17463\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"44379\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"44379\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"six of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"17463\", \"menu_item_id\": \"mocha-1824\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi! I'm Jay-jay and i do like some Mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "All right, I have this order down for you here, is it correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"mocha-1824\"}"
},
{
"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\": \"17463\",\"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\":\"17463\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"44379\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"44379\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"six of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"17463\", \"menu_item_id\": \"mocha-1824\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Ugh, no. Sorry. I changed my mind and I want that to be decaf instead."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "No worries. There, I have updated your order, is it correct this time?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"44379\"}"
},
{
"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": "100%. Thank you!"
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "You're welcome, and please go to our coffee bar and it will be coming right up!"
}
] |
dlg-9d2d27c5-c601-427a-9141-9b5fc791eff4 | 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-6732\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% Milk OR extra foam\", \"menu_item_id\":\"cortado-6732\"}"
},
{
"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-6732\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"notes\": \"extra foam\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"60076\",\"order_item_id\":\"39146\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"60076\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"60076\", \"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\": \"39146\", \"menu_item_id\": \"cortado-6732\", \"menu_item_name\": \"Cortado\", \"notes\": \"extra foam\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I want to get a Cortado with 2% milk and make sure it has extra foam on it."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "ok can you just check to make sure I have your order right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"60076\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes it is"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok I will have it out for you as soon as I possibly can"
}
] |
dlg-955da2e4-465f-4651-b2ce-55fe30e39f5d | 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, is it supposed to rain later? We sure need it."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm not sure about that but would you like to place a drink order?"
}
] |
dlg-1244f72b-a619-4f91-9cfb-4ccf7802eb8c | 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-7899\",\"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-7899\"}"
},
{
"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-7899\",\"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\": \"76654\",\"order_item_id\":\"49616\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"76654\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"76654\", \"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\": \"49616\", \"menu_item_id\": \"mocha-7899\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"triple\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to order a triple mocha, thanks."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"76654\"}"
},
{
"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": "The order appears correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Your order will be ready at the coffee bar shortly."
}
] |
dlg-66f2d456-c8ca-4efe-b13f-b11eaf30a55c | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Americano\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like an Americano please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry, we're not able to make that, but we do have a variety of other delicious drinks!"
},
{
"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 what my options are again?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here's the menu, let me know when you are ready to order."
}
] |
dlg-5609b152-86b1-4bed-a5a8-ddf774e8eb40 | Coffee | Auto template 25 What's in a <drink> | *SCENARIO: Ordering from a coffee bar*
*OTHER BEVERAGES on the COFFEE BAR MENU*
{{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}}
{{ENTER drink drink Enter just the drink name from one of the list choices above.}}
{{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}}
{{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}}
{{CONVERSATION
hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way)
call get_menu_items request {"query": "var_drink", "fields": ["description"]}
response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]}
hint assistant (Say this in a slightly different way: var_details.)
}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Americano\", \"fields\": [\"description\"]}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\": [{\"description\": \"The Americano is a mix of espresso and hot water(10) oz\", \"menu_item_id\": \"americano-0367\", \"name\": \"Americano\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey, I'm wondering what's in the Americano. I'm not sure I'd like it."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "It's simple, the American is made up of 10 ounces of hot water, and espresso."
}
] |
dlg-d5ac89f0-97f7-46ac-bf4c-8a7219b83210 | Coffee | Auto template 20 order a coffee drink TO GO | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-2498\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-2498\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"78654\",\"order_item_id\":\"35888\"}"
},
{
"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\": \"78654\", \"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\": \"78654\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"78654\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"78654\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"three of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"35888\", \"menu_item_id\": \"cappuccino-2498\", \"menu_item_name\": \"Cappuccino\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Cappuccino to go please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"78654\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "That looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order will be right up over at the coffee bar."
}
] |
dlg-5b5bf993-b4d1-4076-9680-ea799f9b27b3 | Coffee | Auto template 23 order a coffee drink then ask for sweeteners | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*CHOOSE A DRINK*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*Choose a term*
{{ENTER sweet_term word Enter the word "sweetener" or "syrup":}}
*Choose a SWEETENER*
{{LIST Vanilla,Sugar Free Vanilla,Hazelnut, Caramel Sauce}}
{{ENTER sweet_name name sweetener names (the one without a number) as it is written from the list above:}}
*SWEETENER ID*
{{LIST vanilla-sweetener-011,sugar-free-vanilla-sweetener-012,hazelnut-sweetener-013,caramel-sauce-15}}
{{ENTER sweet_id id Enter the sweetener ID that matches your sweetener name exactly as it is written from the list above:}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink but don't mention any modifiers.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (asks what kind of var_sweet_term they have)
call get_addons request {"query": "var_sweet_term", "menu_item_id":"var_menu_item_id"}
response get_addons response {"addons":[{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["ADD"]},{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["NO","ADD"]},{"addon_id":"hazelnut-sweetener-013","name":"Hazelnut Sweetener","options":["NO","ADD"]},{"addon_id":"vanilla-sweetener-011","name":"Vanilla sweetener","options":["NO","ADD"]},{"addon_id":"chocolate-sauce-014","name":"Chocolate Sauce","options":["NO","ADD"]},{"addon_id":"caramel-sauce-015","name":"Caramel Sauce","options":["NO","ADD"]},{"addon_id":"honey-016","name":"Honey","options":["NO","ADD"]},{"addon_id":"sugar-017","name":"Sugar ","options":["NO","ADD"]}]}
force assistant We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar.
hint user (Say you want to add the var_sweet_name.)
call update_order_item request {"order_item_id": "var_order_item_id","addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}
response update_order_item response {"order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}]}
hint assistant (the worker asks the customer again to confirm the order is correct before sending it to the coffee bar).
hint user (confirms it's correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar -- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-4856\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-4856\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"10273\",\"order_item_id\":\"20135\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"10273\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"10273\", \"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\": \"20135\", \"menu_item_id\": \"latte-4856\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, give me a Latte, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "You've got it. If we have the order correct, I'll send it on to the coffee bar for you."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"syrup\", \"menu_item_id\":\"latte-4856\"}"
},
{
"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": "Sure, but what are the syrup options?"
},
{
"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\": \"20135\",\"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\":\"20135\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"10273\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"10273\", \"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\": \"20135\", \"menu_item_id\": \"latte-4856\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-011\", \"option\":\"ADD\"}]}]}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "I'll add Vanilla, please."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Will do. If you tell me I've got the order right, I'll send it on to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"10273\"}"
},
{
"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": "You have it right."
},
{
"annotations": [],
"index": 7,
"segments": [],
"speaker": "assistant",
"text": "Great! The coffee bar will have that ready for you ASAP."
}
] |
dlg-cf78ca62-9d59-43af-b477-db8f37cfde68 | 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-0033\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-0033\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"53016\",\"order_item_id\":\"83061\"}"
},
{
"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\": \"53016\", \"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\": \"53016\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"53016\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"53016\", \"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\": \"83061\", \"menu_item_id\": \"latte-0033\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey, can I get 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\": \"53016\"}"
},
{
"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": "Yup, that's perfect."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay we'll have that on the bar for you in just a few minutes. thanks!"
}
] |
dlg-219bb6e2-4ab8-4ee4-8e42-29cdadf0d530 | 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-4581\",\"name\":\"cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-4581\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"62955\",\"order_item_id\":\"88052\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"62955\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"62955\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"88052\", \"menu_item_id\": \"cappuccino-4581\", \"menu_item_name\": \"cappuccino\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a cappuccino please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Is it right on the screen before I send it off?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"syrup\", \"menu_item_id\":\"cappuccino-4581\"}"
},
{
"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 syrup do you guys 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\": \"88052\",\"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\":\"88052\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"62955\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"62955\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"88052\", \"menu_item_id\": \"cappuccino-4581\", \"menu_item_name\": \"cappuccino\", \"addons\": [{\"addon_id\": \"013\", \"option\":\"ADD\"}]}]}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "I want hazelnut."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "OK. Please check it once more."
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"62955\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 6,
"segments": [],
"speaker": "user",
"text": "It's good."
},
{
"annotations": [],
"index": 7,
"segments": [],
"speaker": "assistant",
"text": "OK. Wait at the bar."
}
] |
dlg-81269221-5728-4414-8ea1-05480c78d1f3 | 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\": \"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-0983\",\"name\":\"Matcha Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"matcha-latte-0983\"}"
},
{
"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\": \"matcha-latte-0983\",\"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\": \"26401\",\"order_item_id\":\"52028\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"26401\",\"order_id\": \"26401\", \"menu_item_id\": \"matcha-latte-0983\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"26401\",\"order_item_id\":\"71238\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"26401\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"26401\", \"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\": \"52028\", \"menu_item_id\": \"matcha-latte-0983\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"71238\", \"menu_item_id\": \"matcha-latte-0983\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I want two Matcha Lattes please, one decaf and the other caffeinated."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Alright, before I send it to be made, does your order appear correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"26401\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Looks perfect to me."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Lovely, I'm sending it off and it should arrive shortly at the coffee bar for you."
}
] |
dlg-b5bb563f-1dbf-46cb-b519-b565ee0e6902 | Coffee | Auto template 22 notes based on initial order utterance - fixed | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER*
Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. )
{{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made).
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-9934\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Whole Milk OR light on the chocolate\", \"menu_item_id\":\"mocha-9934\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-9934\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}], \"notes\": \"light on the chocolate\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"49050\",\"order_item_id\":\"55789\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"49050\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"49050\", \"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\": \"55789\", \"menu_item_id\": \"mocha-9934\", \"menu_item_name\": \"Mocha\", \"notes\": \"light on the chocolate\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get the whole milk mocha that's light on the chocolate please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay is this correct on your screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"49050\"}"
},
{
"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": "I'll have that ready for you in about 5 minutes."
}
] |
dlg-37a66fff-4817-4d6b-9b12-8467e9790f5f | 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-1546\",\"name\":\"Steamer\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"steamer-1546\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"98129\",\"order_item_id\":\"90403\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"98129\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"98129\", \"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\": \"90403\", \"menu_item_id\": \"steamer-1546\", \"menu_item_name\": \"Steamer\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I need to order a Steamer."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, can you verify that this is correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"98129\"}"
},
{
"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": "It is!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Amazing! It is going to be ready for you at the coffee bar super shortly."
}
] |
dlg-d20c636c-6be5-41c7-8a7f-34e7bbe8a6ee | 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-0987\",\"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-0987\"}"
},
{
"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-0987\",\"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\": \"38415\",\"order_item_id\":\"80792\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"38415\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"38415\", \"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\": \"80792\", \"menu_item_id\": \"mocha-0987\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi I'd like one decaf Mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm that your order is correct please."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"38415\"}"
},
{
"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": "Excellent. Your order will be available for you at the coffee bar shortly."
}
] |
dlg-889b719f-34e7-4275-b89d-ed702fe657f3 | 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-2938\",\"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-2938\"}"
},
{
"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-2938\",\"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\": \"71847\",\"order_item_id\":\"52652\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"71847\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"71847\", \"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\": \"52652\", \"menu_item_id\": \"cortado-2938\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a decaf cortado please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, please confirm this is right and I'll send it out to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"71847\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "That's great."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok it'll be ready in a few at the coffee bar."
}
] |
dlg-e15826a5-ecb8-4802-b9d5-02d0016ecfce | 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\":\"92911\",\"name\":\"classic black tea\"}, {\"menu_item_id\":\"84488\",\"name\":\"iced black tea\"}, {\"menu_item_id\":\"40868\",\"name\":\"iced sweetened black tea\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "What kinds of black tea can I order here?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "You can order classic black tea, iced black tea, and iced sweetened black tea."
}
] |
dlg-c686da45-4412-4423-927c-e5035f7abb09 | 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\": \"batteries\"}"
},
{
"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 guys sell any batteries?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry, we don't sell batteries here. Would you like to buy something off our menu?"
}
] |
dlg-8a7fb9e5-f8b4-4fae-a5c9-4558c2d08f73 | 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-3933\",\"name\":\"latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk OR vanilla sweetener\", \"menu_item_id\": \"latte-3933\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla sweetener-484\", \"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-3933\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"vanilla sweetener-484\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"83314\",\"order_item_id\":\"85559\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"83314\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"83314\", \"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\": \"85559\", \"menu_item_id\": \"latte-3933\", \"menu_item_name\": \"latte\", \"addons\": [{\"addon_id\": \"vanilla sweetener-484\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Could I please get a vanilla latte with 2% milk?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, please take a look at the screen and let me know if that looks correct."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"83314\"}"
},
{
"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, that looks right to me."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, thank you. Your order will be ready pretty soon."
}
] |
dlg-2fe297bf-3b84-4375-a297-7e305424bb2c | 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, do you thin this is a good jacket to wear on a date?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I do not know. I can only help you order coffee or tea drinks, if you want?"
}
] |
dlg-166822fc-67de-422c-b3a6-fd0dc2e4e27a | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-4678\",\"name\":\"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello, I'd like to have a mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Unfortunately, we don't have a mocha. The closest thing we have is a Cortado, is that something you'd want?"
}
] |
dlg-06f7fab2-c901-4610-9144-5be63a722cee | Coffee | Auto template 30 Notes after no relevant addons found | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*SPECIAL*
{{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-3969\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"not too hot\", \"menu_item_id\":\"cappuccino-3969\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-3969\",\"quantity\": \"1\", \"notes\": \"not too hot\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"31423\",\"order_item_id\":\"52050\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"31423\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"31423\", \"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\": \"52050\", \"menu_item_id\": \"cappuccino-3969\", \"menu_item_name\": \"Cappuccino\", \"notes\": \"not too hot\"}]}"
}
],
"index": 0,
"segments": [
{
"annotations": [
{
"name": "request"
}
],
"annotator_id": "GENERATED",
"end_index": "51",
"start_index": "40",
"text": "not too hot"
}
],
"speaker": "user",
"text": "can you fix me a Cappuccino and make it not too hot so I don't burn myself"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "yeah, we can do that for you, would you please confirm the order that's showing is correct."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"31423\"}"
},
{
"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, we will have that ready lickety-split at the bar"
}
] |
dlg-2d3ed7aa-76d9-4cf0-b42c-09a012b116b7 | 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\": \"Mint Chocolate 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": "Hello! Can I please have a Mint Chocolate Coffee?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We do not have a matching item for that on the menu. Would you like an alternative?"
},
{
"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": "Please show me the menu."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here you go. What can I do for you?"
}
] |
dlg-e9463f41-4fa7-4ea5-9e31-10b444c7dfae | 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": "Are you single? Would you like to go out with me?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry, I am not at liberty to say, but if you want to order a coffee or tea drink, I'm all yours."
}
] |
dlg-d049d65a-69fc-41b6-b4f4-fd4c58197448 | 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-1234\",\"name\":\"cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-1234\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"20526\",\"order_item_id\":\"54513\"}"
},
{
"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\": \"20526\", \"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\": \"20526\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"20526\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"20526\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"four of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"54513\", \"menu_item_id\": \"cortado-1234\", \"menu_item_name\": \"cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would 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\": \"20526\"}"
},
{
"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, your coffee will be ready soon at the coffee bar."
}
] |
dlg-bb0c762f-a170-4d3d-863b-268587fe9251 | 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-2837\",\"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-2837\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-357\", \"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-2837\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-357\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"66240\",\"order_item_id\":\"48475\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"66240\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"66240\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"48475\", \"menu_item_id\": \"americano-2837\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"caramel-sauce-357\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like an Americano with caramel, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please look at your order and make sure it's right."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"66240\"}"
},
{
"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 got it right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, great, that will be ready for you in a couple minutes."
}
] |
dlg-03227b13-4e0f-4eaa-a779-938e22b006cf | Coffee | Auto template 16 do you have x | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question:
*CATEGORY*
{{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}}
{{RAND item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.)
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]}
hint assistant (Answers Yes, we have var_drink1 and var_drink2)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"herbal tea\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"59838\",\"name\":\"special tea drinks\"}, {\"menu_item_id\":\"25156\",\"name\":\"black tea\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, do you have herbal tea here?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes, we also have special tea drinks and black tea as well. Along with many others."
}
] |
dlg-7e8aea42-952f-400a-b23d-b3428be2d3df | Coffee | Auto template 31 Order two same drinks differing by caffeine | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-1234\",\"name\":\"cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"cappuccino-1234\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-1234\",\"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\": \"80910\",\"order_item_id\":\"55113\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"80910\",\"order_id\": \"80910\", \"menu_item_id\": \"cappuccino-1234\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"80910\",\"order_item_id\":\"21421\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"80910\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"80910\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of diamondsC\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"55113\", \"menu_item_id\": \"cappuccino-1234\", \"menu_item_name\": \"cappuccino\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"21421\", \"menu_item_id\": \"cappuccino-1234\", \"menu_item_name\": \"cappuccino\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get one decaf cappuccino and one regular cappuccino?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does that look correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"80910\"}"
},
{
"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, should be up shortly."
}
] |
dlg-0a1ec4cc-687d-44b1-9e61-006890434531 | 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\": \"Frappucino\"}"
},
{
"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 frappucino?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry, we don't have a frappucino here, can I get you something else?"
}
] |
dlg-5157fb1e-a987-4f24-9f99-062f50203f54 | 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": "Do you know if Justin Timberlake is coming through here on his big tour?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry, I'm unable to answer that for you, but I can help you order some coffee or tea if you'd like."
}
] |
dlg-c5be148b-76c9-4bf8-b5f4-40f97280ec93 | 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\": \"Café au lait\"}"
},
{
"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’d like a café au lait, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I’m sorry, but that isn’t on the menu."
},
{
"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": "Then could I have a latte?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Certainly. Here you are. Would there be anything else?"
}
] |
dlg-15f5962c-1493-4e61-91c7-891ad15eb629 | 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-4567\",\"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-4567\"}"
},
{
"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-4567\",\"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\": \"39671\",\"order_item_id\":\"10050\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"39671\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"39671\", \"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\": \"10050\", \"menu_item_id\": \"mocha-4567\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a decaf mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order is on 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\": \"39671\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your mocha will be at the bar in a moment."
}
] |
dlg-3113c633-2569-4bee-a94c-2619552e1c9b | 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-6952\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-6952\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"60521\",\"order_item_id\":\"54643\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"60521\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"60521\", \"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\": \"54643\", \"menu_item_id\": \"macchiato-6952\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'll have a Macchiato."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is your order correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"60521\"}"
},
{
"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, it will be made at the coffee bar and ready for pickup soon."
}
] |
dlg-7ae984c4-42ad-4060-a62c-78df642b72fa | Coffee | Auto template 31 Order two same drinks differing by caffeine | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-7753\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"latte-7753\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-7753\",\"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\": \"43954\",\"order_item_id\":\"54873\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"43954\",\"order_id\": \"43954\", \"menu_item_id\": \"latte-7753\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"43954\",\"order_item_id\":\"72212\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"43954\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"43954\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"2 of Hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"54873\", \"menu_item_id\": \"latte-7753\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"72212\", \"menu_item_id\": \"latte-7753\", \"menu_item_name\": \"Latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get two lattes? one of them decaf please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, is this right?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"43954\"}"
},
{
"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 thats it."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay It should only take 5 minutes."
}
] |
dlg-36ee5515-d2d9-4ba5-a0a1-fa8d1f7018e6 | 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-0003\",\"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-0003\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"56792\",\"order_item_id\":\"35322\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"56792\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"56792\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"two of diamonds\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"35322\", \"menu_item_id\": \"chai-latte-0003\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to order two Chai Lattes."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the displayed item correct? If so, I'll send this request to the Coffee bar."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"56792\"}"
},
{
"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 sent the request and it will be ready in short order."
}
] |
dlg-e3ad6649-b78f-4f81-b429-e0811d4a1ead | Coffee | Auto template 23 order a coffee drink then ask for sweeteners | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*CHOOSE A DRINK*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*Choose a term*
{{ENTER sweet_term word Enter the word "sweetener" or "syrup":}}
*Choose a SWEETENER*
{{LIST Vanilla,Sugar Free Vanilla,Hazelnut, Caramel Sauce}}
{{ENTER sweet_name name sweetener names (the one without a number) as it is written from the list above:}}
*SWEETENER ID*
{{LIST vanilla-sweetener-011,sugar-free-vanilla-sweetener-012,hazelnut-sweetener-013,caramel-sauce-15}}
{{ENTER sweet_id id Enter the sweetener ID that matches your sweetener name exactly as it is written from the list above:}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink but don't mention any modifiers.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (asks what kind of var_sweet_term they have)
call get_addons request {"query": "var_sweet_term", "menu_item_id":"var_menu_item_id"}
response get_addons response {"addons":[{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["ADD"]},{"addon_id":"sf-vanilla-sweetener-012","name":"Sugar Free Vanilla Sweetener","options":["NO","ADD"]},{"addon_id":"hazelnut-sweetener-013","name":"Hazelnut Sweetener","options":["NO","ADD"]},{"addon_id":"vanilla-sweetener-011","name":"Vanilla sweetener","options":["NO","ADD"]},{"addon_id":"chocolate-sauce-014","name":"Chocolate Sauce","options":["NO","ADD"]},{"addon_id":"caramel-sauce-015","name":"Caramel Sauce","options":["NO","ADD"]},{"addon_id":"honey-016","name":"Honey","options":["NO","ADD"]},{"addon_id":"sugar-017","name":"Sugar ","options":["NO","ADD"]}]}
force assistant We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar.
hint user (Say you want to add the var_sweet_name.)
call update_order_item request {"order_item_id": "var_order_item_id","addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}
response update_order_item response {"order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_sweet_id", "option":"ADD"}]}]}
hint assistant (the worker asks the customer again to confirm the order is correct before sending it to the coffee bar).
hint user (confirms it's correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar -- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-9876\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-9876\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"65841\",\"order_item_id\":\"56218\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"65841\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"65841\", \"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\": \"56218\", \"menu_item_id\": \"latte-9876\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi. Can I order one Latte?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Of course. I just entered the order. Could you confirm it on the screen for me, please?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"sweetener\", \"menu_item_id\":\"latte-9876\"}"
},
{
"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": "Uh, what kind of sweeteners do you have?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "We have Vanilla, Sugar Free Vanilla, Hazelnut, Chocolate Sauce, Caramel Sauce, Honey, and Sugar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order_item"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_item_id\": \"56218\",\"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\":\"56218\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"65841\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"65841\", \"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\": \"56218\", \"menu_item_id\": \"latte-9876\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-011\", \"option\":\"ADD\"}]}]}"
}
],
"index": 4,
"segments": [],
"speaker": "user",
"text": "Ooo. Can I get Vanilla?"
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Sure. I just added that to your order. Could you confirm it for me please?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"65841\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 6,
"segments": [],
"speaker": "user",
"text": "Yes. That is right."
},
{
"annotations": [],
"index": 7,
"segments": [],
"speaker": "assistant",
"text": "Okay. Thank you. We will have your order out for you in a few minutes, over by the coffee bar."
}
] |
dlg-b402707a-b342-482e-bf29-dcc748bb0a99 | Coffee | Auto template 26 order match and chai latte drinks no mods | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-1988\",\"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-1988\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"69742\",\"order_item_id\":\"61292\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"69742\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"69742\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"61292\", \"menu_item_id\": \"chai-latte-1988\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get a chai latte please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "ok can you check the screen to confirm your order is correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"69742\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "ok we will have it out for you as soon as possible"
}
] |
dlg-e4065291-9a2c-4857-a21c-54ce21256cc1 | Coffee | Auto template 19 order a coffee drink specify espresso shots and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify two things: it's a var_shots and you want var_milk milk. How would you say it naturally? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots OR var_milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started.
hint user (confirms all looks right)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Espresso\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"espresso-0328\",\"name\":\"Espresso\"}, {\"menu_item_id\":\"Cappuccino-024\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Quadruple OR Whole\", \"menu_item_id\":\"espresso-0328\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"espresso-0328\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Quadruple\"},{\"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\": \"36846\",\"order_item_id\":\"36198\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"36846\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"36846\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Gin Rummy\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"36198\", \"menu_item_id\": \"espresso-0328\", \"menu_item_name\": \"Espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Quadruple\"},{\"attribute_id\": \"milk-options\", \"option\":\"Whole Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to order a quadruple shot espresso with whole milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"36846\"}"
},
{
"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 correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, we'll get that right to you soon."
}
] |
dlg-8c083b00-cf52-419b-9427-af6ff89585e4 | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-2390\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat milk\", \"menu_item_id\":\"mocha-2390\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-2390\",\"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\": \"88782\",\"order_item_id\":\"27012\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"88782\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"88782\", \"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\": \"27012\", \"menu_item_id\": \"mocha-2390\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a mocha with oat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok. Is this right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"88782\"}"
},
{
"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 soon."
}
] |
dlg-d0fe2618-7636-4930-9a65-159b9562b9f0 | 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\": \"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-4422\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"decaffeinated\", \"menu_item_id\":\"cappuccino-4422\"}"
},
{
"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\": \"cappuccino-4422\",\"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\": \"59807\",\"order_item_id\":\"14164\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"59807\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"59807\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Blackjack\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14164\", \"menu_item_id\": \"cappuccino-4422\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to order a decaf cappuccino."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does your order look correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"59807\"}"
},
{
"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 great, your order will be ready soon."
}
] |
dlg-e312ee86-6c64-423f-b486-ed511feb50c7 | 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\": \"Machiatto\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiatto-3871\",\"name\":\"Machiatto\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk OR Vanilla Sweetener\", \"menu_item_id\": \"macchiatto-3871\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-483\", \"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\": \"macchiatto-3871\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-sweetener-483\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"43918\",\"order_item_id\":\"42965\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"43918\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"43918\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"42965\", \"menu_item_id\": \"macchiatto-3871\", \"menu_item_name\": \"Machiatto\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-483\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Let's see, I think I want a Machiatto, with Almond milk, and add some Vanilla too. Thanks."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please check the display. Is that your correct order?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"43918\"}"
},
{
"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. It'a all right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok. Your order will be ready for pick-up, at the coffee bar, in about five minutes."
}
] |
dlg-31dc03ec-2a7f-4e0d-b1f2-f395762fd773 | Coffee | Auto template 15 what kind of coffee do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST coffee,coffee drinks,espresso drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
{{CONVERSATION
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have a large variety of drinks including latte, mocha, cappuccino, americano, iced coffee, and several others. Politely suggests they take a look at the menu for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can you tell me what kinda coffe you have?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have many types, lattes, mochas, americanos, all up on the menu."
}
] |
dlg-b23092ad-b6ea-4cfa-ac92-1a9b496d7526 | 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\":\"wildstrawberry-098\",\"name\":\"Wild Strawberry\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"wildstrawberry-098\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"60765\",\"order_item_id\":\"56725\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"60765\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"60765\", \"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\": \"56725\", \"menu_item_id\": \"wildstrawberry-098\", \"menu_item_name\": \"Wild Strawberry\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Wild Strawberry tea with two sugars please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm this order before I 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\": \"60765\"}"
},
{
"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": "Awesome, your order will be ready at the coffee bar in a few minutes."
}
] |
dlg-ab3a454a-caa0-4f0c-a580-34c1e7f2db1d | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-932\",\"name\":\"cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll get a mocha today, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We do not have mocha on our menu. By any chance did you mean to order a \"cortado\"?"
}
] |
dlg-a9d8a8b7-46b0-4b61-913f-e68c4058c628 | 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-6522\",\"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-6522\"}"
},
{
"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-6522\",\"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\": \"28176\",\"order_item_id\":\"31676\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"28176\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"28176\", \"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\": \"31676\", \"menu_item_id\": \"mocha-6522\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll have a decaf Mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please make sure everything displayed is correct."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"28176\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, in a few minutes your order will be ready at the coffee bar, thank you."
}
] |
dlg-ca1caba1-50c3-45ed-93d5-838b92c440db | Coffee | Auto template 5 Order a coffee drink mod decaf or iced, milk, sweetener FIX | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*FIRST MOD CHOICE -- BE CAREFUL HERE!!!*
{{ENTER attri_id id Enter ONE of these two exactly as written: caffeine OR hot-or-iced.}}
{{ENTER main_option option If you chose "caffeine" above write Decaf here (no quotes). If you chose "hot-or-iced" above, write "Iced" here (no quotes): }}
{{ENTER other_option option If you chose caffeine above, write Caff here (no quotes). If you chose hot-or-iced, write Hot here (no quotes): }}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*SWEETENERS*
{{LIST Vanilla,Sugar-Free Vanilla,Hazelnut,Chocolate Sauce,Caramel Sauce}}
{{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}}
{{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}}
*TASK: Write the transcript of a conversation that you would have with the coffee bar worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink that has three modifications: (a) var_main_option (b) var_milk milk and (c) var_sweet (in whatever order seems right). Do NOT use the word "sweetener" or "sauce". How would you say it? *Say it out loud first* then write it.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_main_option OR var_milk milk OR var_sweet", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "var_attri_id", "attribute_name": "var_attri_id", "options":["var_main_option","var_other_option"]},{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "var_attri_id", "option":"var_main_option"}, {"attribute_id": "milk-options", "option":"var_milk Milk"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}]}
force assistant Please check the details of your order. Are you ready to send it to the coffee bar?
hint user (confirms)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-4518\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Iced OR Almond milk OR Vanilla Sweetener\", \"menu_item_id\":\"cappuccino-4518\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"attribute_name\": \"hot-or-iced\", \"options\":[\"Iced\",\"Hot\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-083\", \"name\": \"Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-4518\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-083\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"56935\",\"order_item_id\":\"14424\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"56935\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"56935\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14424\", \"menu_item_id\": \"cappuccino-4518\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-083\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get an Iced Cappuccino with Almond milk and please add some Vanilla Sweetener."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please check the details of your order. Are you ready to send it to the coffee bar?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"56935\"}"
},
{
"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 please"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK we will have that out for you as soon as possible."
}
] |
dlg-e91fae6c-84df-41d9-ba05-b8a128ced02d | Coffee | Auto template 25 What's in a <drink> | *SCENARIO: Ordering from a coffee bar*
*OTHER BEVERAGES on the COFFEE BAR MENU*
{{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}}
{{ENTER drink drink Enter just the drink name from one of the list choices above.}}
{{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}}
{{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}}
{{CONVERSATION
hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way)
call get_menu_items request {"query": "var_drink", "fields": ["description"]}
response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]}
hint assistant (Say this in a slightly different way: var_details.)
}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Americano\", \"fields\": [\"description\"]}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\": [{\"description\": \"he Americano is a mix of espresso and hot water (10 oz)\", \"menu_item_id\": \"americano-5217\", \"name\": \"Americano\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can you tell me what is in an Americano please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure no problem. An Americano is typically comprised of espresso and 10oz of hot water."
}
] |
dlg-195021b9-3633-4081-be5d-17ed69b0bea7 | 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-3465\",\"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-3465\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"98782\",\"order_item_id\":\"54235\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"98782\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"98782\", \"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\": \"54235\", \"menu_item_id\": \"chai-latte-3465\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to order a chai latte."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does this all look correct to you?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"98782\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great! Your drink will be ready at the bar shortly."
}
] |
dlg-e8b99993-6eaf-488f-aa18-a895e1fb07a5 | Coffee | Auto template 4 order a coffee drink mod milk and sweetener | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-5783\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk OR Chocolate Sauce\", \"menu_item_id\": \"cortado-5783\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"chocolate-sauce-476\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-5783\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-476\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"69972\",\"order_item_id\":\"54477\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"69972\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"69972\", \"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\": \"54477\", \"menu_item_id\": \"cortado-5783\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"chocolate-sauce-476\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I have a Cortada with almond milk and chocolate flavoring?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is everything correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"69972\"}"
},
{
"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 right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Your order will be ready soon."
}
] |
dlg-7d4aa859-33f4-4c80-a746-d3d3da5fbd97 | Coffee | Auto template 11 order a coffee drink no results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*DRINK NOT SHOWN ABOVE*
{{ENTER drink drink Enter a drink that might be offered in a Coffee Bar but that is NOT LISTED above.}}
*CATEGORY*
{{ENTER category category Enter one of these: coffee OR coffee drinks.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[]}
hint assistant (Explains there are no matching menu items for that then asks if they want something else. MAKE IT SOUND NATURAL)
hint user (Asks the coffee bar attendant to show the menu to them again)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Here you go. Let me know if I can get you anything.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Americano\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like an Americano."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sorry, there are no matching menu items, would you like something else?"
}
] |
dlg-d334fb58-e73c-4716-93f2-20f021b72c73 | 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": "Hello. Can I order one Espresso, please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I’m sorry, but we don’t actually carry Espresso. Is there anything else from our menu that you would like?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Ok. Where can I find the menu?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here you go. Let me know if I can help you with anything"
}
] |
dlg-1ebfd0ae-cfe5-458a-9aaa-ea74bbcb2221 | 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-6677\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Caramel Sauce\", \"menu_item_id\": \"latte-6677\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-666\", \"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-6677\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-666\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"32985\",\"order_item_id\":\"98629\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"32985\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"32985\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"98629\", \"menu_item_id\": \"latte-6677\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"caramel-sauce-666\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a Latte with Caramel."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I the order displayed correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"32985\"}"
},
{
"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 soon at the bar."
}
] |
dlg-c3ed616c-4d6b-4850-a7db-db1b3930ff59 | 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-0578\",\"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-0578\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"96921\",\"order_item_id\":\"80483\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"96921\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"96921\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of spades\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"80483\", \"menu_item_id\": \"cold-brew-0578\", \"menu_item_name\": \"Cold Brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I have a cold brew please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, is the order correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"96921\"}"
},
{
"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": "You can pick it up at the coffee bar soon."
}
] |
dlg-82f58a7c-0797-454e-98bb-421550f73297 | Coffee | Auto template 26 order match and chai latte drinks no mods | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-2223\",\"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-2223\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"81987\",\"order_item_id\":\"10007\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"81987\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"81987\", \"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\": \"10007\", \"menu_item_id\": \"chai-latte-2223\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a chai latte"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the information on the screen correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"81987\"}"
},
{
"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 I confirm the information is correct"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you and your order will be out shortly"
}
] |
dlg-b65e74ad-c383-45a8-a5ee-dd30e365a7f5 | 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-2429\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-2429\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"14229\",\"order_item_id\":\"18492\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"14229\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"14229\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"18492\", \"menu_item_id\": \"cortado-2429\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Cortado?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Would you please confirm the accuracy of your order so I can send it to the coffee bar for preparation?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"14229\"}"
},
{
"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": "It's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. We'll have your order up in a moment."
}
] |
dlg-92a8605e-31b4-4301-8bfd-10ba60647575 | 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-9648\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-9648\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"55770\",\"order_item_id\":\"74101\"}"
},
{
"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\": \"55770\", \"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\": \"55770\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"55770\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"55770\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"74101\", \"menu_item_id\": \"macchiato-9648\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll take a Macchiato, and that's for carry out."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"55770\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yep, that's great."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright, your order will be prepared momentarily over at the coffee bar."
}
] |
dlg-c50bdf06-54f3-4907-8ccd-1a43ac26656b | 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-5251\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-5251\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"27531\",\"order_item_id\":\"69220\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"27531\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"27531\", \"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\": \"69220\", \"menu_item_id\": \"macchiato-5251\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "can I get a Macchiato"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "sure, just confirm the order shown is correct"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"27531\"}"
},
{
"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 correct"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "ok, we will have your drink ready at the coffee bar in short order"
}
] |
dlg-bdc96af7-962f-4860-adff-c23d3fa78b33 | 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\": \"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-9233\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond\", \"menu_item_id\":\"latte-9233\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte-9233\",\"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\": \"63446\",\"order_item_id\":\"23763\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"63446\",\"menu_item_id\": \"cappuccino-1588\",\"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\": \"63446\",\"order_item_id\":\"33437\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"63446\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"63446\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"queen of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"23763\", \"menu_item_id\": \"latte-9233\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"33437\", \"menu_item_id\": \"cappuccino-1588\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like 2 coffees. 1 latte with almond milk and 1 Cappuccino with oat milk"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Would you check the order please"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"63446\"}"
},
{
"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- correct"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay then- pickup at coffee bar -ready soon"
}
] |
dlg-6dea9cbb-71e8-4ef3-abe2-0596eb0dc1d9 | 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\": \"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-5901\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"extra warm\", \"menu_item_id\":\"macchiato-5901\"}"
},
{
"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\": \"macchiato-5901\",\"quantity\": \"1\", \"notes\": \"extra warm\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"66532\",\"order_item_id\":\"80231\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"66532\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"66532\", \"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\": \"80231\", \"menu_item_id\": \"macchiato-5901\", \"menu_item_name\": \"Macchiato\", \"notes\": \"extra warm\"}]}"
}
],
"index": 0,
"segments": [
{
"annotations": [
{
"name": "request"
}
],
"annotator_id": "GENERATED",
"end_index": "30",
"start_index": "20",
"text": "extra warm"
}
],
"speaker": "user",
"text": "Hi! I would like an extra warm Macchiato, please!"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please confirm the order over here."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"66532\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "It's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Cool! It will be waiting for you at the coffee bar in just a little moment!"
}
] |