I'm trying to build a bot simulating an aviation test. Google simulates the pilot and the user is the ATC controller. Usually a dialog works like this in aviation: Pilot(google): Tower, AmericanAirlines runway vacated, request taxi instructions to stand tango 10. ATC(user): Roger, taxi via alpha and bravo to stand tango 10. Pilot(google): via alpha and bravo to stand tango 10, AmericanAirlines.
It will be a series of different small snippet dialogs like this kind of telling the story of the planes flightpath (landing clearance, runway vacated, ...) So i thought I make an intent for each. In the Text response I could put the text from the last dialog and then straight away the next text, where the user has to answer to. But this would not simulate reality, where there is a time gap between the two (landing clearance and vacating runway for example). I tried to setup webhook and then trigger the next by setfollowupevent. But then the text is skipped.
function welcome(agent) {
agent.add(`Welcome to my agent!`);
agent.setFollowupEvent('next_event');
}
e.g. like this. Any idea how I could solve this? it is not really a dialog bot because the first response comes from the bot, followed by the test question from the user and then acknowledged by the bot again.
Any help is appreciated cause I can't really find anything in the doc. Thanks.