Numbers processing

Add skill common-numbers in the .dashaapp file

1{
2 "formatVersion": "2",
3 "dialogue": {
4 "file": "main.dsl"
5 },
6 "nlu": {
7 "language": "en-US",
8 "skills": [
9 "common-numbers"
10 ]
11 },
12 "nlg": {
13 "type": "phrases",
14 "file": "phrasemap.json",
15 "signatureFile": "phrasemap.json"
16 },
17 "name": "numbers-app"
18}

Now you can catch two types of numbers

  1. numberword - processed number, like One hundred two millions three thousands one, you will receive 102003001. numberword supports negative values
  2. dictated - processed sequence of numbers, like seven ones and fourty three, you will receive 111111143. Negative values are not supported

Note: numberword and dictated are independent and will be extracted at the same time

DSL Example:

1context {
2 input endpoint: string;
3 output numberword: number? = null;
4 output dictated: string? = null;
5}
6
7start node root
8{
9 do //actions executed in this node
10 {
11 #connectSafe($endpoint); // connecting to the phone number which is specified in index.js that it can also be in-terminal text chat
12 goto ask;
13 }
14 transitions // specifies to which nodes the conversation goes from here
15 {
16 ask: goto ask;
17 }
18}
19
20node ask
21{
22 do {
23 if ($numberword is null) {
24 #sayText("Give me a number");
25 wait *;
26 }
27 #sayText("The number is " + $numberword.toString());
28 if ($dictated is not null) {
29 #sayText("Dictated number is " + $dictated);
30 }
31
32 wait *;
33 }
34 transitions {
35 ask: goto ask on true;
36 }
37}
38
39preprocessor digression get_number
40{
41 conditions { on #messageHasData("numberword"); }
42 do {
43 set $numberword = #messageGetData("numberword")[0]?.value?.parseNumber();
44 return;
45 }
46}
47
48preprocessor digression get_dictated
49{
50 conditions { on #messageHasData("dictated"); }
51 do {
52 set $dictated = #messageGetData("dictated")[0]?.value;
53 return;
54 }
55}
Found a mistake? Let us know.

    Enroll in beta

    Request invite to our private Beta program for developers to join the waitlist. No spam, we promise.