vllm_cilent.sh 337 Bytes
Newer Older
dengjb's avatar
update  
dengjb committed
1
2
3
4
5
6
7
8
9
10
11
12
curl http://localhost:8000/v1/chat/completions     -H "Content-Type: application/json"     -d '{
        "model": "seed-oss",
        "messages": [
            {
                "role": "user",
                "content": "你是谁"
            }
        ],
        "chat_template_kwargs": {
            "thinking": true
        }
    }'