From 053ba8d80e405ca84a0e179c1551c3d440829579 Mon Sep 17 00:00:00 2001 From: Anuj Solanki Date: Sun, 29 Sep 2024 15:57:43 +0530 Subject: 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 --- lib/models/app_state.dart | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/models') 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; } -- cgit