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
numberword
- processed number, likeOne hundred two millions three thousands one
, you will receive102003001
.numberword
supports negative valuesdictated
- processed sequence of numbers, likeseven ones and fourty three
, you will receive111111143
. Negative values are not supported
Note:
numberword
and dictated
are independent and will be extracted at the same time
DSL Example:
1 context { 2 input endpoint: string; 3 output numberword: number? = null; 4 output dictated: string? = null; 5 } 6 7 start 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 20 node 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 39 preprocessor digression get_number 40 { 41 conditions { on #messageHasData("numberword"); } 42 do { 43 set $numberword = #messageGetData("numberword")[0]?.value?.parseNumber(); 44 return; 45 } 46 } 47 48 preprocessor 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.