fix simulstreaming preload model count argument in cli

This commit is contained in:
notV3NOM
2025-09-06 18:18:09 +05:30
parent fad9ee4d21
commit a178ed5c22
2 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ The rest I don't recommend. But below are your options.
| `--static-init-prompt` | Static prompt that doesn't scroll | `None` |
| `--max-context-tokens` | Maximum context tokens | `None` |
| `--model-path` | Direct path to .pt model file. Download it if not found | `./base.pt` |
| `--preloaded-model-count` | Optional. Number of models to preload in memory to speed up loading (set up to the expected number of concurrent users) | `1` |
| `--preload-model-count` | Optional. Number of models to preload in memory to speed up loading (set up to the expected number of concurrent users) | `1` |
| WhisperStreaming backend options | Description | Default |

View File

@@ -269,10 +269,10 @@ def parse_args():
)
simulstreaming_group.add_argument(
"--preloaded_model_count",
"--preload-model-count",
type=int,
default=1,
dest="preloaded_model_count",
dest="preload_model_count",
help="Optional. Number of models to preload in memory to speed up loading (set up to the expected number of concurrent instances).",
)