You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Return basic for of the client, e.g. convert "web_app_v1.0.1" to "web_app".<br>
68
+
* NOTE: This will INCLUDE the device ID given by the user (if any) at the start. If you are using this in a service you can compare it to input.deviceId.
finalpublicstaticStringMUSIC_SERVICE = "music_service"; //service like Spotify or Apple Music
93
+
finalpublicstaticStringPLAYLIST_NAME = "playlist_name"; //name of a playlist
94
+
finalpublicstaticStringMEDIA_CONTROLS = "media_controls"; //controls for media players like: next, back, louder, stop, play (might partially overlap with ACTION)
finalpublicstaticStringCS_COMMAND = "cs_cmd"; //custom service command, so the target server can map it
126
135
127
136
//CONTROL PARAMETERS
128
-
finalpublicstaticStringSELECTION = "selection"; //control parameter: when a command requires the user to choose one of the results ...(use numbers, maybe names too)
129
137
finalpublicstaticStringANSWER_STAGE = "ans_stage"; //control parameter: ...if you want to keep track of dialog_stage in command or want to have the option to skip stages
130
138
finalpublicstaticStringMEMORY = "memory"; //control parameter: ...if you want to keep track of things that have been said already like a command history
131
139
finalpublicstaticStringFINAL = "final"; //control parameter: collect parameter names here that are checked, validated and final. Use a list like "[location_start,location_end,time]"
132
140
finalpublicstaticStringCONFIRMATION = "confirmation"; //control parameter: when a critical command requires a confirmation ...(use: ok, cancel)
141
+
finalpublicstaticStringSELECTION = "selection"; //control parameter: when a command requires the user to choose one of the results ...(use numbers, maybe names too)
133
142
finalpublicstaticStringDYNAMIC = "dynamic"; //control parameter: collect parameter names here that are dynamically set during service module to include them in interview build scripts. Use a list like in FINAL
0 commit comments