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
Copy file name to clipboardExpand all lines: src/main/java/net/b07z/sepia/server/core/assistant/ACTIONS.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,6 @@ public class ACTIONS {
32
32
finalpublicstaticStringOPEN_LIST = "open_list"; //tell client to open a user specific list, param.: "listInfo" : {"indexType":...}
33
33
finalpublicstaticStringEXTEND_REQUEST = "extend_request"; //tell client that this request will take longer and he should prepare for that
34
34
finalpublicstaticStringSHOW_ABORT_OPTION = "show_abort"; //tell client to show an abort option
35
-
//deprecated: final public static String SKIP_TTS = "skip_tts"; //tell client to prevent TTS sound output (best used together with PLAY_AUDIO)
36
35
finalpublicstaticStringPLAY_AUDIO_URL = "play_audio_url"; //tell client to play a single audio file from url, parameters: audio_url
37
36
finalpublicstaticStringPLAY_AUDIO_STREAM = "play_audio_stream"; //tell client to play a continuous audio stream, parameters: audio_url, audio_title, audio_img, audio_type
38
37
finalpublicstaticStringSTOP_AUDIO_STREAM = "stop_audio_stream"; //tell client to stop the running audio stream
@@ -42,11 +41,11 @@ public class ACTIONS {
42
41
finalpublicstaticStringALARM = "alarm"; //tell client to set an alarm, parameters: tbd
43
42
finalpublicstaticStringREMINDER = "reminder"; //tell client to set an reminder, parameters: tbd
44
43
finalpublicstaticStringAPPOINTMENT = "appointment"; //tell client to set an appointment in the calendar, parameters: tbd
44
+
finalpublicstaticStringSWITCH_LANGUAGE = "switch_language"; //tell client to switch language, parameters: language_code
45
45
46
46
//possible next actions:
47
47
//public static String STREAMING_REQUEST = "streaming_request"; //tell the client that he has to expect an answer that gets streamed
48
48
//public static String GET_HTML_META_INFO = "get_html_meta_info"; //tell client to open an url, get meta info when the page is loaded and say it, parameters: meta_tags, add_answer
49
-
//public static String EXECUTE_CMD = "execute_cmd"; //tell client to execute an command, parameters: command
0 commit comments