-
Notifications
You must be signed in to change notification settings - Fork 0
/
en-US.base.json
64 lines (64 loc) · 1.76 KB
/
en-US.base.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
{
"interactionModel": {
"dialog": {
"intents": [
{
"name": "RunPipelineIntent",
"delegationStrategy": "SKILL_RESPONSE",
"confirmationRequired": false,
"prompts": {},
"slots": [
{
"name": "pipelineVariable",
"type": "pipelineVariable",
"confirmationRequired": false,
"elicitationRequired": false,
"prompts": {}
},
{
"name": "projectId",
"type": "AMAZON.NUMBER",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "which-project"
}
}
]
},
{
"name": "SwitchProjectIntent",
"confirmationRequired": false,
"prompts": {},
"slots": [
{
"name": "projectId",
"type": "AMAZON.NUMBER",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "which-project"
}
}
]
}
],
"delegationStrategy": "ALWAYS"
},
"prompts": [
{
"id": "which-project",
"variations": [
{
"type": "PlainText",
"value": "Sure, what's the ID of the project? You can find the project ID on the project's page on Gitlab.com underneath the project name."
},
{
"type": "PlainText",
"value": "Okay, what is the ID of the project? You can find the project ID on the project's page on Gitlab.com underneath the project name."
}
]
}
]
}
}