conversation_id
stringlengths 40
40
| vertical
stringclasses 1
value | scenario
stringclasses 32
values | instructions
stringclasses 28
values | utterances
listlengths 2
8
|
---|---|---|---|---|
dlg-0115a293-88fb-4be5-ad1c-08af481e7aa5 | Coffee | Auto template 4b order a coffee drink mod decaf and sweetener | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*SWEETENERS*
{{LIST Vanilla Sweetener,Sugar Free Vanilla Sweetener,Hazelnut Sweetener,Chocolate Sauce,Caramel Sauce}}
{{ENTER sweet sweet Enter ONE of the sweeteners from the above list exactly as it is written INCLUDING the word "Sweetener" or "Sauce".}}
{{ENTER addon_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 3-digit number. For example, "Vanilla Sweetener" would become "vanilla-sweetener-028". NO SPACES, NO QUOTES.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with these two modifications: (a) decaf and (b) has var_sweet. Do NOT use the word "sweetener" or "sauce" (unless you're sure you'd say it normally). How would you say it? *Say it out loud first* then write it.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf OR var_sweet", "menu_item_id": "var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf","Caff"]}], "addons": [{"addon_id": "var_addon_id", "name": "var_sweet", "default": "NO", "options": ["NO", "ADD"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}], "addons": [{"addon_id": "var_addon_id", "option":"ADD"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "addons": [{"addon_id": "var_addon_id", "option":"ADD"}], "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (confirms details are right)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly -- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-0624\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf OR Chocolate Sauce\", \"menu_item_id\": \"cortado-0624\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\",\"Caff\"]}], \"addons\": [{\"addon_id\": \"chocolate-sauce-063\", \"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-0624\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-063\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"93272\",\"order_item_id\":\"19376\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"93272\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"93272\", \"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\": \"19376\", \"menu_item_id\": \"cortado-0624\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"chocolate-sauce-063\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello I would like to order a decaf Cortado with Chocolate Sauce."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is your order correct on the screen sir?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"93272\"}"
},
{
"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 thanks."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Your order should be ready in a short while."
}
] |
dlg-0986fced-e63c-47d4-89a7-ffc7aa2de6cd | 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\": \"Galao\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there, can you make me a galao?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We don't make those here. I'm sorry for that, but if you'd like anything else I'd be happy to make it."
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "May I please see the menu again?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Absolutely, let me know if you like any of our choices and I'll make it for you."
}
] |
dlg-1441a7ec-b75d-4eaf-bdf2-bd394032159e | 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": "Seen any good movies?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I can't say that I have. What type of coffee or tea can I help you with."
}
] |
dlg-87972eb1-393b-4d6d-94b8-4aebbda11430 | 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-3321\",\"name\":\"Cortado \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% Lactose-Free milk OR Sugar-Free Vanilla Sweetener\", \"menu_item_id\": \"cortado-3321\"}"
},
{
"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-891\", \"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\": \"cortado-3321\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}], \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-891\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"61096\",\"order_item_id\":\"35270\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"61096\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"61096\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"patience\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"35270\", \"menu_item_id\": \"cortado-3321\", \"menu_item_name\": \"Cortado \", \"addons\": [{\"addon_id\": \"sugar-free-vanilla-sweetener-891\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Lactose-Free Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a cortado with 2% lactose-free milk and sugar-free vanilla sweetener."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, please check that the order is right"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"61096\"}"
},
{
"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 fine"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order will be ready shortly"
}
] |
dlg-b70a74a8-dc22-46b3-a259-dc7fd57dfaab | 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-2024\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"oat Milk OR add whipped cream\", \"menu_item_id\":\"mocha-2024\"}"
},
{
"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-2024\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}], \"notes\": \"add whipped cream\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"91142\",\"order_item_id\":\"73578\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"91142\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"91142\", \"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\": \"73578\", \"menu_item_id\": \"mocha-2024\", \"menu_item_name\": \"Mocha\", \"notes\": \"add whipped cream\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi I'd like a hot mocha with oat milk and can you add whip cream?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "sure, that's one mocha oat with whipped cream, correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"91142\"}"
},
{
"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 you got it thanks"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK coming up shortly at the coffee bar, thank you"
}
] |
dlg-517c44e8-6867-4ed8-8680-0cf8f24ee3b3 | 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 to order an Americano please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Unfortunately, there is no Americano on our menu. Would you like something else?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Can you show me the menu again?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Here you go. Let me know if I can get you anything else."
}
] |
dlg-76b17af6-0faa-44ba-9af3-fcf0d27399b4 | Coffee | Auto template 28 Order two same drinks differing by milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* of these: var_drink. HOWEVER, for ONE of them you want var_milk1 milk while for the OTHER you want var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk1 milk OR var_milk2 milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3467\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Non-Fat milk OR Almond milk\", \"menu_item_id\":\"mocha-3467\"}"
},
{
"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-3467\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"86178\",\"order_item_id\":\"71139\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"86178\",\"menu_item_id\": \"mocha-3467\",\"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\": \"86178\",\"order_item_id\":\"67499\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"86178\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"86178\", \"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\": \"71139\", \"menu_item_id\": \"mocha-3467\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]},{\"order_item_id\": \"67499\", \"menu_item_id\": \"mocha-3467\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get two Mochas. One with Non-Fat milk and one with Almond milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please check to make sure your order is correct."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"86178\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, you drinks will be ready in a few minutes over at the coffee bar."
}
] |
dlg-72d73ddf-8ed2-4096-b950-bbb00acc0df0 | 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\": \"honey\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"40061\",\"name\":\"manuka honey\"}, {\"menu_item_id\":\"97052\",\"name\":\"clover honey\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Do you have honey in stock?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We do, we carry manuka and clover honey."
}
] |
dlg-152c2018-5b70-47dc-bc64-3a7e1d4254fe | Coffee | Auto template 9 other beverages no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*OTHER BEVERAGES on the COFFEE BAR MENU*
{{LIST *Ginger Green Cold Steep Tea* (16 oz) (cold steeped tea + ice),*Matcha Latte* (12 oz) (matcha concentrate + milk + microfoam), *Chai Latte* (12 oz) (chai concentrate + milk + microfoam),Hot Chocolate (12 oz) (chocolate + milk + microfoam),Steamer (12 oz) (steamed milk + microfoam),Americano (10 oz) (espresso + hot water),Cold Brew (16 oz) (coffee concentrate + ice)}}
*CHOOSE YOUR BEVERAGE*
{{ENTER drink drink Enter one of the drinks from the list above. Say the phrase you think you'd actually use if you were ordering in a coffee/tea bar.}}
{{ENTER menu_item_id drink Now write the tea name that corresponds to your choice above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, if you say "Hot Chocolate" you would write "hot-chocolate-0291" (use your own number). NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"}, {"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Americano\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"americano-8723\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"americano-8723\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"25762\",\"order_item_id\":\"86175\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"25762\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"25762\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"kind of diamonds\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"86175\", \"menu_item_id\": \"americano-8723\", \"menu_item_name\": \"Americano\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like an Americano, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Confirm your order for me please."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"25762\"}"
},
{
"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 good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, then your order will be waiting for you at the coffee bar soon."
}
] |
dlg-7e4fa44e-7aa5-4805-94b4-0aefae699a65 | Coffee | Auto template 31 Order two same drinks differing by caffeine | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"chai latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chi-latte-2890\",\"name\":\"chai latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"chi-latte-2890\"}"
},
{
"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\": \"chi-latte-2890\",\"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\": \"52037\",\"order_item_id\":\"11457\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"52037\",\"order_id\": \"52037\", \"menu_item_id\": \"chi-latte-2890\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"52037\",\"order_item_id\":\"88702\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"52037\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"52037\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"11457\", \"menu_item_id\": \"chi-latte-2890\", \"menu_item_name\": \"chai latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"88702\", \"menu_item_id\": \"chi-latte-2890\", \"menu_item_name\": \"chai latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a decaffeinated chai latte and a regular chai latte."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please confirm if the order on the display is correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"52037\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, the order will be ready soon at the coffee bar."
}
] |
dlg-838a2c88-3e80-4765-9299-cfc1295563c7 | 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\": \"matcha drinks\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"85619\",\"name\":\"Iced Matcha Latte\"}, {\"menu_item_id\":\"41490\",\"name\":\" Strawberry Matcha Latte\"}, {\"menu_item_id\":\"60869\",\"name\":\"Matcha Milkshake\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can you tell me the different matcha drinks you serve here?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Well we currently have Iced Matcha Latte, Strawberry Matcha Latte, and Matcha Milkshakes."
}
] |
dlg-3a24e187-a320-4095-be8b-6c79afd3cda7 | 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-5522\",\"name\":\"Espresso\"}, {\"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 OR Almond\", \"menu_item_id\":\"espresso-5522\"}"
},
{
"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-5522\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"38478\",\"order_item_id\":\"49920\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"38478\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"38478\", \"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\": \"49920\", \"menu_item_id\": \"espresso-5522\", \"menu_item_name\": \"Espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Triple shot espresso with almond milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"38478\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, looks good"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. Please go to the coffee bar to pick up your order. It will be ready soon."
}
] |
dlg-d52fcac3-d088-4dd1-b9c3-531944da4ee6 | 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\": \"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-7727\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2%\", \"menu_item_id\":\"cappuccino-7727\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-7727\",\"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\": \"56566\",\"order_item_id\":\"14646\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"56566\",\"menu_item_id\": \"mocha-0335\",\"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\": \"56566\",\"order_item_id\":\"92579\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"56566\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"56566\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"14646\", \"menu_item_id\": \"cappuccino-7727\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]},{\"order_item_id\": \"92579\", \"menu_item_id\": \"mocha-0335\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey what's up, I need a Cappuccino with 25 milk and I also need a Mocha with Oat milk, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Got it, does your order look correct on that screen over there?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"56566\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Looks great."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Awesome, head over to the coffee bar and your order will be up soon."
}
] |
dlg-15927143-8e89-4769-8131-8cd5710b3856 | Coffee | Auto template 8 order hot tea no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*HOT TEAS on the COFFEE BAR MENU*
{{LIST *Peppermint Rose* (herbal),*Tangerine Rooibos* (herbal), *Cloud and Mist* (green tea), *Wild Strawberry* (green tea), *Jin Xuan* (oolong tea), *Three Cultivar Red* (black tea), *Lavender Earl Grey* (black tea), *English Breakfast* (black tea)}}
*CHOOSE YOUR TEA*
{{ENTER drink drink Enter a hot tea from the list above. Say the phrase you think you'd actually use if you were in a coffee/tea bar.}}
{{ENTER menu_item_id drink Now write the tea name that corresponds to your choice above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, if you say "English Breakfast tea" you would write "english-breakfast-0371". NO SPACES. NO QUOTES, NOT including "tea"}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink tea. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Lavender earl grey\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"lavender-earl-grey-3456\",\"name\":\"Lavender earl grey\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"lavender-earl-grey-3456\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"94086\",\"order_item_id\":\"38591\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"94086\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"94086\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"38591\", \"menu_item_id\": \"lavender-earl-grey-3456\", \"menu_item_name\": \"Lavender earl grey\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can you get me in Lavender earl grey tea?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you please confirm that the order is correct on the screen?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"94086\"}"
},
{
"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": "That’s great it will be ready soon"
}
] |
dlg-bd8e17ba-97db-47a7-aeed-60731076c346 | 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\": \"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-8290\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Single OR 2% Milk\", \"menu_item_id\":\"cappuccino-8290\"}"
},
{
"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\": \"cappuccino-8290\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"89790\",\"order_item_id\":\"92373\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"Here\", \"scope\": \"order\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"To go\", \"Delivery\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"89790\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}] }"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"89790\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"89790\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"89790\", \"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\": \"92373\", \"menu_item_id\": \"cappuccino-8290\", \"menu_item_name\": \"Cappuccino\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get a single Cappuccino with 2% milk, for here?"
},
{
"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\": \"89790\"}"
},
{
"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, you got it."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great. Your order will be available at the coffee bar as soon as it's ready."
}
] |
dlg-8907f418-2752-4147-bb05-e87aceaa6269 | 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 by any chance know who won the last Super Bowl?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm sorry but I don't really watch sports that much so I can't really answer that question for you but I can take your coffee or tea order."
}
] |
dlg-04a2182e-07ab-4610-9fd3-ea34434db44e | 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-9980\",\"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-9980\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"90092\",\"order_item_id\":\"12058\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"90092\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"90092\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"eight of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"12058\", \"menu_item_id\": \"matcha-latte-9980\", \"menu_item_name\": \"matcha latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a matcha latte."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "please confirm the order before I submit."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"90092\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright, your order will be ready soon."
}
] |
dlg-e1852d11-6fc7-4559-93db-c30dfefe2f19 | 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-3890\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Vanilla Sweetener\", \"menu_item_id\": \"latte-3890\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"vanilla-sweetener-278\", \"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-3890\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-278\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"65225\",\"order_item_id\":\"46604\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"65225\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"65225\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"46604\", \"menu_item_id\": \"latte-3890\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"vanilla-sweetener-278\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Good morning. I'd like a latte with vanilla flavoring, if possible."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure thing. Your order is displayed on the monitor in front of you. Can you confirm that it's correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"65225\"}"
},
{
"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": "Thank you, your order will be ready shortly."
}
] |
dlg-8383b15e-7ea2-489d-bc47-928709f50e45 | 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-6078\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Vanilla Sweetener\", \"menu_item_id\": \"americano-6078\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"vanilla sweetener\", \"name\": \"Vanilla Sweetener\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"americano-6078\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"vanilla sweetener\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"53457\",\"order_item_id\":\"79234\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"53457\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"53457\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"79234\", \"menu_item_id\": \"americano-6078\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"vanilla sweetener\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Americano with Vanilla added?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay is this correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"53457\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yeah that's it."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay Ill fix that up for you soon."
}
] |
dlg-6a08eda2-e22c-44a5-bb89-ad53f8210160 | 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-2355\",\"name\":\"Mocha \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond Milk OR extra milk \", \"menu_item_id\":\"mocha-2355\"}"
},
{
"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-2355\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"notes\": \"extra milk \"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"77335\",\"order_item_id\":\"25523\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"77335\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"77335\", \"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\": \"25523\", \"menu_item_id\": \"mocha-2355\", \"menu_item_name\": \"Mocha \", \"notes\": \"extra milk \",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Mocha with Almond milk, and let me have extra milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please confirm that the order is correct and I'll go ahead and send that to be made."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"77335\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, in just a moment that will be available for you at the coffee bar."
}
] |
dlg-61dfd40e-8fe0-46ca-86f0-3e2b9a95d45d | Coffee | Auto template 27 Order two same drinks no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Customer orders *TWO* of these: var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3498\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-3498\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"87016\",\"order_item_id\":\"57544\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"87016\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"87016\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"two of spades\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"57544\", \"menu_item_id\": \"mocha-3498\", \"menu_item_name\": \"mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get two mochas?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm if the order on the screen is accurate so we can 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\": \"87016\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, it will be ready shortly at the coffee bar"
}
] |
dlg-4d3cf0c7-1937-4dd9-9f5e-cefe29f0b913 | 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\": \"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-4802\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-4802\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"54152\",\"order_item_id\":\"59773\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"54152\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"54152\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ten of hearts\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"59773\", \"menu_item_id\": \"cortado-4802\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I would like to order two cortados, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, is everything correct on the screen for your order."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"54152\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, great your order will be ready soon."
}
] |
dlg-3b04f807-7216-4412-9e2c-231d3fa06ab6 | Coffee | Auto template 28 Order two same drinks differing by milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* of these: var_drink. HOWEVER, for ONE of them you want var_milk1 milk while for the OTHER you want var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk1 milk OR var_milk2 milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-4303\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk OR Non-fat milk\", \"menu_item_id\":\"mocha-4303\"}"
},
{
"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-4303\",\"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\": \"15392\",\"order_item_id\":\"11683\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"15392\",\"menu_item_id\": \"mocha-4303\",\"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\": \"15392\",\"order_item_id\":\"66663\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"15392\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"15392\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"11683\", \"menu_item_id\": \"mocha-4303\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]},{\"order_item_id\": \"66663\", \"menu_item_id\": \"mocha-4303\", \"menu_item_name\": \"Mocha\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I need two mochas, one with Almond milk and one with non-fat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure thing. Your order is right here on this screen. Please confirm its accuracy."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"15392\"}"
},
{
"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."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay fantastic. It will be available shortly at the bar."
}
] |
dlg-b7346a9c-f11e-4c49-8b8e-d0f41cf2df96 | 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\": \"28456\",\"order_item_id\":\"67951\"}"
},
{
"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\": \"28456\", \"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\": \"28456\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"28456\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"28456\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"two of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"67951\", \"menu_item_id\": \"cortado-1234\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a large Cortado 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\": \"28456\"}"
},
{
"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 good"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "We will have your drink right up at the coffee bar."
}
] |
dlg-5575e01a-1db3-4080-8b9c-bd34758ec5af | 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\":\"12126\",\"name\":\"Earl Gray black tea\"}, {\"menu_item_id\":\"31308\",\"name\":\"Ceylon black tea\"}, {\"menu_item_id\":\"16429\",\"name\":\"Darjeeling black tea\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Good morning. What kinds of black tea do you have?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We have Earl Gray black tea, Ceylon black tea, and Darjeeling black tea."
}
] |
dlg-3670c806-dc06-4a3b-a963-bfcea10dc907 | 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-4343\",\"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-4343\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"55723\",\"order_item_id\":\"96544\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"55723\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"55723\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of clubs\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"96544\", \"menu_item_id\": \"cold brew-4343\", \"menu_item_name\": \"cold brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "i want a cold brew please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "is this correct"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"55723\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes it is"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "it will be ready shortly"
}
] |
dlg-1e79f568-6cb9-4642-871d-0ee4f0aee9b1 | Coffee | Auto template 14a what kind of add_ons do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST milk,sweeteners}}
{{ENTER category category Enter one of the choices exactly as written above.}}
{{CONVERSATION
hint user (starts with a polite hello)
hint assistant (answers politely and then asks what they can get for the customer)
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
call get_addons request {"query": "var_category"}
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Hello! What can I get for you today?"
},
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "I was just wondering what kind of milk do you guys have?"
}
] |
dlg-cc51fe56-13a6-453d-bbd8-6fdc08692739 | Coffee | Auto template 31 Order two same drinks differing by caffeine | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you are ordering *TWO* of this: var_drink. For ONE of them you want decaffeinated, and the other not. How would YOU say this order to the attendant? *Say it out loud first* then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "Decaf", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "caffeine", "attribute_name": "Caffeine", "options":["Decaf", "Caff"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","order_id": "var_order_id", "menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "caffeine", "option":"Decaf"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Chai Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"chai-latte-5567\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf\", \"menu_item_id\":\"chai-latte-5567\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\", \"Caff\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"chai-latte-5567\",\"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\": \"97443\",\"order_item_id\":\"78727\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"97443\",\"order_id\": \"97443\", \"menu_item_id\": \"chai-latte-5567\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"97443\",\"order_item_id\":\"17013\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"97443\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"97443\", \"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\": \"78727\", \"menu_item_id\": \"chai-latte-5567\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"17013\", \"menu_item_id\": \"chai-latte-5567\", \"menu_item_name\": \"Chai Latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like to order two Chai Lattes, one of them decaf, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, could you confirm the order before I send them to get made?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"97443\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, you can pick those at the coffee bar in a few minutes."
}
] |
dlg-a35eaf3e-4d5d-47a4-b2eb-adc6640642c0 | 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-4564\",\"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-4564\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"90176\",\"order_item_id\":\"93803\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"90176\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"90176\", \"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\": \"93803\", \"menu_item_id\": \"chai-latte-4564\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "May I please get a Chai Latte?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Make sure it is right on this screen before I send it over to the coffee bar to be made."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"90176\"}"
},
{
"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": "Awesome. It will be at the coffee bar so soon for you."
}
] |
dlg-202ccc9f-3163-4648-9438-bee4d8c22dec | Coffee | Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*Here or To go*
{{ENTER delivery delivery Enter either Here OR To go}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_addons request {"query": "var_delivery", "scope": "order"}
response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]}
call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] }
response update_order response {"order_id": "var_order_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you.
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha \"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-3049\",\"name\":\"Mocha \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"double OR non-fat Milk\", \"menu_item_id\":\"mocha-3049\"}"
},
{
"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-3049\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"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\": \"85009\",\"order_item_id\":\"54652\"}"
},
{
"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\": \"85009\", \"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\": \"85009\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"85009\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"85009\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"to go\"}], \"menu_items\": [{\"order_item_id\": \"54652\", \"menu_item_id\": \"mocha-3049\", \"menu_item_name\": \"Mocha \", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"attribute_id\": \"milk-options\", \"option\":\"non-fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "HI, can I get a double mocha with non-fat milk to go?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"85009\"}"
},
{
"context": "api_response_6",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_6",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "That looks great."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok it'll be ready soon at the bar."
}
] |
dlg-e0ee04d6-80ec-4743-88b5-244d968c9a1a | 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\": \"drip coffee\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"40002\",\"name\":\"coffee\"}, {\"menu_item_id\":\"79977\",\"name\":\"java\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello. Do you have drip coffee?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes, we have coffee."
}
] |
dlg-6b64516b-67fe-4709-ad5e-8ecfbaa42daa | 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-2849\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat Milk OR extra milk\", \"menu_item_id\":\"cortado-2849\"}"
},
{
"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-2849\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"notes\": \"extra milk\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"93026\",\"order_item_id\":\"44443\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"93026\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"93026\", \"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\": \"44443\", \"menu_item_id\": \"cortado-2849\", \"menu_item_name\": \"Cortado\", \"notes\": \"extra milk\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'll have a Cortado with extra oat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Check that this order looks correct then I will send it over to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"93026\"}"
},
{
"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 correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok that will be up at the coffee bar in just a few."
}
] |
dlg-80f46758-d658-4c8a-a3a0-905d812b0fea | 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\":\"chait-latte-2019\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"chait-latte-2019\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"84522\",\"order_item_id\":\"18650\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"84522\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"84522\", \"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\": \"18650\", \"menu_item_id\": \"chait-latte-2019\", \"menu_item_name\": \"Chai Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get one chai late?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes, is that all?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"84522\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's great."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, it'll be ready in a few at the coffee bar."
}
] |
dlg-0983a75b-5969-4d4d-961a-cc77f46fb41b | 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-4064\",\"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-4064\"}"
},
{
"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-4064\",\"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\": \"65144\",\"order_item_id\":\"24345\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"65144\",\"order_id\": \"65144\", \"menu_item_id\": \"matcha-latte-4064\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"65144\",\"order_item_id\":\"69447\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"65144\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"65144\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"24345\", \"menu_item_id\": \"matcha-latte-4064\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"69447\", \"menu_item_id\": \"matcha-latte-4064\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like two Matcha Lattes, but please make one of them decaf."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does everything with your order look to be correct?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"65144\"}"
},
{
"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, thanks! You can find your order over at the coffee bar in just a few minutes."
}
] |
dlg-9cdaea8b-fd84-447e-b3f3-f05e8092e0a9 | 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-098\",\"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-098\"}"
},
{
"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-098\",\"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\": \"52680\",\"order_item_id\":\"64288\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"52680\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"52680\", \"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\": \"64288\", \"menu_item_id\": \"latte-098\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a decaffeinated Latte with oat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you make sure the order is right before I send it to the coffee bar?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"52680\"}"
},
{
"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 is going to be ready at the coffee bar in a few."
}
] |
dlg-d0896760-2fa3-4027-a3ef-6102a4ba3c81 | Coffee | Auto template 13 completely off topic | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant but, instead of ordering a drink, you say something not related to coffee or the menu from the list below:
*TOPICS*
{{LIST relationship,weather,sports,hollywood,personal hygiene,geography,automobile,music,TV,movie,food,fashion,trivia,technology}}
{{ENTER question question Enter one of the choices listed above.}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a var_question related question)
hint assistant (Explains they don't have an answer for that--USE YOUR OWN words--but that they can help the customer order coffee or tea drinks.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [],
"index": 0,
"segments": [],
"speaker": "user",
"text": "What sandwiches do you have?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I’m sorry I can’t help you with that. Do you want coffee?"
}
] |
dlg-4ef73517-54b8-42e1-9f39-257c1b299eaf | 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-5431\",\"name\":\"Steamer\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"steamer-5431\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"26083\",\"order_item_id\":\"18246\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"26083\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"26083\", \"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\": \"18246\", \"menu_item_id\": \"steamer-5431\", \"menu_item_name\": \"Steamer\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Steamer please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is your order correct on the monitor?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"26083\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay - your steamer will be ready in a few and you can pick up at the coffee bar. Thanks!"
}
] |
dlg-9a329bee-faa7-4bc1-a06e-79dad633a2eb | 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-2323\",\"name\":\"Steamer\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"steamer-2323\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"74662\",\"order_item_id\":\"84114\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"74662\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"74662\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"royal flush\"}, {\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"84114\", \"menu_item_id\": \"steamer-2323\", \"menu_item_name\": \"Steamer\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to buy a Steamer"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I got it. Is this what you want?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"74662\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright. Your order will be ready at the coffee bar."
}
] |
dlg-22a38187-d494-4cd4-b320-30e8041c8557 | 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-9227\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-9227\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"27930\",\"order_item_id\":\"62766\"}"
},
{
"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\": \"27930\", \"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\": \"27930\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"27930\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"27930\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"62766\", \"menu_item_id\": \"mocha-9227\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Mocha please - 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\": \"27930\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Its right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay - your drink has been sent and is being made. You can pick it up at the coffee bar shortly. Thanks!"
}
] |
dlg-b67612a2-fb64-4858-ae0b-09c811bcf28b | 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\": \"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-0639\",\"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-0639\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"10421\",\"order_item_id\":\"35154\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"10421\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"10421\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"six of clubs\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"35154\", \"menu_item_id\": \"matcha-latte-0639\", \"menu_item_name\": \"Matcha Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like two Matcha Lattes please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK, here is your order, once you confirm it I'll 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\": \"10421\"}"
},
{
"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": "Great, your order is in and it will soon be ready to pick up at the coffee bar."
}
] |
dlg-4d1bee54-27dc-44ce-827f-965bca27bbf5 | Coffee | Auto template 16 do you have x | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question:
*CATEGORY*
{{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}}
{{RAND item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.)
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]}
hint assistant (Answers Yes, we have var_drink1 and var_drink2)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"black tea\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"35564\",\"name\":\"honey\"}, {\"menu_item_id\":\"70090\",\"name\":\"herbal tea\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Do you brew a black tea for hot tea?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes, we also have a herbal tea and we offer honey to put in both of them."
}
] |
dlg-99e2561a-fd2d-4246-9814-44fb6b4b16d5 | 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\":\"matchalatte-0225\",\"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\":\"matchalatte-0225\"}"
},
{
"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\": \"matchalatte-0225\",\"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\": \"54358\",\"order_item_id\":\"55725\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"54358\",\"order_id\": \"54358\", \"menu_item_id\": \"matchalatte-0225\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"54358\",\"order_item_id\":\"37183\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"54358\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"54358\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ace of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"55725\", \"menu_item_id\": \"matchalatte-0225\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"37183\", \"menu_item_id\": \"matchalatte-0225\", \"menu_item_name\": \"Matcha Latte\", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey man, how's it goin? I would like to get two Matcha lattes, one regular and one decaffeinated."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes sir! How bout you take a gander at this here screen and let us know if we got that right for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"54358\"}"
},
{
"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 looks good thanks."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Well alrighty then. You can mosey on over there and pick up your order."
}
] |
dlg-2758487b-8702-40c0-914d-ad24def1f92d | 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": "May I please get an Americano?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I am sorry, we don't have Americano. Would you like something else?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_1",
"name": "request",
"value": "{}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Can I see the menu?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Sure. Here you are. Let me know if you want anything."
}
] |
dlg-d3a07f0c-1ed6-4ecf-8722-a4ec7b1e3bad | 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-7748\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-7748\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"62440\",\"order_item_id\":\"17128\"}"
},
{
"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\": \"62440\", \"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\": \"62440\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"62440\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"62440\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"five of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"17128\", \"menu_item_id\": \"cortado-7748\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a Cortado 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\": \"62440\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes all good"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, should be ready for you in a few minutes"
}
] |
dlg-8a27c4a3-cb09-46f6-97c4-cd954d9e79b1 | 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-4789\",\"name\":\"Mocha\"}, {\"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\": \"Single\", \"menu_item_id\":\"mocha-4789\"}"
},
{
"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-4789\",\"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\": \"55749\",\"order_item_id\":\"54603\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"55749\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"55749\", \"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\": \"54603\", \"menu_item_id\": \"mocha-4789\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a single Mocha, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"55749\"}"
},
{
"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 right, my man!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, you can pick it up at the coffee bar shortly."
}
] |
dlg-7ae6d2a2-2ad1-4ee9-880f-e73f6684de81 | 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-9922\",\"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-9922\"}"
},
{
"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-9922\",\"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\": \"73111\",\"order_item_id\":\"17945\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"73111\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"73111\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"five of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"17945\", \"menu_item_id\": \"mocha-9922\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Triple\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Let's get a triple Mocha today, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"73111\"}"
},
{
"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 looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay then, I'll send it to the coffee bar, and you can pick it up there in a few."
}
] |
dlg-3d7cb252-bc08-42c0-a693-a632230f739d | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-2521\",\"name\":\"macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a mocha please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I do not see a mocha on the menu. Did you perhaps mean a macchiato?"
}
] |
dlg-ec20641c-4b9d-453f-b285-71023d35fa75 | 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\": \"Earl Grey\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"earl-grey-4938\",\"name\":\"Earl Grey\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"earl-grey-4938\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"16647\",\"order_item_id\":\"17678\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"16647\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"16647\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"one of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"17678\", \"menu_item_id\": \"earl-grey-4938\", \"menu_item_name\": \"Earl Grey\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I please get one Earl Grey?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does this look right?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"16647\"}"
},
{
"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": "Looks right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great, thanks for your order, it'll be ready in a few moments at the bar pickup area."
}
] |
dlg-626a723c-7879-4bdc-b6ce-f0f98caf6574 | Coffee | Auto template 22 notes based on initial order utterance - fixed | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Cappuccino" would become "cappuccino-0371". NO SPACES. NO QUOTES}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*THINK OF A SPECIAL REQUEST/INSTRUCTION for YOUR ORDER*
Think of a special instruction to include in your drink order. It should be *something custom that's not really an option on the menu*. For example, sometimes people specify the *amount of milk*, or *how hot* they want it, or making it "dry" (=only microfoam), or "dirty" (=adding a shot of espresso), or "short", or "no sweeteners" or "regular milk is fine", etc. Make it something not usually part of a regular drink order. So, DO NOT talk about decaf/caff or types of milk, or other basic attributes of the drink. )
{{ENTER note note Enter your phrase here. MAKE IT YOUR OWN IDEA.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Order a var_drink with var_milk milk and include the instruction of "var_note". Make it sound natural.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk Milk OR var_note", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}], "notes": "var_note"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "Here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_note","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Asks the user to please confirm the order is correct and they will send it off to be made).
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappuccino-3453\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond Milk OR extra milk\", \"menu_item_id\":\"cappuccino-3453\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cappuccino-3453\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"notes\": \"extra milk\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"95274\",\"order_item_id\":\"82894\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"95274\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"95274\", \"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\": \"82894\", \"menu_item_id\": \"cappuccino-3453\", \"menu_item_name\": \"Cappuccino\", \"notes\": \"extra milk\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a Cappuccino with almond milk, and make it extra milk, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please confirm this order before I send it over to be made."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"95274\"}"
},
{
"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": "Okay, it will be at the coffee bar in just a moment."
}
] |
dlg-264a4593-b375-40e9-9177-464a48d883a2 | Coffee | Auto template 27 Order two same drinks no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Customer orders *TWO* of these: var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cappuccino\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cappucino-2831\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cappucino-2831\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"77419\",\"order_item_id\":\"50062\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"77419\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"77419\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"six of hearts\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"50062\", \"menu_item_id\": \"cappucino-2831\", \"menu_item_name\": \"Cappuccino\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Two Cappuccinos please my friend."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Alright how does this look? I just want to make sure it's right before sending it forward."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"77419\"}"
},
{
"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 right."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, those drinks will be right up at the coffee bar shortly."
}
] |
dlg-7b3f5d70-3bcf-454b-8344-a3aeb4222771 | 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-8425\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Non-Fat milk\", \"menu_item_id\":\"mocha-8425\"}"
},
{
"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-8425\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"90681\",\"order_item_id\":\"57451\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"90681\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"90681\", \"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\": \"57451\", \"menu_item_id\": \"mocha-8425\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a non-fat mocha, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is this what you ordered?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"90681\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's it."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your drink will be up at the bar soon!"
}
] |
dlg-5ed79848-3e7f-4bee-aee0-0f924dd679f9 | 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-9870\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Hazelnut Sweetener\", \"menu_item_id\": \"americano-9870\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"hazelnut-sweetener-098\", \"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\": \"americano-9870\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-098\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"27817\",\"order_item_id\":\"11012\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"27817\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"27817\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"11012\", \"menu_item_id\": \"americano-9870\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"hazelnut-sweetener-098\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there, can I get an Americano with a shot of Hazelnut please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Here is your order. Please confirm it before it's sent to be made."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"27817\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes that is correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok thanks for your confirmation. I sent it out to be made and will be ready for pick up soon."
}
] |
dlg-a7f3679b-10a8-42f0-b202-6e18ae7a2e8e | Coffee | Auto template 1 order a coffee drink no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-5935\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"mocha-5935\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"37762\",\"order_item_id\":\"20104\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"37762\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"37762\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"20104\", \"menu_item_id\": \"mocha-5935\", \"menu_item_name\": \"Mocha\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to get a Mocha drink."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Is this your full order?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"37762\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yep, it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. You can expect to get your drink at the coffee bar."
}
] |
dlg-7e35c874-06cb-4680-894c-b9a2844f13b4 | 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-5112\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Single OR Almond Milk\", \"menu_item_id\":\"cortado-5112\"}"
},
{
"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-5112\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"54812\",\"order_item_id\":\"23235\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"Here\", \"scope\": \"order\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"To go\", \"Delivery\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"54812\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}] }"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"54812\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"54812\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"54812\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}], \"menu_items\": [{\"order_item_id\": \"23235\", \"menu_item_id\": \"cortado-5112\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a Cortado single with Almond milk for here please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"54812\"}"
},
{
"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": "Looks great."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Alright, your order will be up soon over at the coffee bar."
}
] |
dlg-42d40a34-fad8-4d28-b4a5-4304a7ff2fc7 | Coffee | Auto template 14a what kind of add_ons do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST milk,sweeteners}}
{{ENTER category category Enter one of the choices exactly as written above.}}
{{CONVERSATION
hint user (starts with a polite hello)
hint assistant (answers politely and then asks what they can get for the customer)
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
call get_addons request {"query": "var_category"}
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, how are you doing today?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I'm doing great thanks. What can I get get your today?"
},
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Can you please tell what kinds of milk you serve here? Thanks."
}
] |
dlg-f6579ede-86be-4c12-aab5-83c4f9b0b740 | 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-1830\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Non-Fat milk OR Chocolate Sauce\", \"menu_item_id\": \"macchiato-1830\"}"
},
{
"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-881\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-1830\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-881\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"62491\",\"order_item_id\":\"52224\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"62491\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"62491\", \"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\": \"52224\", \"menu_item_id\": \"macchiato-1830\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"chocolate-sauce-881\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there, can I please get a Macchiato with non-fat milk and to add flavor can you add chocolate in there?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "We can do that. But before I send it to the Coffee bar, can you please look at your order and make sure everything is correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"62491\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yeah, that seems to be correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you very much for choosing us today. Your order will be ready very shortly."
}
] |
dlg-7b32de6a-8e2e-4610-86a7-97a57be8d23e | Coffee | Auto template 18 order a coffee drink specify espresso shots | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]}
force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar.
hint user (confirms it correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Espresso\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"Espresso-5675\",\"name\":\"Espresso\"}, {\"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\": \"Single\", \"menu_item_id\":\"Espresso-5675\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"Espresso-5675\",\"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\": \"45085\",\"order_item_id\":\"96783\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"45085\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"45085\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"Five of Hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"96783\", \"menu_item_id\": \"Espresso-5675\", \"menu_item_name\": \"Espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a single Espresso, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"45085\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order will be ready at the bar shortly."
}
] |
dlg-1075d5ee-c507-4894-9b1b-dd0edb7cb722 | 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 there"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "hi what can i get for you"
},
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "what kind of sweeteners do you have"
}
] |
dlg-ba4ade0f-a75f-4c50-b7d1-bffc05e5b962 | 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-3338\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-3338\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"30323\",\"order_item_id\":\"59622\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"30323\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"30323\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"two of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"59622\", \"menu_item_id\": \"latte-3338\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I just get a Latte please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes of course. Is the order right on the screen?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"30323\"}"
},
{
"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 great. I'll get that order in for you. It'll be up shortly at the coffee bar."
}
] |
dlg-553ffae3-2263-4109-986b-bbdba7031513 | 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-6578\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat\", \"menu_item_id\":\"chai-latte-6578\"}"
},
{
"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-6578\",\"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\": \"29944\",\"order_item_id\":\"16826\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"29944\",\"menu_item_id\": \"cortado-5587\",\"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\": \"29944\",\"order_item_id\":\"33369\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"29944\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"29944\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"two of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"16826\", \"menu_item_id\": \"chai-latte-6578\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"33369\", \"menu_item_id\": \"cortado-5587\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi. Can I get a Chai Latte made with Oat Milk please? And also a Cortado made with Almond milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does your order look correct on the display."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"29944\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great. Your drinks will be ready for you shortly at the coffee bar."
}
] |
dlg-2ebc6db9-4c7e-4c9f-b81a-e116c2c59c53 | 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-5566\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf OR Almond milk OR Vanilla\", \"menu_item_id\":\"Latte-5566\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"Caffeine\", \"attribute_name\": \"Caffeine\", \"options\":[\"Decaf\",\"Caff\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla-4561\", \"name\": \"Vanilla\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"Latte-5566\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"Caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-4561\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"19093\",\"order_item_id\":\"92956\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"19093\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"19093\", \"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\": \"92956\", \"menu_item_id\": \"Latte-5566\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"Caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"vanilla-4561\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hey, I'd like a decaf Latte with almond milk and vanilla syrup"
},
{
"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\": \"19093\"}"
},
{
"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, it'll be ready shortly."
}
] |
dlg-fe5591e7-2d52-4ce4-a92c-e187eb495b8d | 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-0343\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Single OR 2% Milk\", \"menu_item_id\":\"cortado-0343\"}"
},
{
"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-0343\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"22153\",\"order_item_id\":\"92119\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"Here\", \"scope\": \"order\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"attributes\":[{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"options\": [\"Here\", \"To go\", \"Delivery\"]}]}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "update_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"22153\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Here\"}] }"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "update_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"22153\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"22153\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"22153\", \"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\": \"92119\", \"menu_item_id\": \"cortado-0343\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Single\"},{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a Single Cortado with 2% milk. I would like that order for here."
},
{
"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\": \"22153\"}"
},
{
"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": "Thank you looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok then it will be ready in a few minutes."
}
] |
dlg-2a5952d0-52b7-48fe-9553-1d70ba0ef1d4 | Coffee | Auto template 14a what kind of add_ons do you have | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific menu question:
*CATEGORY*
{{LIST milk,sweeteners}}
{{ENTER category category Enter one of the choices exactly as written above.}}
{{CONVERSATION
hint user (starts with a polite hello)
hint assistant (answers politely and then asks what they can get for the customer)
hint user (Asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
call get_addons request {"query": "var_category"}
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi there."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Hello, what can i get for you today."
},
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_call_0",
"name": "request",
"value": "{}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Oh can you tell me what kinds of milk you have?"
}
] |
dlg-868841c9-9b84-412f-ad10-794076ac29cf | 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-3345\",\"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-3345\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"15889\",\"order_item_id\":\"42730\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"15889\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"15889\", \"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\": \"42730\", \"menu_item_id\": \"matcha-latte-3345\", \"menu_item_name\": \"Matcha Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like a Matcha latte, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK, could you confirm the order on the screen before I send it?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"15889\"}"
},
{
"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 the one!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, the coffee bar will have it soon."
}
] |
dlg-d2fb11e4-5092-4e32-ae00-9f34ecb6425f | 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-4480\",\"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-4480\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"65454\",\"order_item_id\":\"40366\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"65454\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"65454\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"six of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"40366\", \"menu_item_id\": \"matcha-latte-4480\", \"menu_item_name\": \"Matcha Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Matcha Latte"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "please confirm the order on the display"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"65454\"}"
},
{
"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": "ok, we'll have your drink ready in no time over at the coffee bar"
}
] |
dlg-4a2c76c5-5155-4e97-a384-0cf2b8b201f9 | Coffee | Auto template 13 completely off topic | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant but, instead of ordering a drink, you say something not related to coffee or the menu from the list below:
*TOPICS*
{{LIST relationship,weather,sports,hollywood,personal hygiene,geography,automobile,music,TV,movie,food,fashion,trivia,technology}}
{{ENTER question question Enter one of the choices listed above.}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a var_question related question)
hint assistant (Explains they don't have an answer for that--USE YOUR OWN words--but that they can help the customer order coffee or tea drinks.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Did you see the Grammys last night?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I really can't talk about that right now - but I can order a coffee or tea for you if you'd like."
}
] |
dlg-53014f3f-0461-4cd8-8ec3-e76c18a632ef | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cordato-6397\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"oat milk\", \"menu_item_id\":\"cordato-6397\"}"
},
{
"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\": \"cordato-6397\",\"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\": \"23181\",\"order_item_id\":\"21130\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"23181\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"23181\", \"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\": \"21130\", \"menu_item_id\": \"cordato-6397\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like a cortado with oat milk please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Would you please confirm that your order on the screen is correct before I send it to the coffee bar?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"23181\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you for confirming and your order will be ready at the coffee bar shortly."
}
] |
dlg-486453bb-9332-494d-acc7-26921c10f4c7 | 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-4444\",\"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-4444\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"24010\",\"order_item_id\":\"30300\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"24010\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"24010\", \"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\": \"30300\", \"menu_item_id\": \"chai-latte-4444\", \"menu_item_name\": \"chai latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a chai latte please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm the order is correct?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"24010\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order will be right up at the coffee bar."
}
] |
dlg-52963a46-a958-4a70-a3f8-4c61e518a299 | 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-2288\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Decaf OR Oat milk OR Vanilla Sweetener\", \"menu_item_id\":\"latte-2288\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"caffeine\", \"attribute_name\": \"caffeine\", \"options\":[\"Decaf\",\"Caff\"]},{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"vanilla -sweetenerI nee-991\", \"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-2288\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"vanilla -sweetenerI nee-991\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"37268\",\"order_item_id\":\"53037\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"37268\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"37268\", \"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\": \"53037\", \"menu_item_id\": \"latte-2288\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"vanilla -sweetenerI nee-991\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I need to get a Decaf Latte made with Oat milk. Can you add 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\": \"37268\"}"
},
{
"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": "Great. We will have your order ready shortly at the coffee bar"
}
] |
dlg-ebb810a4-6010-4bd3-862f-691a60acee0f | 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-8888\",\"name\":\"Americano\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Chocolate Sauce\", \"menu_item_id\": \"americano-8888\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"chocolate sauce-999\", \"name\": \"Chocolate Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"americano-8888\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate sauce-999\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"71144\",\"order_item_id\":\"50223\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"71144\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"71144\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"50223\", \"menu_item_id\": \"americano-8888\", \"menu_item_name\": \"Americano\", \"addons\": [{\"addon_id\": \"chocolate sauce-999\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get an Americano with Chocolate drizzle?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure thing. Is the order right on the screen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"71144\"}"
},
{
"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 is perfect."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay. I'll get that right up for you."
}
] |
dlg-c2903f94-01fa-4e97-983d-2e1d7ba0e4fc | 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-4832\",\"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-4832\"}"
},
{
"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-4832\",\"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\": \"21592\",\"order_item_id\":\"75245\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"21592\",\"order_id\": \"21592\", \"menu_item_id\": \"macchiato-4832\",\"quantity\": \"1\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"21592\",\"order_item_id\":\"55406\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"21592\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"21592\", \"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\": \"75245\", \"menu_item_id\": \"macchiato-4832\", \"menu_item_name\": \"Macchiato \", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]},{\"order_item_id\": \"55406\", \"menu_item_id\": \"macchiato-4832\", \"menu_item_name\": \"Macchiato \", \"quantity\": \"1\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, can I get 2 macchiatos? One decaf and one regular."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, does this all look good to you?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"21592\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes, it's great!"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok your order will be ready soon at the coffee bar."
}
] |
dlg-79d5f00b-bc28-48dd-a58f-1be78703c7ff | Coffee | Auto template 30 Notes after no relevant addons found | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Matcha Latte* (12oz) (matcha + milk + foam),*Chai Latte* (12oz) (chai + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*SPECIAL*
{{ENTER request request Enter a special request for your drink. MAKE SURE it is something special--not usually on the menu like 'not too much milk', or 'no foam', or 'half the milk' or 'extra foam', or 'super hot', or 'dirty'. DO NOT MENTION ANY of THESE: 'decaf', any sweeteners or syrup, any particular milk, 'iced', or any version of 'to go/here'. }}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Orders a var_drink and mentions 'var_request'. Make it sound natural. No quotation marks.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_request", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}], "addons": [{"addon_id": "sf-vanilla-sweetened-998", "name":"Sugar Free Vanilla Sweetener", "options": ["ADD", "NO"]}, {"addon_id": "vanilla-sweetened-622", "name": "Vanilla Sweetener", "options": ["ADD", "NO"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1", "notes": "var_request"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "notes": "var_request"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-8765\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"easy milk\", \"menu_item_id\":\"cortado-8765\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"sf-vanilla-sweetened-998\", \"name\":\"Sugar Free Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}, {\"addon_id\": \"vanilla-sweetened-622\", \"name\": \"Vanilla Sweetener\", \"options\": [\"ADD\", \"NO\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-8765\",\"quantity\": \"1\", \"notes\": \"easy milk\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"81709\",\"order_item_id\":\"97144\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"81709\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"81709\", \"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\": \"97144\", \"menu_item_id\": \"cortado-8765\", \"menu_item_name\": \"Cortado\", \"notes\": \"easy milk\"}]}"
}
],
"index": 0,
"segments": [
{
"annotations": [
{
"name": "request"
}
],
"annotator_id": "GENERATED",
"end_index": "32",
"start_index": "23",
"text": "easy milk"
}
],
"speaker": "user",
"text": "Yeah get me a Cortado, easy milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Does that look right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"81709\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yep perfect."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great your order will be ready soon over at the coffee bar. Have a nice day!"
}
] |
dlg-1605260f-f784-444b-8644-e718997c1d7e | 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-5092\",\"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-5092\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"caramel-sauce-4095\", \"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-5092\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"caramel-sauce-4095\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"10779\",\"order_item_id\":\"12131\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"10779\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"10779\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"12131\", \"menu_item_id\": \"latte-5092\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"caramel-sauce-4095\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a latte with caramel flavor."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Is this your complete order?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"10779\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. You can expect to get your drink soon."
}
] |
dlg-3de6413d-d647-4b0a-92a0-3ab13d4f637f | 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-5158\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"almond milk OR Caramel Sauce\", \"menu_item_id\": \"macchiato-5158\"}"
},
{
"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-118\", \"name\": \"Caramel Sauce\", \"default\": \"NO\", \"options\": [\"NO\", \"ADD\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-5158\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-118\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"44455\",\"order_item_id\":\"88824\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"44455\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"44455\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"ten of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"88824\", \"menu_item_id\": \"macchiato-5158\", \"menu_item_name\": \"Macchiato\", \"addons\": [{\"addon_id\": \"caramel-sauce-118\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "can I have an almond milk Macchiato with caramel"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "ok, can you confirm if the screen shows the correct details"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"44455\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "yes, that's correct"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "super, I'll have that ready in no time"
}
] |
dlg-7836ca26-3f70-4cfc-b56b-2c82191ae1a3 | Coffee | Auto template 10 order a coffee drink with first name | null | [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Macchiato\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-3517\",\"name\":\"Macchiato\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"macchiato-3517\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"57853\",\"order_item_id\":\"37435\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"57853\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"57853\", \"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\": \"37435\", \"menu_item_id\": \"macchiato-3517\", \"menu_item_name\": \"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hello, my name is jack of diamonds, and I'd like a nice Macchiato, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Got it. Now, please check that the display, is showing your correct order."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"query\": \"decaf\", \"menu_item_id\":\"macchiato-3517\"}"
},
{
"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\": \"37435\",\"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\":\"37435\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"57853\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"57853\", \"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\": \"37435\", \"menu_item_id\": \"macchiato-3517\", \"menu_item_name\": \"Macchiato\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Oh, no. I'd really like the decaf., Macchiato. Please change my order."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Got it. Please check the display again. Is your order correct now?"
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"57853\"}"
},
{
"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": "Yeah, it is exactly right."
},
{
"annotations": [],
"index": 5,
"segments": [],
"speaker": "assistant",
"text": "Thanks. There's a really short wait time, now, so you can get your order, at the coffee bar, in just a little while."
}
] |
dlg-4b57251a-275c-4fa2-b4bd-8e2f7e96d983 | Coffee | Auto template 2 order a coffee drink specify milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering this: var_drink, var_milk milk. Note that there are several ways you could say it, e.g. "a var_milk (milk) var_drink" or "a var_drink with var_milk milk", etc. How would YOU say it? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-0468\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Almond milk\", \"menu_item_id\":\"cortado-0468\"}"
},
{
"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-0468\",\"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\": \"80071\",\"order_item_id\":\"70722\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"80071\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"80071\", \"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\": \"70722\", \"menu_item_id\": \"cortado-0468\", \"menu_item_name\": \"Cortado\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I want a Cortado but with Almond milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the order on the screen right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"80071\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, it is."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay they should have that over at the coffee bar for you in just a few minutes."
}
] |
dlg-038bc673-4bfc-4ddd-908c-096b75844018 | 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-3356\",\"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-3356\"}"
},
{
"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-034\", \"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-3356\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}], \"addons\": [{\"addon_id\": \"chocolate-sauce-034\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"46172\",\"order_item_id\":\"26021\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"46172\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"46172\", \"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\": \"26021\", \"menu_item_id\": \"cortado-3356\", \"menu_item_name\": \"Cortado\", \"addons\": [{\"addon_id\": \"chocolate-sauce-034\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I like a Cortado that has Almond milk and Chocolate."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, I got the order on display. Is this correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"46172\"}"
},
{
"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": "Okay, I'll get the order done!"
}
] |
dlg-a51b100e-841a-4e96-8db8-960be26d2df0 | 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-4943\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-4943\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"59334\",\"order_item_id\":\"47056\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"59334\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"59334\", \"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\": \"47056\", \"menu_item_id\": \"latte-4943\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like to order a Latte please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, can you confirm the order on the screen is right?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"59334\"}"
},
{
"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": "looks good to me"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "ok, coming right out!"
}
] |
dlg-4ab900c3-57ed-409f-b43a-e4d050946cbc | Coffee | Auto template 16 do you have x | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question:
*CATEGORY*
{{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}}
{{RAND item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.)
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]}
hint assistant (Answers Yes, we have var_drink1 and var_drink2)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"sweeteners\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"24969\",\"name\":\"sugar\"}, {\"menu_item_id\":\"73326\",\"name\":\"honey\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get some sweeteners?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Which would you like, sugar or honey?"
}
] |
dlg-b2925c97-705f-44e7-ba7a-2db51d73712a | 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\": \"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-7464\",\"name\":\"Chai Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"just a little bit of foam\", \"menu_item_id\":\"chai-latte-7464\"}"
},
{
"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\": \"chai-latte-7464\",\"quantity\": \"1\", \"notes\": \"just a little bit of foam\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"86960\",\"order_item_id\":\"31265\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"86960\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"86960\", \"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\": \"31265\", \"menu_item_id\": \"chai-latte-7464\", \"menu_item_name\": \"Chai Latte\", \"notes\": \"just a little bit of foam\"}]}"
}
],
"index": 0,
"segments": [
{
"annotations": [
{
"name": "request"
}
],
"annotator_id": "GENERATED",
"end_index": "73",
"start_index": "48",
"text": "just a little bit of foam"
}
],
"speaker": "user",
"text": "Hi, I'd like a Chai Latte, and I want that with just a little bit of foam."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Okay, this is your order. Let me know if that's right and I'll have it made at the coffee bar for you."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"86960\"}"
},
{
"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": "Great, your Latte will be ready over at the coffee bar in a few moments."
}
] |
dlg-31aff570-19c4-4b6c-b679-37081b848dce | Coffee | Auto template 25 What's in a <drink> | *SCENARIO: Ordering from a coffee bar*
*OTHER BEVERAGES on the COFFEE BAR MENU*
{{LIST *Matcha Latte* - The Matcha Latte has matcha concentrate with milk and microfoam (12 oz),*Chai Latte* - The Chai Latte is made with chai concentrate with milk and microfoam (12 oz),*Steamer* - The Steamer is just steamed milk and microfoam (12 oz),*Americano* - The Americano is a mix of espresso and hot water (10 oz),*Cold Brew* - Our Cold Brew is made from coffee concentrate and ice (16 oz)}}
{{ENTER drink drink Enter just the drink name from one of the list choices above.}}
{{ENTER menu_item_id id Now enter the drink name except all lowercase letters and no spaces. The words in the name should be separated by hyphens ("-") and followed by any 4-digit number. So "Coca Cola" would become "coca-cola-9865".}}
{{ENTER details details Now enter just the description from your choice above (the NON-bolded phrase that describes what's in the drink.)}}
{{CONVERSATION
hint user (Asks about the ingredients of a(n) var_drink--NO NEED to use the word "ingredients"--Just ask it in a natural way)
call get_menu_items request {"query": "var_drink", "fields": ["description"]}
response get_menu_items response {"menu_items": [{"description": "var_details", "menu_item_id": "var_menu_item_id", "name": "var_drink"}]}
hint assistant (Say this in a slightly different way: var_details.)
}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cold Brew\", \"fields\": [\"description\"]}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\": [{\"description\": \"Our Cold Brew is made from coffee concentrate and ice (16 oz)\", \"menu_item_id\": \"cold-brew-7834\", \"name\": \"Cold Brew\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can you tell me what's in a Cold Brew?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, it has a mix of ice and coffee concentrate and is 16 ozs"
}
] |
dlg-fc0caf73-021a-4a21-9bab-0acb60d442ab | 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-5421\",\"name\":\"latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-5421\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"21412\",\"order_item_id\":\"55075\"}"
},
{
"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\": \"21412\", \"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\": \"21412\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"21412\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"21412\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"Jack of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"Togo\"}], \"menu_items\": [{\"order_item_id\": \"55075\", \"menu_item_id\": \"latte-5421\", \"menu_item_name\": \"latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, could I get a latte to go, please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"21412\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, great. Your order will be ready in just a few minutes."
}
] |
dlg-74f8e733-46ec-400c-af30-b35a9097a783 | 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\": \"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-0347\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-0347\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"54997\",\"order_item_id\":\"23076\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"54997\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"54997\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"ace of hearts\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"23076\", \"menu_item_id\": \"cortado-0347\", \"menu_item_name\": \"Cortado\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like two Cortado's please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Take a look and see if the order is correct please."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"54997\"}"
},
{
"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 is correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay it will be up at the bar shortly."
}
] |
dlg-31f257ac-2a0c-4f8c-a337-dac28088a9aa | 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-4913\",\"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-4913\"}"
},
{
"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-4913\",\"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\": \"63991\",\"order_item_id\":\"50838\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"63991\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"63991\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of clubs\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"50838\", \"menu_item_id\": \"latte-4913\", \"menu_item_name\": \"Latte\", \"attributes\": [{\"attribute_id\": \"caffeine\", \"option\":\"Decaf\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a latte decaf?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm that this is what you ordered?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"63991\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Thank you for your order. It will be available soon at the end of the bar."
}
] |
dlg-1cd815d5-4dee-45c3-ac93-f621bcb2a5ec | Coffee | Auto template 27 Order two same drinks no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Customer orders *TWO* of these: var_drink.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "2"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "Name", "attribute_name": "Name", "option": "var_name", "quantity": "2"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made -- USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte-4922\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"latte-4922\",\"quantity\": \"2\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"11751\",\"order_item_id\":\"65884\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"11751\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"11751\", \"attributes\": [{\"attribute_id\": \"Name\", \"attribute_name\": \"Name\", \"option\": \"queen of spades\", \"quantity\": \"2\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"65884\", \"menu_item_id\": \"latte-4922\", \"menu_item_name\": \"Latte\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like two Lattes please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Please check that your order is correct."
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"11751\"}"
},
{
"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, yes."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, you can pick up your order in a few minutes over at the coffee bar."
}
] |
dlg-1eac9bec-00d8-4f58-9140-441392cd8e7b | 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-0987\",\"name\":\"Latte \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat milk OR Caramel Sauce \", \"menu_item_id\": \"latte-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\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"caramelsauce-098\", \"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-0987\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"caramelsauce-098\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"57432\",\"order_item_id\":\"11580\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"57432\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"57432\", \"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\": \"11580\", \"menu_item_id\": \"latte-0987\", \"menu_item_name\": \"Latte \", \"addons\": [{\"addon_id\": \"caramelsauce-098\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Latte with Oat milk and Caramel Sauce."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm that the order you see if right before it goes to the coffee bar?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"57432\"}"
},
{
"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 correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Great, the order will be up soon."
}
] |
dlg-18279868-72ca-43dd-8fdf-ce3f7cc72aad | 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-4412\",\"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-4412\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"39421\",\"order_item_id\":\"89289\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"39421\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"39421\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"rummy\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"89289\", \"menu_item_id\": \"wild-strawberry-4412\", \"menu_item_name\": \"Wild Strawberry\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a wild strawberry tea, please"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Alright, please check your order"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"39421\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, everything is fine"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Ok, your order is going to be available soon"
}
] |
dlg-be587351-0d13-403a-be10-14a9f67c0ebc | 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-1252\",\"name\":\"Latte \"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% milk OR Caramel Sauce\", \"menu_item_id\": \"latte-1252\"}"
},
{
"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-223\", \"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-1252\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"addons\": [{\"addon_id\": \"caramel-sauce-223\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"49550\",\"order_item_id\":\"44827\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"49550\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"49550\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"blackjack\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"44827\", \"menu_item_id\": \"latte-1252\", \"menu_item_name\": \"Latte \", \"addons\": [{\"addon_id\": \"caramel-sauce-223\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like to get a latte that has 2% milk along with caramel sauce"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Ok, can you check and make sure your order is right?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"49550\"}"
},
{
"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, your order is going to be ready soon for pickup"
}
] |
dlg-00270851-71bd-4bb6-8e56-14702b47d7e2 | 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\": \"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-8787\",\"name\":\"Matcha Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Oat\", \"menu_item_id\":\"matcha-latte-8787\"}"
},
{
"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-8787\",\"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\": \"89614\",\"order_item_id\":\"86704\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"89614\",\"menu_item_id\": \"mocha-9999\",\"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\": \"89614\",\"order_item_id\":\"30850\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"89614\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"89614\", \"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\": \"86704\", \"menu_item_id\": \"matcha-latte-8787\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]},{\"order_item_id\": \"30850\", \"menu_item_id\": \"mocha-9999\", \"menu_item_name\": \"var_drink\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, could I get an Oat Matcha Latte and and Almond Mocha, please?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, could you confirm the order before I send it to be made?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"89614\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "finish_order"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Yes, that's correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK, your order will be ready in a few minutes at the coffee bar."
}
] |
dlg-f7eefb3e-e343-4f8f-8adb-c3de7f5c9e21 | Coffee | Auto template 19 order a coffee drink specify espresso shots and milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify two things: it's a var_shots and you want var_milk milk. How would you say it naturally? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots OR var_milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant Alright, before we send this to the coffee bar, please check the order details and confirm they're correct. Once you do, I'll get it started.
hint user (confirms all looks right)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"latte\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"latte - 6004\",\"name\":\"latte\"}, {\"menu_item_id\":\"mocha-024\",\"name\":\"mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"triple OR whole\", \"menu_item_id\":\"latte - 6004\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"latte - 6004\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"triple\"},{\"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\": \"21709\",\"order_item_id\":\"92710\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"21709\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"21709\", \"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\": \"92710\", \"menu_item_id\": \"latte - 6004\", \"menu_item_name\": \"latte\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"triple\"},{\"attribute_id\": \"milk-options\", \"option\":\"whole Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a latte with whole milk and a triple shot of espresso, 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\": \"21709\"}"
},
{
"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 correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, your order will be up soon. You'll be able to pick it up at the coffee bar when they call your name."
}
] |
dlg-377c86b4-752a-47b5-ba76-a7812e7b4810 | Coffee | Auto template 18 order a coffee drink specify espresso shots | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Espresso*,*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink1 drink Enter one of the four drinks from the list above.}}
{{ENTER menu_item_id id Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
{{ENTER drink2 drink Enter a different drink from the list above.}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Suppose you order the var_drink1 and specify that it's a var_shots. How would you order it? Say it out loud then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink1"}, {"menu_item_id":"var_drink2-024","name":"var_drink2"}]}
call get_addons request {"query": "var_shots", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink1", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"}]}]}
force assistant OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar.
hint user (confirms it correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Espresso\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"espresso-6988\",\"name\":\"Espresso\"}, {\"menu_item_id\":\"Cappuccino-024\",\"name\":\"Cappuccino\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"Double\", \"menu_item_id\":\"espresso-6988\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_name\": \"Espresso Shots\", \"attribute_id\": \"espresso-shots\", \"options\": [\"Single\",\"Double\",\"Triple\",\"Quadruple\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"espresso-6988\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"66508\",\"order_item_id\":\"48668\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"66508\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"66508\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"eight of diamonds\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"48668\", \"menu_item_id\": \"espresso-6988\", \"menu_item_name\": \"Espresso\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"Double\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I would like an Espresso and make it a Double, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Please take a look at the order details and confirm it's correct before I send it off to the coffee bar."
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"66508\"}"
},
{
"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 correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. We will have your order ready shortly."
}
] |
dlg-91086f87-ffad-4ad5-b059-7f567c4d2cca | 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-3223\",\"name\":\"cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"2% Milk OR shot of espresso\", \"menu_item_id\":\"cortado-3223\"}"
},
{
"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-3223\",\"quantity\": \"1\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}], \"notes\": \"shot of espresso\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"43725\",\"order_item_id\":\"88185\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"43725\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"43725\", \"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\": \"88185\", \"menu_item_id\": \"cortado-3223\", \"menu_item_name\": \"cortado\", \"notes\": \"shot of espresso\",\"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"2% Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I please get a cortado with 2% milk and a shot of espresso?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Sure, no problem. Can you confirm you want a cortado with 2% milk and a shot of espresso?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"43725\"}"
},
{
"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 is correct."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Perfect, the order will be ready shortly at the coffee bar. Thank you."
}
] |
dlg-b22ad09d-2d7b-478f-b058-5a32ff1f4db7 | Coffee | Auto template 8 order hot tea no mods | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*HOT TEAS on the COFFEE BAR MENU*
{{LIST *Peppermint Rose* (herbal),*Tangerine Rooibos* (herbal), *Cloud and Mist* (green tea), *Wild Strawberry* (green tea), *Jin Xuan* (oolong tea), *Three Cultivar Red* (black tea), *Lavender Earl Grey* (black tea), *English Breakfast* (black tea)}}
*CHOOSE YOUR TEA*
{{ENTER drink drink Enter a hot tea from the list above. Say the phrase you think you'd actually use if you were in a coffee/tea bar.}}
{{ENTER menu_item_id drink Now write the tea name that corresponds to your choice above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, if you say "English Breakfast tea" you would write "english-breakfast-0371". NO SPACES. NO QUOTES, NOT including "tea"}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink tea. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1"}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink"}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Acknowledges and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Peppermint Rose\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"peppermint-rose-1358\",\"name\":\"Peppermint Rose\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"menu_item_id\": \"peppermint-rose-1358\",\"quantity\": \"1\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"order_id\": \"11751\",\"order_item_id\":\"83057\"}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"order_id\": \"11751\"}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"11751\", \"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\": \"83057\", \"menu_item_id\": \"peppermint-rose-1358\", \"menu_item_name\": \"Peppermint Rose\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I'd like a Peppermint Rose tea, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is this the correct order?"
},
{
"annotations": [
{
"context": "api_call_3",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"11751\"}"
},
{
"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": "Looks good."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay, we'll have that ready for you soon."
}
] |
dlg-2f1b7fd7-69a3-49a2-b249-54611409a43b | 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-9876\",\"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-9876\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"addons\": [{\"addon_id\": \"chocolate-sauce-099\", \"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-9876\",\"quantity\": \"1\", \"addons\": [{\"addon_id\": \"chocolate-sauce-099\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"15684\",\"order_item_id\":\"59406\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"15684\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"15684\", \"attributes\": [{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"59406\", \"menu_item_id\": \"latte-9876\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"chocolate-sauce-099\", \"option\":\"ADD\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I order a latte with chocolate flavor?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Can you confirm the order is correct before I send it to the kitchen?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"15684\"}"
},
{
"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": "It will be ready soon."
}
] |
dlg-a701ea1d-6604-490f-b390-1736198276f8 | 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=0015\",\"name\":\"Latte\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"iced OR Oat milk OR Hazelnot\", \"menu_item_id\":\"latte=0015\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"attribute_name\": \"Hot or Iced\", \"options\":[\"Hot\",\"Iced\"]}, {\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}], \"addons\": [{\"addon_id\": \"hazelnut-456\", \"name\": \"Hazelnot\", \"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=0015\",\"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"}, {\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}], \"addons\": [{\"addon_id\": \"hazelnut-456\", \"option\":\"ADD\"}]}"
},
{
"context": "api_response_2",
"name": "api_response",
"value": "add_order_item"
},
{
"context": "api_response_2",
"name": "response",
"value": "{\"order_id\": \"86891\",\"order_item_id\":\"41679\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"86891\"}"
},
{
"context": "api_response_3",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_3",
"name": "response",
"value": "{\"order_id\": \"86891\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"three of spades\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"here\"}], \"menu_items\": [{\"order_item_id\": \"41679\", \"menu_item_id\": \"latte=0015\", \"menu_item_name\": \"Latte\", \"addons\": [{\"addon_id\": \"hazelnut-456\", \"option\":\"ADD\"}], \"attributes\": [{\"attribute_id\": \"hot-or-iced\", \"option\":\"Iced\"},{\"attribute_id\": \"milk-options\", \"option\":\"Oat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Hi, I'd like to order an Iced Hazelnut Oat Latte, please."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Is the order displayed correct?"
},
{
"annotations": [
{
"context": "api_call_4",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"86891\"}"
},
{
"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, thank you."
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "OK. Your order will be ready shortly. Have a Brew-tiful day!"
}
] |
dlg-3c96e6b3-95dd-4a65-a7a2-11a13e79d3ca | Coffee | Auto template 28 Order two same drinks differing by milk | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU - Assume all drinks are caffeinated for now; decaf NOT an option*
{{LIST *Matcha Latte* (12oz) (matcha concentrate + milk + foam),*Chai Latte* (12oz) (chai concentrate + milk + extra foam),*Latte* (12oz) (espresso + milk + foam),*Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES, NO QUOTES.}}
*MILK CHOICES - Assume 'whole milk' is the default option but you want a different milk*
{{LIST 2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk1 milk Choose a type of milk from the list above}}
{{ENTER milk2 milk Choose a SECOND type of milk from the list above}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id1 id 10000 99999}}
{{RAND order_item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Suppose you were ordering *TWO* of these: var_drink. HOWEVER, for ONE of them you want var_milk1 milk while for the OTHER you want var_milk2 milk. How would YOU say this order? *Say it out loud first*.)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_milk1 milk OR var_milk2 milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_id": "milk-options", "attribute_name": "Milk", "options":["No Milk", "Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id1"}
call add_order_item request {"order_id": "var_order_id","menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id2"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "here"}], "menu_items": [{"order_item_id": "var_order_item_id1", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk1 Milk"}]},{"order_item_id": "var_order_item_id2", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "quantity": "1", "attributes": [{"attribute_id": "milk-options", "option":"var_milk2 Milk"}]}]}
hint assistant (Pretend the order is displayed to the customer but do NOT repeat the item name. The worker asks the customer to confirm the order is correct before sending it to the Coffee bar to be made --USE YOUR OWN WORDS).
hint user (answers yes)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Cortado\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"cortado-2246\",\"name\":\"Cortado\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"oat milk OR Non-Fat milk\", \"menu_item_id\":\"cortado-2246\"}"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "get_addons"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"attributes\": [{\"attribute_id\": \"milk-options\", \"attribute_name\": \"Milk\", \"options\":[\"No Milk\", \"Whole Milk\",\"2% Milk\", \"Non-fat Milk\", \"Oat Milk\",\"2% Lactose Free Milk\", \"Almond Milk\"]}]}"
},
{
"context": "api_call_2",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_2",
"name": "request",
"value": "{\"menu_item_id\": \"cortado-2246\",\"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\": \"54241\",\"order_item_id\":\"91863\"}"
},
{
"context": "api_call_3",
"name": "api_call",
"value": "add_order_item"
},
{
"context": "api_call_3",
"name": "request",
"value": "{\"order_id\": \"54241\",\"menu_item_id\": \"cortado-2246\",\"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\": \"54241\",\"order_item_id\":\"93237\"}"
},
{
"context": "api_call_4",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_4",
"name": "request",
"value": "{\"order_id\": \"54241\"}"
},
{
"context": "api_response_4",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_4",
"name": "response",
"value": "{\"order_id\": \"54241\", \"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\": \"91863\", \"menu_item_id\": \"cortado-2246\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"oat Milk\"}]},{\"order_item_id\": \"93237\", \"menu_item_id\": \"cortado-2246\", \"menu_item_name\": \"Cortado\", \"quantity\": \"1\", \"attributes\": [{\"attribute_id\": \"milk-options\", \"option\":\"Non-Fat Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "How are you doing, I would like two Cortados, one of them with Non-Fat milk the other with Oat milk."
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Got it, does everything look correct on that screen?"
},
{
"annotations": [
{
"context": "api_call_5",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"54241\"}"
},
{
"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": "Outstanding, head over to the coffee bar and your order should be up soon."
}
] |
dlg-bcd522cf-b44b-4c20-9cdb-bbc61627a00f | Coffee | Auto template 16 do you have x | *SCENARIO: Ordering from a coffee bar*
Imagine you're talking with a coffee bar attendant and have a specific yes/no menu question:
*CATEGORY*
{{LIST black tea,herbal tea,oolong tea,matcha,oat milk,almond milk,honey,sweeteners,chocolate drinks,drip coffee,special tea drinks}}
{{ENTER category category Enter one of the choices exactly as written above.}}
*DRINKS*
{{ENTER drink1 drink Enter the name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category.}}
{{RAND item_id1 id 10000 99999}}
{{ENTER drink2 drink Enter one more name of a specific example from the category you listed above. It can be any specific thing you know of that matches that category, or make a name up if you need to.}}
{{RAND item_id2 id 10000 99999}}
{{CONVERSATION
hint user (Asks the coffee bar attendant a yes/no question like "Do you have var_category?" MAKE IT SOUND normal.)
call get_menu_items request {"query": "var_category"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_item_id1","name":"var_drink1"}, {"menu_item_id":"var_item_id2","name":"var_drink2"}]}
hint assistant (Answers Yes, we have var_drink1 and var_drink2)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"sweeteners\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"31126\",\"name\":\"honey\"}, {\"menu_item_id\":\"72680\",\"name\":\"chocolate sauce\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Do you have sweeteners I can add?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "Yes, we have honey and chocolate sauce."
}
] |
dlg-d8675db7-292b-4652-982e-0dc489cad2fc | Coffee | Auto template 12 order a coffee drink wrong results | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
{{ENTER drink1 drink Enter one of the two drinks listed above.}}
{{LIST *Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam)}}
{{ENTER drink2 drink Now enter one of the two drinks listed above that starts with the SAME letter as your first drink choice.}}
{{ENTER menu_item_id id In all lowercase, write the drink name you just entered above followed by hyphen ("-") and then ANY four-digit number. So, "Lemonade" could be "lemonade-6477"}}
*CATEGORY*
{{ENTER category category Enter one of the choices: tea OR tea drinks}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee and tea bar, The conversation should be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{CONVERSATION
hint user (Think about what you'd say when ordering a var_drink1. Say it out loud, then write it here.)
call get_menu_items request {"query": "var_drink1"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink2"}]}
hint assistant (Explain they don't see var_drink1 on the menu. Then ask if they mean 'var_drink2'.)
hint user (Says no, then asks the coffee bar attendant what kinds of var_category they have)
call show_menu request {}
response show_menu response {"success":true}
hint assistant (Explains they have several teas with black, herbal, and oolong teas. Politely suggests they take a look at the menu displayed for more details.)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"macchiato-0293\",\"name\":\"Macchiato\"}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "Can I get a Mocha drink?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I don't see a Mocha on our menu. Did you mean to order a 'Macchiato'?"
},
{
"annotations": [
{
"context": "api_call_1",
"name": "api_call",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "api_response",
"value": "show_menu"
},
{
"context": "api_response_1",
"name": "response",
"value": "{\"success\":true}"
}
],
"index": 2,
"segments": [],
"speaker": "user",
"text": "Nah. What kinds of tea do y'all sell?"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Our tea options include black, herbal, and oolong. Check out our menu for more info."
}
] |
dlg-8302a6b0-6cc8-44f5-b63d-9f9a1e2f5cc9 | 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": "So, what's your favorite food to eat?"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "I don't really have an answer for that, but I can help you order a coffee or tea!"
}
] |
dlg-ceb748bc-458a-49e9-90dd-fe433cf2d019 | Coffee | Auto template 20b order a coffee drink with 2 mods and specifies HERE or TO GO | *SCENARIO: Ordering from a coffee bar*
Imagine you're ordering a drink from the following menu:
*COFFEE BAR MENU*
{{LIST *Cappuccino* (8oz) (espresso + milk + extra foam),*Cortado* (4oz) (espresso + milk + extra foam),*Macchiato* (3oz) (espresso with a little foam),*Mocha* (12oz) (espresso + milk + chocolate + foam)}}
*CHOOSE YOUR DRINK*
{{ENTER drink drink Enter a drink from the list above.}}
{{ENTER menu_item_id drink Now write what you have entered above BUT (a) all in lowercase and (b) separated by hyphens ("-") and (c) followed by any 4-digit number. For example, "Latte" would become "latte-0371". NO SPACES. NO QUOTES}}
*NAME*
{{ENTER name name Enter a playing card name like "ace of spades" or "two of clubs"--CHOOSE YOUR OWN.}}
*ESPRESSO SHOTS*
{{LIST Single, Double, Triple, Quadruple}}
{{ENTER shots shots Enter one of the above}}
*MILK CHOICES*
{{LIST Whole,2%, Non-Fat,Oat, 2% Lactose Free,Almond}}
{{ENTER milk milk Choose a type of milk from the list above}}
*Here or To go*
{{ENTER delivery delivery Enter either Here OR To go}}
*TASK: Write the transcript of a conversation that you would have with the worker.*
{{LIST Make this conversation sound like something you would expect at a real coffee bar,Make sure to use the words you would normally use to order these things---they don't have to match the menu exactly as long as they are common ways to order,The conversation will be written using the green and white dialog bubbles below (green dialog bubbles are for customer's turns and the white bubbles are for the worker's turns)}}
{{RAND order_id id 10000 99999}}
{{RAND order_item_id id 10000 99999}}
{{CONVERSATION
hint user (1. Orders a var_shots var_drink with var_milk milk. 2. Specifies it is a "var_delivery" order. Say the order out loud, then write it here. MAKE SURE to add it is a 'var_delivery' order!)
call get_menu_items request {"query": "var_drink"}
response get_menu_items response {"menu_items":[{"menu_item_id":"var_menu_item_id","name":"var_drink"}]}
call get_addons request {"query": "var_shots OR var_milk Milk", "menu_item_id":"var_menu_item_id"}
response get_addons response {"attributes": [{"attribute_name": "Espresso Shots", "attribute_id": "espresso-shots", "options": ["Single","Double","Triple","Quadruple"]}, {"attribute_id": "milk-options", "attribute_name": "Milk", "options":["Whole Milk","2% Milk", "Non-fat Milk", "Oat Milk","2% Lactose Free Milk", "Almond Milk"]}]}
call add_order_item request {"menu_item_id": "var_menu_item_id","quantity": "1","attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}
response add_order_item response {"order_id": "var_order_id","order_item_id":"var_order_item_id"}
call get_addons request {"query": "var_delivery", "scope": "order"}
response get_addons response {"attributes":[{"attribute_id": "order-type", "attribute_name": "Order Type", "options": ["Here", "To go", "Delivery"]}]}
call update_order request {"order_id": "var_order_id", "attributes": [{"attribute_id": "order-type", "option": "var_delivery"}] }
response update_order response {"order_id": "var_order_id"}
call get_order_details request {"order_id": "var_order_id"}
response get_order_details response {"order_id": "var_order_id", "attributes": [{"attribute_id": "name", "attribute_name": "Name", "option": "var_name"},{"attribute_id": "order-type", "attribute_name": "Order Type", "option": "var_delivery"}], "menu_items": [{"order_item_id": "var_order_item_id", "menu_item_id": "var_menu_item_id", "menu_item_name": "var_drink", "attributes": [{"attribute_id": "espresso-shots", "option":"var_shots"},{"attribute_id": "milk-options", "option":"var_milk Milk"}]}]}
force assistant OK. Just confirm the order all looks correct and I'll send it off to be made for you.
hint user (confirms it is correct)
call finish_order request {"order_id": "var_order_id"}
response finish_order response {"success":true}
hint assistant (Says OK and indicates the order will be ready shortly at the coffee bar-- USE YOUR OWN WORDS)
}}
{{CHECK confirm_flow The conversation sounds realistic and logical.}}
{{CHECK confirm_language The conversation contains no inappropriate language.}}
| [
{
"annotations": [
{
"context": "api_call_0",
"name": "api_call",
"value": "get_menu_items"
},
{
"context": "api_call_0",
"name": "request",
"value": "{\"query\": \"Mocha\"}"
},
{
"context": "api_response_0",
"name": "api_response",
"value": "get_menu_items"
},
{
"context": "api_response_0",
"name": "response",
"value": "{\"menu_items\":[{\"menu_item_id\":\"mocha-5968\",\"name\":\"Mocha\"}]}"
},
{
"context": "api_call_1",
"name": "api_call",
"value": "get_addons"
},
{
"context": "api_call_1",
"name": "request",
"value": "{\"query\": \"double OR almond Milk\", \"menu_item_id\":\"mocha-5968\"}"
},
{
"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-5968\",\"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\": \"87917\",\"order_item_id\":\"16169\"}"
},
{
"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\": \"87917\", \"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\": \"87917\"}"
},
{
"context": "api_call_5",
"name": "api_call",
"value": "get_order_details"
},
{
"context": "api_call_5",
"name": "request",
"value": "{\"order_id\": \"87917\"}"
},
{
"context": "api_response_5",
"name": "api_response",
"value": "get_order_details"
},
{
"context": "api_response_5",
"name": "response",
"value": "{\"order_id\": \"87917\", \"attributes\": [{\"attribute_id\": \"name\", \"attribute_name\": \"Name\", \"option\": \"king of hearts\"},{\"attribute_id\": \"order-type\", \"attribute_name\": \"Order Type\", \"option\": \"To go\"}], \"menu_items\": [{\"order_item_id\": \"16169\", \"menu_item_id\": \"mocha-5968\", \"menu_item_name\": \"Mocha\", \"attributes\": [{\"attribute_id\": \"espresso-shots\", \"option\":\"double\"},{\"attribute_id\": \"milk-options\", \"option\":\"almond Milk\"}]}]}"
}
],
"index": 0,
"segments": [],
"speaker": "user",
"text": "I need to get a double shot Mocha made with almond milk please. I need it To go"
},
{
"annotations": [],
"index": 1,
"segments": [],
"speaker": "assistant",
"text": "OK. Just confirm the order all looks correct and I'll send it off to be made for you."
},
{
"annotations": [
{
"context": "api_call_6",
"name": "api_call",
"value": "finish_order"
},
{
"context": "api_call_6",
"name": "request",
"value": "{\"order_id\": \"87917\"}"
},
{
"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": "Yep everything is corrects"
},
{
"annotations": [],
"index": 3,
"segments": [],
"speaker": "assistant",
"text": "Okay. I will have the order ready shortly at the coffee bar"
}
] |