Skip to content

Commit

Permalink
Adding a sample ASK Interaction Model for reference
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1v1st committed Mar 1, 2016
1 parent 3e5936d commit 7fd2360
Show file tree
Hide file tree
Showing 3 changed files with 585 additions and 0 deletions.
120 changes: 120 additions & 0 deletions samples/sample-intents.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
{
"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": "VoiceCMD",
"slots": [
{
"name": "Input",
"type": "LITERAL"
}
]
},
{
"intent": "Research",
"slots": [
{
"name": "Question",
"type": "LITERAL"
}
]
},
{
"intent": "StopIntent",
"slots": []
},
{
"intent": "CancelIntent",
"slots": []
},
{
"intent": "HelpIntent",
"slots": []
}
]
}
28 changes: 28 additions & 0 deletions samples/sample-slots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/******************* COLOR_TYPE *********************/
white
red
orange
yellow
green
aqua
blue
purple
magenta
pink
black

/***************** LOCATION_TYPE *******************/
all
house
living room
great room
kitchen
master bedroom
guest bedroom
bathroom
data center
garage
office
foyer
outside
utility
Loading

0 comments on commit 7fd2360

Please sign in to comment.