You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- describeSpawnFailure("vllm"): the test expects an actionable install
command in the message (matching the existing installCommand() helper
already used by explainStartupFailure); reused it for all three backends
instead of hand-written prose that had drifted out of sync with the test.
- recommendModels VRAM test: aggregateUsableVramGB is intentionally rounded
to 1 decimal place (same precision as every other GB figure this function
reports), so 21.12 * 2 GPUs displays as 42.2, not the unrounded 42.24 the
test asserted.
if(backend==="mlx")return"Couldn't launch MLX. Install mlx-lm on an Apple Silicon Mac and verify the configured Python interpreter.";
64
-
if(backend==="vllm")return"Couldn't launch vLLM. Install vLLM in Linux/WSL and verify that its CUDA or ROCm requirements match the GPU driver.";
65
-
return"Couldn't launch ROCm llama-server. Configure a working ROCm/HIP llama-server executable and verify ROCm device access.";
63
+
if(backend==="mlx")return`Couldn't launch MLX. Install mlx-lm on an Apple Silicon Mac (${installCommand("mlx")}) and verify the configured Python interpreter.`;
64
+
if(backend==="vllm")return`Couldn't launch vLLM. Install it in Linux/WSL (${installCommand("vllm")}) and verify that its CUDA or ROCm requirements match the GPU driver.`;
0 commit comments