This commit is contained in:
Augusto Monteiro 'Sparky
2017-04-04 11:04:14 -07:00
parent a7f99c2c88
commit b90154c7d2
9 changed files with 175 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{
"utterance": "search for kittens on youtube",
"intent_type": "SearchWebsiteIntent",
"intent": {
"SearchKeyword": "search",
"Website": "youtube",
"SearchTerms": "for kittens"
}
}

View File

@ -0,0 +1,9 @@
{
"utterance": "find puppies on wikipedia",
"intent_type": "SearchWebsiteIntent",
"intent": {
"SearchKeyword": "find",
"Website": "wikipedia",
"SearchTerms": "puppies"
}
}

View File

@ -0,0 +1,8 @@
{
"utterance": "launch imgur",
"intent_type": "LaunchWebsiteIntent",
"intent": {
"LaunchKeyword": "launch",
"Website": "imgur"
}
}

View File

@ -0,0 +1,8 @@
{
"utterance": "open tumblr",
"intent_type": "LaunchWebsiteIntent",
"intent": {
"LaunchKeyword": "open",
"Website": "tumblr"
}
}