Implementing Timeout-Triggered Response Sequences in a Workflow

Is it possible to display a single response sequence in a workflow?

Currently, I am trying to set a timeout after sending a response to the inquirer. For example, I want to set a timeout limit of 3 minutes or sometimes 10 minutes, and if there is no response from the inquirer during that time, I would like to send an additional prompt asking, “Is this issue resolved?” with choices such as “Yes” or “No.”

I am considering using the Function Calls feature to invoke external APIs. I am also thinking of using a sleep process on the called side during the timeout period by passing the timeout value as a parameter.

In this context, I would like to know if the following is possible:

Trigger the next response sequence.
Or display a component on the screen based on a predefined structure. The component in this case would be the prompt, “Is this issue resolved?”
Additionally, if you have any helpful information for implementing the above use case, I would appreciate your guidance.

Thank you!