Server Endpoints
/v1/models
List loaded models. Returns one `ModelCard` per loaded model with the actual execution providers used, replicas, max_len, and whether it is the default for its kind.
List loaded models.
Returns one ModelCard per loaded model with the actual execution providers
used, replicas, max_len, and whether it is the default for its kind.
Response Body
application/json
curl -X GET "https://example.com/v1/models"{ "object": "string", "data": [ { "id": "string", "object": "model", "kind": "embedding", "source": "string", "execution_providers": [ "string" ], "replicas": 0, "max_len": 0, "default": true } ]}
RS Infer