[Docs] Intents


#1

In this section, you will learn more about how to use intents to route your users through your voice app.


This is a companion discussion topic for the original entry at https://www.jovo.tech/docs/routing/intents

#2

How can I map two or more intents to a single intent only inside a state?


#3

intentMap only works globally. If you only want to map it inside a state, I’d use both intents there and use the toIntent redirect feature in one of them


#4

ohh thanks :slight_smile:


#6

If I use intentMap to map standard intents like:

{
“AMAZON.HelpIntent”: “HelpIntent”,
HelpIntent: “HelpIntent”
}

I need to do this too?

{
	"name": "HelpIntent",
	"alexa": {
		"name": "AMAZON.HelpIntent"
	},
	"phrases": [
		"help",
		"help me",
		"can you help me",
		"what can i do"
	]
}

Thanks!


#7

Yes. We need to make this easier, but intentMap ist for the logic at runtime, and the model is for training the language model. This is why both needs to be done right now.