Aurora APIAurora API
Chat Completions FormatChatGPT APIChatGPT Chat

List Models

GET
/v1/models

Header Parameters

Content-Type*string
Accept*string
Authorization?string

Response Body

application/json

curl -X GET "https://loading/v1/models" \  -H "Content-Type: string" \  -H "Accept: string"
{
  "id": "chatcmpl-123",
  "object": "chat.completion",
  "created": 1677652288,
  "choices": [
    {
      "index": 0,
      "message": {
        "role": "assistant",
        "content": "\n\nHello there, how may I assist you today?"
      },
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 9,
    "completion_tokens": 12,
    "total_tokens": 21
  }
}

How is this guide?

Last updated on