1
curl "https://api.nineteen.ai/v1/chat/completions" \
2
-H "Content-Type: application/json" \
3
-H "Authorization: Bearer YOUR_NINETEEN_API_KEY" \
4
-X POST \
5
-d '{
6
"messages": [{"role":"user","content":"What is the capital of France?"}],
7
"model": "unsloth/Llama-3.2-3B-Instruct",
8
"temperature": 0.5,
9
"max_tokens": 500,
10
"top_p": 0.5,
11
"stream": true
12
}'
13