Skip to main content
GET
/
api
/
v2
/
config
/
resources
Get Resources
curl --request GET \
  --url http://localhost:8080/api/v2/config/resources
{
  "embedders": [
    {
      "name": "<string>",
      "provider": "<string>",
      "status": "ready",
      "error": "<string>"
    }
  ],
  "language_models": [
    {
      "name": "<string>",
      "provider": "<string>",
      "status": "ready",
      "error": "<string>"
    }
  ],
  "rerankers": [
    {
      "name": "<string>",
      "provider": "<string>",
      "status": "ready",
      "error": "<string>"
    }
  ],
  "databases": [
    {
      "name": "<string>",
      "provider": "<string>",
      "status": "ready",
      "error": "<string>"
    }
  ]
}

Response

200 - application/json

Successful Response

Status of all configured resources.

embedders
ResourceInfo · object[]
The status of all configured embedders.
language_models
ResourceInfo · object[]
The status of all configured language models.
rerankers
ResourceInfo · object[]
The status of all configured rerankers.
databases
ResourceInfo · object[]
The status of all configured databases.