8 lines
348 B
Bash
8 lines
348 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
curl -fsS --max-time 120 http://127.0.0.1:8002/v1/chat/completions \
|
|
-H 'Content-Type: application/json' \
|
|
--data-binary @- <<'JSON'
|
|
{"model":"qwen38","messages":[{"role":"user","content":"Reply with exactly: ready"}],"max_tokens":64,"temperature":0,"chat_template_kwargs":{"enable_thinking":false}}
|
|
JSON
|