I am semi-new to Dialogflow, so sorry if this is really simple, but I can't seem to find an answer anywhere. Here's my problem:
I am trying to make a chatbot where if the user says something like "speak to a human", the chatbot just stops talking all together. I know the easiest way to do this is through a server but as I don't have access to one, I am trying to use a workaround where it uses a follow-up intent to catch anything the user says afterward (using @sys.any) and have no response. This works fine if it doesn't understand what I say next, but if I say something that has a specific intent after that (like "hello"), it uses the hello intent instead of the follow-up.
I am looking for a way to prioritize the follow-up intent so that it will catch anything the user says instead of looking for other intents that also match, until the user says something like "speak to the bot".
Is this possible without a server? Please help!