Jovo Debugger: Load language model


#1

When I run the jovo debugger I don’t see any of the intent options. What could be missing?


#2

I fixed this by adding the samples back to the Amazon built in intents in my language model: image


#3

Hm, weird.
Can you provide the model, that doesn’t work?

That worked for me:

{
	"invocation":"my test app",
	"intents":[
		{
			"name":"HelloWorldIntent",
			"phrases":[
				"hello",
				"say hello",
				"say hello world"
			]
		},
		{
			"name":"MyNameIsIntent",
			"phrases":[
				"{name}",
				"my name is {name}",
				"i am {name}",
				"you can call me {name}"
			],
			"inputs":[
				{
					"name":"name",
					"type":{
						"alexa":"AMAZON.US_FIRST_NAME",
						"dialogflow":"@sys.given-name"
					}
				}
			]
		}
	]
}


#4

What happened was when I downloaded the model from ADC into my jovo project it had “samples” instead of “phrases” for the non-amazon specific intents.


#5

In order to get newly added intents into the jovo debugger, does one need to manually add the intents to the language model file (for example into the file at C:\jovo\HelloWorld\models\en-US.json), or, is there someway to automatically get these downloaded from Amazon? I installed the CLI and tried jovo deploy, jovo build, etc, but nothing seems to be touching the file (if that’s the right file). Thanks in advance!