Skip to content

Commit

Permalink
Added GetMode intent, renamed to .json
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1v1st committed Mar 7, 2016
1 parent 32faccc commit b844fe6
Showing 1 changed file with 129 additions and 0 deletions.
129 changes: 129 additions & 0 deletions samples/sample-intents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
{
"intents": [
{
"intent": "Switch",
"slots": [
{
"name": "Action",
"type": "LITERAL"
},
{
"name": "ItemName",
"type": "LITERAL"
},
{
"name": "Location",
"type": "LOCATION_TYPE"
}
]
},
{
"intent": "SetColor",
"slots": [
{
"name": "Location",
"type": "LOCATION_TYPE"
},
{
"name": "Color",
"type": "COLOR_TYPE"
}
]
},
{
"intent": "SetLevel",
"slots": [
{
"name": "Percent",
"type": "NUMBER"
},
{
"name": "ItemName",
"type": "LITERAL"
},
{
"name": "Location",
"type": "LOCATION_TYPE"
}
]
},
{
"intent": "SetTemp",
"slots": [
{
"name": "Degree",
"type": "NUMBER"
},
{
"name": "Location",
"type": "LOCATION_TYPE"
}
]
},
{
"intent": "SetMode",
"slots": [
{
"name": "ModeType",
"type": "LITERAL"
},
{
"name": "ModeName",
"type": "LITERAL"
}
]
},
{
"intent": "GetState",
"slots": [
{
"name": "MetricName",
"type": "LITERAL"
},
{
"name": "Location",
"type": "LOCATION_TYPE"
}
]
},
{
"intent": "GetMode",
"slots": [
{
"name": "ModeType",
"type": "LITERAL"
}
]
},
{
"intent": "VoiceCMD",
"slots": [
{
"name": "Input",
"type": "LITERAL"
}
]
},
{
"intent": "Research",
"slots": [
{
"name": "Question",
"type": "LITERAL"
}
]
},
{
"intent": "StopIntent",
"slots": []
},
{
"intent": "CancelIntent",
"slots": []
},
{
"intent": "HelpIntent",
"slots": []
}
]
}

0 comments on commit b844fe6

Please sign in to comment.