Files
laoyao_2b_moe/scripts/query_laoyao_megatron_server.sh
2026-07-09 08:02:25 +08:00

19 lines
368 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
SERVER_URL=${SERVER_URL:-http://127.0.0.1:5000/api}
curl -sS -X PUT "${SERVER_URL}" \
-H "Content-Type: application/json" \
-d '{
"prompts": [
"The capital of France is",
"中国的首都是",
"1 + 1 ="
],
"tokens_to_generate": 64,
"temperature": 0.7,
"top_k": 0,
"top_p": 0.9
}'