cURL
curl --request POST \ --url https://api.tensormesh.ai/v1/models/check \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "modelId": "<string>" } '
{ "requiredGpuMemoryGib": 123, "requiredLmCacheMemoryGib": 123 }
Returns model memory requirements used for billing and scheduling checks.
Bearer authentication using an access token. Format: Bearer <access_token>
HuggingFace model repository ID.
A successful response.
Required GPU memory (GiB) for model weights and overhead.
Required LM cache memory (GiB) estimated from max sequence length.