/v1/chat/completions
Llama-3.1 8B
low
medium
high
1
auto
default
Default Response
curl -L \ --request POST \ --url '/v1/chat/completions' \ --header 'Content-Type: application/json' \ --data '{"messages":[{"role":"system","content":"text"}],"model":"Llama-3.1 8B","reasoning_effort":"medium","metadata":{},"frequency_penalty":0,"max_completion_tokens":128,"n":1,"modalities":["text"],"presence_penalty":0,"seed":882534,"service_tier":"default","stop":[null],"stream":false,"stream_options":{},"temperature":1,"top_p":1,"tools":[{"type":"function","function":{"name":"text","parameters":{},"strict":false}}],"tool_choice":"none","parallel_tool_calls":true}'
{ "id": "text", "choices": [ { "finish_reason": "stop", "index": 1, "message": { "content": "text", "tool_calls": [ { "id": "text", "type": "function", "function": { "name": "text", "arguments": "text" } } ], "role": "system", "name": "text" } } ], "created": 1, "model": "Llama-3.1 8B", "service_tier": "text", "system_fingerprint": "text", "object": "chat.completion", "usage": { "completion_tokens": 1, "prompt_tokens": 1, "total_tokens": 1 } }