Files
rag-local/scripts/stop_models.sh
T
2026-08-12 12:17:36 +08:00

10 lines
277 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
# 停止本地 MLX 模型服务(oMLXchat + embedding 一体)
# 用法: ./scripts/stop_models.sh
if pgrep -f "[o]mlx-server" >/dev/null 2>&1; then
pkill -f "[o]mlx-server"
echo "[stop] oMLX 18080 (chat+embedding)"
else
echo "oMLX 未在运行"
fi