POST /v1/chat/completions HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 505
{
"messages": [
{
"role": "system",
"content": "text",
"name": "text"
}
],
"model": "Llama-3.1 8B",
"reasoning_effort": "low",
"metadata": {},
"frequency_penalty": 1,
"max_completion_tokens": 1,
"n": 1,
"modalities": [
"text"
],
"presence_penalty": 1,
"seed": 1,
"service_tier": "auto",
"stop": [
"text"
],
"stream": true,
"stream_options": {
"include_usage": true
},
"temperature": 1,
"top_p": 1,
"tools": [
{
"type": "function",
"function": {
"description": "text",
"name": "text",
"parameters": {},
"strict": true
}
}
],
"tool_choice": "none",
"parallel_tool_calls": true
}