Skip to main content

LLMModelResponse

LLMModel API response. Never carries api_key.

idId (string)required

Server-assigned unique identifier

nameName (string)required

Resource name

alias object

URL-safe short handle

anyOf
string
categoryCategory (string)required

Resource type tag

typeType (string)required

Model placement: internal is hosted in D.Hub; external uses a registered endpoint.

Possible values: [internal, external]

collection_id object

Parent collection ID

anyOf
string
folder_id object

Identifier of the containing folder.

anyOf
string
tags object

Classification labels

anyOf
  • Array [
  • string
  • ]
  • description object

    Resource description

    anyOf
    string
    markingsstring[]

    Mandatory marking ids this resource requires; read-only — set via the marking guard endpoints, not Create/PATCH.

    Default value: []
    created_at object

    Creation timestamp (Unix ms)

    anyOf
    integer
    updated_at object

    Last update timestamp (Unix ms)

    anyOf
    integer
    owners object[]

    Users and groups that own the resource.

  • Array [
  • idId (string)required

    "user." | "group." | "public.all"

    typeType (string)required

    Possible values: [user, group, public]

    display_nameDisplay Name (string)required
    avatar_url object
    anyOf
    string
    avatar_config object
    anyOf
    object
    email object
    anyOf
    string<email>
  • ]
  • my_share_scope object

    How the current caller received access to the resource.

    anyOf
    string

    Possible values: [owner, grant, admin]

    providerProvider (string)required

    Provider identifier used by this model.

    label object
    anyOf
    string
    hint_i18n_key object
    anyOf
    string
    model object

    Model identifier sent to the provider, or null when the provider does not require one.

    anyOf
    string
    context_window object

    Maximum model context size in tokens, or null when unknown.

    anyOf
    integer
    deployment object
    anyOf
    imageImage (string)required

    Fully qualified container image reference for the model server.

    command object

    Optional container entrypoint override.

    anyOf
  • Array [
  • string
  • ]
  • options object

    Runtime options converted to command-line flags when the model starts.

    property name* object
    anyOf
    string
    args object

    Additional command-line arguments appended after rendered runtime options.

    anyOf
  • Array [
  • string
  • ]
  • portPort (integer)
    Default value: 8080
    cpu object

    Requested CPU amount, such as 500m.

    anyOf
    string
    memory object

    Requested memory amount, such as 2Gi.

    anyOf
    string
    gpu object

    GPU count request

    anyOf
    integer
    replicasReplicas (integer)
    Default value: 1
    health_pathHealth Path (string)
    Default value: /healthz
    env object

    Non-secret environment variables passed to the model container.

    property name*string
    node_selector object
    property name*string
    base_url object
    anyOf
    string
    temperature object
    anyOf
    number
    max_tokens object
    anyOf
    integer
    max_retries object
    anyOf
    integer
    request_timeout object
    anyOf
    number
    streaming object
    anyOf
    boolean
    model_kwargs object
    anyOf
    object
    reasoning object

    Reasoning-effort capability effective for this model, including the supported levels and default.

    anyOf
    supportedSupported (boolean)
    Default value: false
    levelsstring[]

    Possible values: [low, medium, high, xhigh]

    default object
    anyOf
    string

    Possible values: [low, medium, high, xhigh]

    has_api_keyHas Api Key (boolean)

    Whether an API key is configured. The key value is never returned.

    Default value: false
    itemItem (string)requireddeprecated
    LLMModelResponse
    {
    "id": "string",
    "name": "string",
    "alias": "string",
    "category": "string",
    "type": "internal",
    "collection_id": "string",
    "folder_id": "string",
    "tags": [
    "string"
    ],
    "description": "string",
    "markings": [
    "string"
    ],
    "created_at": 0,
    "updated_at": 0,
    "owners": [
    {
    "id": "string",
    "type": "user",
    "display_name": "string",
    "avatar_url": "string",
    "avatar_config": {},
    "email": "user@example.com"
    }
    ],
    "my_share_scope": "owner",
    "provider": "string",
    "label": "string",
    "hint_i18n_key": "string",
    "model": "string",
    "context_window": 0,
    "deployment": {
    "image": "string",
    "command": [
    "string"
    ],
    "options": {},
    "args": [
    "string"
    ],
    "port": 8080,
    "cpu": "string",
    "memory": "string",
    "gpu": 0,
    "replicas": 1,
    "health_path": "/healthz",
    "env": {},
    "node_selector": {}
    },
    "base_url": "string",
    "temperature": 0,
    "max_tokens": 0,
    "max_retries": 0,
    "request_timeout": 0,
    "streaming": true,
    "model_kwargs": {},
    "reasoning": {
    "supported": false,
    "levels": [
    "low"
    ],
    "default": "low"
    },
    "has_api_key": false
    }