From 90595bbed2b0fdfda45980dc7ebff8c4eb11dcbd Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 20 Jun 2026 07:42:06 +0800 Subject: feat: add instant mode for near-real-time output --- src/args.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/args.rs') diff --git a/src/args.rs b/src/args.rs index c27ff78..679d8e1 100644 --- a/src/args.rs +++ b/src/args.rs @@ -23,6 +23,11 @@ pub struct DMVOPArguments { // Show help #[arg(long = "help", short = 'h')] pub help: bool, + + // Instant mode — aggressive VAD for near-real-time output + #[arg(long = "instant")] + pub instant: bool, + // Verbose output (show debug messages) #[arg(long = "verbose", short = 'V')] pub verbose: bool, -- cgit