Skip to main content
GET
/
api
/
llm
/
v1
/
models
{
  "data": [
    {
      "id": "<string>",
      "created": 123,
      "owned_by": "<string>",
      "object": "model"
    }
  ],
  "object": "list"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

Тело ответа для эндпоинта списка моделей.

Возвращает список доступных моделей в OpenAI-совместимом формате, позволяя узнать, какие модели можно использовать.

data
Model · object[]
required

Список доступных моделей.

object
string
default:list

Тип объекта, всегда 'list'.

Allowed value: "list"