diff options
author | 2023-11-12 04:03:26 +0500 | |
---|---|---|
committer | 2023-11-12 04:03:26 +0500 | |
commit | d433980265de4eccd343dcbfc92c3e7416057842 (patch) | |
tree | 02e364a622c40f333999271862edf4c73ded8c31 /lib/grpc/voice_agent_client.dart | |
parent | 8417e9daeecbdb3847de401b0fcc6304d246a787 (diff) |
Add sample command section to voice assistant app
Add a section that allows to choose and execute sample commands
and minor improvements to app UI.
Bug-AGL: SPEC-4906
Signed-off-by: Malik Talha <talhamalik727x@gmail.com>
Change-Id: I1a279c6ecd1904c428b8403d3ce0750bc063da3b
Diffstat (limited to 'lib/grpc/voice_agent_client.dart')
-rw-r--r-- | lib/grpc/voice_agent_client.dart | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/lib/grpc/voice_agent_client.dart b/lib/grpc/voice_agent_client.dart index f25f0d2..089d2a5 100644 --- a/lib/grpc/voice_agent_client.dart +++ b/lib/grpc/voice_agent_client.dart @@ -43,7 +43,7 @@ class VoiceAgentClient { } Future<RecognizeResult> recognizeVoiceCommand( - Stream<RecognizeControl> controlStream) async { + Stream<RecognizeVoiceControl> controlStream) async { try { final response = await _client.recognizeVoiceCommand(controlStream); return response; @@ -54,9 +54,21 @@ class VoiceAgentClient { } } - Future<ExecuteResult> executeVoiceCommand(ExecuteInput input) async { + Future<RecognizeResult> recognizeTextCommand( + RecognizeTextControl controlInput) async { try { - final response = await _client.executeVoiceCommand(input); + final response = await _client.recognizeTextCommand(controlInput); + return response; + } catch (e) { + print('Error calling RecognizeTextCommand: $e'); + // Handle the error gracefully, such as returning a default RecognizeResult + return RecognizeResult()..status = RecognizeStatusType.REC_ERROR; + } + } + + Future<ExecuteResult> executeCommand(ExecuteInput input) async { + try { + final response = await _client.executeCommand(input); return response; } catch (e) { print('Error calling ExecuteVoiceCommand: $e'); |