List Models
List Available Inference Models.
Last updated
List Available Inference Models.
Last updated
curl -X GET '{API_URL}/api/v1/serverless/models' \
-H 'Authorization: Bearer {TOKEN/KEY}' \
-H 'Content-Type: application/json'{
"data": {
"models": [
{
"model_name": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
"model_alias": "DeepSeek-R1-Distill-Llama-70B",
"model_type": "Text",
"context_length": 32768,
"max_completion_tokens": 10000,
"description": "A highly advanced, distilled version of the LLaMA 70B model developed by DeepSeek, optimized for efficiency and performance",
"price": 0,
"huggingface_url": "https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-70B"
},
{
"model_name": "stabilityai/stable-diffusion-xl-base-1.0",
"model_alias": "SD-XL 1.0-base",
"model_type": "Image",
"context_length": null,
"max_completion_tokens": 10000,
"description": "A high-resolution latent diffusion model designed for generating detailed and high-quality images",
"price": 0.009,
"huggingface_url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0"
},
{
"model_name": "WhereIsAI/UAE-Large-V1",
"model_alias": "UAE-Large-V1",
"model_type": "Embedding",
"context_length": 512,
"max_completion_tokens": 10000,
"description": "A universal English sentence embedding model by WhereIsAI with 1024-dim embeddings and 512 context length support",
"price": 0.012,
"huggingface_url": "https://huggingface.co/WhereIsAI/UAE-Large-V1"
}
]
},
"message": "Get models list successfully.",
"status": "success"
}