docs/content/reference/system-info.md
+++ disableToc = false title = "System Info and Version" weight = 23 url = "/reference/system-info/" +++
LocalAI provides endpoints to inspect the running instance, including available backends, loaded models, and version information.
GET/systemReturns available backends and currently loaded models.
| Field | Type | Description |
|---|---|---|
backends | array | List of available backend names (strings) |
loaded_models | array | List of currently loaded models |
loaded_models[].id | string | Model identifier |
curl http://localhost:8080/system
{
"backends": [
"llama-cpp",
"huggingface",
"diffusers",
"whisper"
],
"loaded_models": [
{
"id": "my-llama-model"
},
{
"id": "whisper-1"
}
]
}
GET/versionReturns the LocalAI version and build commit.
| Field | Type | Description |
|---|---|---|
version | string | Version string in the format version (commit) |
curl http://localhost:8080/version
{
"version": "2.26.0 (a1b2c3d4)"
}
| Status Code | Description |
|---|---|
| 500 | Internal server error |