Sherlock AI models on CloudFerro Cloud
Sherlock AI supports inference with large language models, models with vision capabilities, and embedding models. When calling the API, always pass the exact value from the Model ID column in the model field of your request.
Model availability can change. Use the models endpoint to confirm which model IDs are currently available in your project before building an integration.
Use a model ID in API requests
The selected model is specified in the request body. For example:
{
"model": "speakleash/Bielik-11B-v3.0-Instruct",
"messages": [
{
"role": "user",
"content": "Explain what Sherlock AI is."
}
]
}
Use the model ID exactly as shown in the tables below. Model IDs are case-sensitive.
Large language models
Provider |
Model ID |
HF reference |
|---|---|---|
SpeakLeash Foundation |
|
|
OpenAI |
|
|
Ministry of Digital Affairs of Poland |
|
|
Meta |
|
|
Meta |
|
|
DeepSeek |
|
|
MiniMaxAI |
|
|
VillanovaAI |
|
|
Mistral AI |
|
|
|
Large language models with vision capabilities
Vision-capable models can process text prompts together with supported image inputs. Use them only when your workflow requires visual understanding; for text-only tasks, select one of the large language models listed above.
Provider |
Model ID |
HF reference |
|---|---|---|
Mistral AI |
|
|
|
Embedding models
Embedding models convert text into vector representations. They are commonly used for semantic search, retrieval-augmented generation, document matching, clustering, and similarity checks. Use an embedding model when you need vectors rather than a generated text answer.
Provider |
Model ID |
HF reference |
|---|---|---|
Intfloat |
|
|
BAAI |
|
|
NovaSearch |
|
|
sdadas |
|
Choosing a model
For general text generation, start with an available large language model and change the model only when you need a different language profile, context behavior, latency, or output quality. For image-aware tasks, use a vision-capable model if one is available in your project. For search and retrieval workflows, use an embedding model and send the resulting vectors to your own vector database or retrieval layer.
If an API request fails, check whether the model ID was copied exactly, whether the model is available in your Sherlock AI project, and whether you are using the correct endpoint for chat completions or embeddings.