evalstone/bash/case/api_case.sh

25 lines
528 B
Bash

curl -X POST https://api.vectron.meta-stone.com/v1/chat/completions \
-H "Authorization: Bearer sk-xxx" \
-H "Content-Type: application/json" \
-d '{
"model": "ZhipuAi/GLM-5.2",
"messages": [
{
"role": "user",
"content": "Say hello in one sentence."
}
],
"thinking": {
"type": "disabled",
"type": "string",
"budget_tokens": 0
},
"extra_body": {
"thinking": {
"type": "disabled",
"type": "string",
"budget_tokens": 10
}
}
}'