Get Model Memory Status
Return which local model weights are currently resident in RAM.
Response Body
application/json
curl -X GET "http://127.0.0.1:14242/models/memory-status"{
"embedding": {
"loaded": false,
"estimated_mb": 0,
"backend": "none"
},
"llm": {
"loaded": false,
"estimated_mb": 0,
"backend": "none"
}
}