From 0b59086cdddd40689e57969aa7914ba38f1ec2dd Mon Sep 17 00:00:00 2001 From: Anuj-S62 Date: Thu, 11 Jul 2024 15:18:31 +0530 Subject: Update Voice Agent Flutter App - update voice-agent flutter app to use whisper AI for speech-to-text functionality. - Integrated SharedPreferences to store the application state. Bug-AGL: SPEC-5200 Change-Id: I9a05b1d135c1fa07949333391ff828f166b7fe8e Signed-off-by: Anuj-S62 --- lib/models/app_state.dart | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/models') diff --git a/lib/models/app_state.dart b/lib/models/app_state.dart index 709b445..8325b50 100644 --- a/lib/models/app_state.dart +++ b/lib/models/app_state.dart @@ -7,4 +7,6 @@ class AppState extends ChangeNotifier { String streamId = ""; bool isCommandProcessing = false; String commandProcessingText = "Processing..."; + String sttFramework = "vosk"; + bool onlineMode = false; } -- cgit