Get Large Language Models

Last Updated on : 2026-02-26 09:17:31download

Based on the device ID, get the list of large language models ​​supported by the specified device.

API address

GET: /v1.0/cloud/agent/ai/chat/b/devices/{device_id}/large-models

Request parameter

Parameter nameTypeINRequiredDescription
device_idStringpathtrueThe ID of the specified device.

Return parameter

Parameter nameTypeDescription
llm_nameStringThe name of the specified model.
llm_idIntegerThe ID of the specified model.

Request example

GET: /v1.0/cloud/agent/ai/chat/b/devices/{device_id}/large-models
{
  "device_id": "6c3585ebfe301b40a8u***"
}

Return example

{
    "result": [
        {
            "llm_name": "1.5 Pro ***",
            "llm_id": 85
        }
    ],
    "t": 1753162676439,
    "success": true
}

Error code

For more information, see error code.