List all LLM models
GET
/api/v1/provider/models/llm
Retrieve a list of all configured LLM models
Authorizations
ApiKeyAuth
API Key authentication using X-API-Key header.
Example: X-API-Key: lbk_your_api_key_here
TypeAPI Key (header: X-API-Key)
or
BearerAuth
Bearer token authentication. Can be either a user JWT token or an API key.
Example: Authorization: Bearer <token_or_key>
TypeHTTP (bearer)
Responses
Successful response
application/json
JSON
{
"code": 0,
"msg": "ok",
"data": {
"models": [
{
"uuid": "string",
"name": "GPT-4",
"description": "OpenAI GPT-4 model",
"requester": "openai-chat-completions",
"requester_config": {
"model": "gpt-4",
"args": {
}
},
"api_keys": [
{
"name": "string",
"keys": [
"string"
]
}
],
"abilities": [
[
"chat",
"vision"
]
],
"extra_args": {
},
"created_at": "string",
"updated_at": "string"
}
]
}
}
