-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.json
86 lines (86 loc) · 2.46 KB
/
action.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"manifest": {
"displayName": "Bluetooth",
"invocationName": "Open Bluetooth",
"category": "PRODUCTIVITY"
},
"actions": [
{
"name": "com.example.actions.Open-Bluetooth",
"availability": {
"deviceClasses": [
{
"assistantSdkDevice": {}
}
]
},
"intent": {
"name": "com.example.intents.Open-Bluetooth",
"parameters": [],
"trigger": {
"queryPatterns": [
"open bluetooth"
]
}
},
"fulfillment": {
"staticFulfillment": {
"templatedResponse": {
"items": [
{
"simpleResponse": {
"textToSpeech": "Opening bluetooth for you"
}
},
{
"deviceExecution": {
"command": "com.example.commands.Open-Bluetooth",
"params": {}
}
}
]
}
}
}
},
{
"name": "com.example.actions.Close-Bluetooth",
"availability": {
"deviceClasses": [
{
"assistantSdkDevice": {}
}
]
},
"intent": {
"name": "com.example.intents.Close-Bluetooth",
"parameters": [],
"trigger": {
"queryPatterns": [
"close bluetooth"
]
}
},
"fulfillment": {
"staticFulfillment": {
"templatedResponse": {
"items": [
{
"simpleResponse": {
"textToSpeech": "Closing bluetooth"
}
},
{
"deviceExecution": {
"command": "com.example.commands.Close-Bluetooth",
"params": {}
}
}
]
}
}
}
}
],
"types": []
}