POST
/
v1
/
chat
/
completions
curl --request POST \
  --url https://inference.api.nscale.com/v1/chat/completions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json; charset=utf-8' \
  --data '{
  "max_tokens": 100,
  "messages": [
    {
      "content": "Hello, how are you?",
      "role": "user"
    }
  ],
  "model": "meta-llama/Llama-3.1-8B-Instruct",
  "n": 1,
  "stream": false,
  "stream_options": null
}'
{
  "id": "<string>",
  "object": "<string>",
  "created": 123,
  "model": "<string>",
  "choices": [
    {
      "index": 123,
      "message": {
        "role": "<string>",
        "content": "<string>"
      },
      "logprobs": "<string>",
      "finish_reason": "<string>",
      "stop_reason": "<string>"
    }
  ],
  "usage": {
    "prompt_tokens": 123,
    "total_tokens": 123,
    "completion_tokens": 123
  },
  "prompt_logprobs": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json; charset=utf-8
model
string
required
messages
object[]
required
stream
boolean
stream_options
object
max_tokens
integer
n
integer

Response

200
application/json; charset=utf-8
id
string
required
object
string
required
created
integer
required
model
string
required
choices
object[]
required
usage
object
required
prompt_logprobs
string