Workflow prompt
Create a restaurant menu Call App that captures menu questions, dietary notes, party size, event date, and routes allergy questions to staff.
Output schema
{
"outcome": "restaurant menu call outcome",
"fields": [
{
"description": "menu question captured during the call.",
"name": "menu_question",
"required": true,
"type": "text"
},
{
"description": "dietary note captured during the call.",
"name": "dietary_note",
"required": true,
"type": "text"
},
{
"description": "party size captured during the call.",
"name": "party_size",
"required": true,
"type": "number"
},
{
"description": "date captured during the call.",
"name": "date",
"required": true,
"type": "date"
},
{
"description": "manager follow-up captured during the call.",
"name": "manager_follow-up",
"required": true,
"type": "text"
}
]
}