1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| curl "https://api.groq.com/openai/v1/chat/completions" \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${GROQ_API_KEY}" \
-d '{
"messages": [
{
"role": "user",
"content": ""
}
],
"model": "deepseek-r1-distill-llama-70b",
"temperature": 0.6,
"max_completion_tokens": 4096,
"top_p": 0.95,
"stream": true,
"stop": null
}'
|