Query the LLM Custom models visible to the current token
Get Model List
Returns the models that are actually available to the current token under POST /v1/llm/generations (the llm-custom protocol), together with the union of capabilities each model supports. Clients can use this to build a model picker UI dynamically, without relying on a static enum.
- Auth: shares the same Bearer Token as the submission endpoint; visible models are filtered by the token’s group
id: the model name that can be passed directly into theLLMCustomRequest.modelfieldcapabilities: the union of capabilities supported by the model, in the fixed ordertext→vision→video→audio→file- When the current token’s group has no reachable models, returns
200 { "object": "list", "data": [] }(not 404)
GET
Query the LLM Custom models visible to the current token