#!/bin/bash # RunPod vLLM Setup Script for Ministral 14B # Usage: curl -sSL https://huggingface.co/datasets/RoleModel/scripts/raw/main/runpod_setup.sh | bash set -e echo "=== Stopping any existing processes ===" pkill -f "vllm" 2>/dev/null || true sleep 2 echo "=== Installing vLLM nightly (required for Ministral 3) ===" pip install -U vllm --extra-index-url https://wheels.vllm.ai/nightly echo "=== Starting vLLM server ===" echo "Model: RoleModel/ministral-14b-merged-official" echo "Port: 8000" echo "" vllm serve RoleModel/ministral-14b-merged-official \ --dtype bfloat16 \ --max-model-len 8192 \ --port 8000