aboutsummaryrefslogtreecommitdiffstats
path: root/lib/models/app_state.dart
diff options
context:
space:
mode:
authorAnuj-S62 <anuj603362@gmail.com>2024-07-11 15:18:31 +0530
committerAnuj-S62 <anuj603362@gmail.com>2024-07-21 19:52:11 +0530
commit0b59086cdddd40689e57969aa7914ba38f1ec2dd (patch)
tree975c38663f57d497eeab0e2649e51308aef9a755 /lib/models/app_state.dart
parentecd34435c1a74b39bf41d59ad479fdc85d0afb7b (diff)
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 <anuj603362@gmail.com>
Diffstat (limited to 'lib/models/app_state.dart')
-rw-r--r--lib/models/app_state.dart2
1 files changed, 2 insertions, 0 deletions
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;
}