Reset the value of an individual slot

Is there a way to reset the value of a slot? I am prompting a user for a time entity, which fill a slot for it. Later I would like to reset the slot value so I can prompt the user for another time. Thanks.

In your custom action’s run method, you can return [SlotSet("time", None)]

1 Like

Thank you so much!