#!/usr/bin/env bash set -euo pipefail API_BASE="${API_BASE:-http://127.0.0.1:8000/v1}" MODEL="${MODEL:-internvl35-fp8}" curl -sS "$API_BASE/chat/completions" \ -H 'Content-Type: application/json' \ -d @- <