diff options
author | Anuj Solanki <anuj603362@gmail.com> | 2024-09-29 15:57:43 +0530 |
---|---|---|
committer | Anuj Solanki <anuj603362@gmail.com> | 2024-09-29 16:16:41 +0530 |
commit | 053ba8d80e405ca84a0e179c1551c3d440829579 (patch) | |
tree | afcbe6698afcef799d15f0730d6346e859a5e469 /lib/models/app_state.dart | |
parent | 539efac2637415a930b3077ff91abe003ce2fcd4 (diff) |
Implemented auto-mode
- Implemented auto-mode in flutter-speechrecognition-demo
to recognize the wake word and start the voice assistant
automatically.
Bug-AGL: SPEC-5200
Change-Id: Ic946a3f4535a7b16a4e45a5ffdf4a3b4015fdb6f
Signed-off-by: Anuj Solanki <anuj603362@gmail.com>
Diffstat (limited to 'lib/models/app_state.dart')
-rw-r--r-- | lib/models/app_state.dart | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/models/app_state.dart b/lib/models/app_state.dart index 8325b50..4c97654 100644 --- a/lib/models/app_state.dart +++ b/lib/models/app_state.dart @@ -9,4 +9,5 @@ class AppState extends ChangeNotifier { String commandProcessingText = "Processing..."; String sttFramework = "vosk"; bool onlineMode = false; + int recordingTime = 4; } |