This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy path12.lu
115 lines (84 loc) · 2.22 KB
/
12.lu
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
> # Intents
## Greeting
- Hi
- Hello
- Good morning
- Good evening
## Help
- help
- I need help
- please help
## AskForUserName
- {userName=vishwac}
- I'm {userName=vishwac}
- call me {userName=vishwac}
- my name is {userName=vishwac}
- {userName=vishwac} is my name
- you can call me {userName=vishwac}
## CreateAlarm
- create an alarm
- create an alarm for 7AM
- set an alarm for 7AM next thursday
## DeleteAlarm
- delete alarm
- delete the {alarmTime} alarm
## CommunicationPreference
- set call as my communication preference
- I prefer to receive text messages
## Help
- can you help
> # Entity Types
$userName:simple
$PREBUILT:datetimeV2
> # SYNONYMS
> **NOTE:** your synonym definitions can be defined anywhere chunks, interleaved within a .lu file or even spread across .lu files.
> This defines that **$comPreference** should map synonyms -> canonical **list** value
$commPreference:call=
- phone call
- give me a ring
- ring
- call
- cell phone
- phone
> This defines that **$comPreference** should map synonyms -> canonical **text** value
$commPreference:text=
- message
- text
- sms
- text message
> This defines that **$comPreference** should map synonyms -> canonical **fax** value
$commPreference:fax=
- fax
- fascimile
> This is a phrase list
$ChocolateType:phraseList
- m&m
- mars
- mints
- spearmings
- payday
- jelly
- kit kat
- kitkat
- twix
> # QnA Definitions
> This is a QnA definition. Follows # ? Question: \<list of questions\> \```markdown \<Answer> ``` format
### ? How can I change the default message from QnA Maker?
```markdown
You can change the default message if you use the QnAMakerDialog.
See [this link](https://docs.botframework.com/en-us/azure-bot-service/templates/qnamaker/#navtitle) for details.
```
### ?How do I programmatically update my KB?
```markdown
You can use our REST apis to manage your KB.
\#1. See here for details: https://westus.dev.cognitive.microsoft.com/docs/services/58994a073d9e04097c7ba6fe/operations/58994a073d9e041ad42d9baa
```
### ? Who is your ceo?
- get me your ceo info
```markdown
Vishwac
```
> # QnA URLs
[External URL link for QnAMaker](https://docs.microsoft.com/en-in/azure/cognitive-services/qnamaker/faqs)
> # File ref urls
[None Intent definition](./none.lu)