HOTSPOT
-
You have a chatbot.
You need to ensure that the bot conversation resets if a user fails to respond for 10 minutes.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
//IMG//
if now_seconds != last_access and (now_seconds - last_access >= self.expire_after_seconds):
await {{slot1}}
"Welcome back! Let's start over from the beginning."
)
await self.conversation_state.{{slot2}}
Correct slot values