Remove local path option from model loader

Models always download to ComfyUI/models/omnivoice/ via HuggingFace.
Local path added unnecessary complexity; users who want a custom path
can symlink into the models directory.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 18:02:55 +02:00
parent cd0f7aff07
commit b52edcfd84
4 changed files with 21 additions and 48 deletions
+2 -2
View File
@@ -37,11 +37,11 @@ Loads the OmniVoice model. Downloads automatically from HuggingFace on first run
| Input | Type | Description |
|-------|------|-------------|
| `model_source` | dropdown | `Auto-download (HuggingFace)` or `Local path` |
| `local_path` | string | Path to local checkpoint (optional) |
| `device` | dropdown | `cuda:0`, `cuda:1`, or `cpu` |
| `dtype` | dropdown | `float16`, `bfloat16`, or `float32` |
Downloads automatically from HuggingFace on first run and caches to `ComfyUI/models/omnivoice/`.
**Output:** `OMNIVOICE_MODEL`
---