diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-20 07:42:06 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-20 07:42:06 +0800 |
| commit | 90595bbed2b0fdfda45980dc7ebff8c4eb11dcbd (patch) | |
| tree | 11fc0769346444c64e163db0d8a611225200ec3e /src/args.rs | |
| parent | 9b896d697eb582dedd2533f6d2054f062c8381a0 (diff) | |
feat: add instant mode for near-real-time output0.1.0
Diffstat (limited to 'src/args.rs')
| -rw-r--r-- | src/args.rs | 5 |
1 files changed, 5 insertions, 0 deletions
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, |
