You bet! Here is an example:
Bot: When do you want me to reach back out to you?
Me: In 11 minutes.
Bot: Okay….when do you want me to follow up with you?
Me: At 11:34 PM
Bot: Okay….when do you want me to send a reminder to you?
Me: 7AM
Bot: Okay…when do you want to meet?
Me: This afternoon
Bot: Okay….
On my backend, I can convert all of those strings: “11 minutes”, “11:34PM”, “7am” can all be translated into epoch_time.
The challenge is the minutes…if it is minutes, it needs to say “11 minute from now”—which the user may not do, so I check if “minutes” or “hours” is there to add.
oh, wait….I think if I just let *</pattern> after first checking if there is MINUTES or HOURS—my backend knows the difference….
Let me see - I may need to rephrase the problems statement….