curl --location 'https://api.xpiki.com/v1/chat/completions' \
--header 'Authorization: Bearer <Your API Key>' \
--header 'Content-Type: application/json' \
--data '{
"model": "deepseek-default",
"messages": [
{
"role": "system",
"content": "You are a precise assistant."
},
{
"role": "user",
"content": "Explain SSE in one paragraph."
}
],
"stream": false,
"temperature": 0.7,
"max_tokens": 2048
}'{}