Accessing Serverless Tasks


Last updated
Was this helpful?
Was this helpful?
curl --location 'https://2wmczkcst63e.yottadeos.com/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--data '{
"temperature": 0.5,
"top_p": 0.9,
"max_tokens": 256,
"frequency_penalty": 0.3,
"presence_penalty": 0.2,
"repetition_penalty": 1.2,
"model": "meta-llama/Llama-3.2-3B-Instruct",
"messages": [
{
"role": "user",
"content": "Explain what is AI infrastructure."
}
],
"stream": false
}'