diff options
Diffstat (limited to 'app/backends/qwen.py')
| -rw-r--r-- | app/backends/qwen.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/backends/qwen.py b/app/backends/qwen.py index 160c0f1..7f821fa 100644 --- a/app/backends/qwen.py +++ b/app/backends/qwen.py @@ -227,10 +227,12 @@ def detect() -> BackendStatus: specs = [ ServerSpec("qwen-custom", config.QWEN_API_URL, [demo, QWEN_CUSTOMVOICE_MODEL, "--ip", "127.0.0.1", - "--port", str(custom_port)]), + "--port", str(custom_port)], + identity=probe.IDENTITY_QWEN_CUSTOM), ServerSpec("qwen-clone", config.CLONE_API_URL, [demo, QWEN_BASE_MODEL, "--ip", "127.0.0.1", - "--port", str(clone_port)]), + "--port", str(clone_port)], + identity=probe.IDENTITY_QWEN_CLONE), ] managed = servers.manages(specs) # Which local servers this tool started (pid alive) name the running |
