Skip to content

Commit ea022c4

Browse files
authored
proofread guide.en-gb.md
1 parent 55b6131 commit ea022c4

File tree

1 file changed

+11
-9
lines changed
  • pages/public_cloud/ai_machine_learning/endpoints_guide_07_virtual_models

1 file changed

+11
-9
lines changed

pages/public_cloud/ai_machine_learning/endpoints_guide_07_virtual_models/guide.en-gb.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: AI Endpoints - Using Virtual Models
33
excerpt: Learn how to use OVHcloud AI Endpoints Virtual Models
4-
updated: 2025-08-06
4+
updated: 2025-08-14
55
---
66

77
> [!primary]
@@ -13,7 +13,7 @@ updated: 2025-08-06
1313

1414
Choosing the right Large Language Model (LLM) is not always straightforward. Models vary in strengths, performance, cost, and licensing, and new ones appear regularly—often outperforming previous options. This rapid evolution makes it essential to match your choice to your specific needs, while staying ready to adapt as better models emerge.
1515

16-
To make this easier, we developed a system of virtual models where instead of requesting a hard-coded model, you specify the expected specifications of the model you need (size, price, ...) and we resolve it to the currently best matching model in our catalog. In this guide, we'll see the different capabilities of this feature and how to use it with your OpenAI compatible code.
16+
To make this easier, we developed a system of virtual models where instead of requesting a hard-coded model, you specify the expected specifications of the model you need (size, price, etc.) and we resolve it to the currently best matching model in our catalog. In this guide, we'll see the different capabilities of this feature and how to use it with your OpenAI compatible code.
1717

1818
## Requirements
1919

@@ -28,7 +28,7 @@ The examples provided during this guide can be used with one of the following en
2828
>> pip install openai
2929
>> ```
3030
>>
31-
>> **Curl**
31+
> **Curl**
3232
>>
3333
>> A standard terminal, with [curl](https://curl.se/) installed on the system.
3434
>>
@@ -43,23 +43,25 @@ Follow the instructions in the [AI Endpoints - Getting Started](/pages/public_cl
4343
## Model DSL
4444
4545
When you request a LLM generation through our unified endpoint, you can provide in the OpenAI-compliant `model` field a model DSL query instead of a hardcoded model name.
46-
These queries are divided into three parts: tag, ranker, and condition.
47-
- **Tag**: A tag can be a model series (llama, mistral, codestral, ...), a publisher (meta-llama, mistralai, ...) or use case tag (code_chat, code_completion, summarization, ...)
48-
- **Ranker**: The ranker defines a model's capability compared to other models. We support multiple rankers such as fastest, cheapest, biggest, latest or smallest
46+
47+
These queries are divided into three parts: tag, ranker, and condition:
48+
49+
- **Tag**: A tag can be a model series (llama, mistral, codestral, ...), a publisher (meta-llama, mistralai, ...) or use case tag (code_chat, code_completion, summarization, etc.)
50+
- **Ranker**: The ranker defines a model's capability compared to other models. We support multiple rankers such as fastest, cheapest, biggest, latest or smallest.
4951
- **Condition**: The condition allows you to filter models based on strict requirements on some of the model specifications such as context_size, max_tokens and input_cost. These conditions support basic operators (<, >, =).
5052
5153
Below are some example queries and the models they currently resolve to. Please note that the resolved model can change, as we continuously update our catalog with new model releases.
5254
5355
| Model Query | Current Target Model | Usage |
5456
|-----------|-----------|-----------|
55-
| code_chat@latest | Qwen3-32B | The most recently released model optimized for code chat tasks |
56-
| meta-llama@latest | Llama-3.1-8B-Instruct | The latest Meta-released LLaMA model |
57+
| code_chat@latest | Qwen3-32B | The most recently released model optimized for code chat tasks |
58+
| meta-llama@latest | Llama-3.1-8B-Instruct | The latest Meta-released LLaMA model |
5759
| mistral@latest?context_size > 100000 | Mistral-Small-3.2-24B-Instruct-2506 | The latest Mistral model with a context window greater than 100k tokens |
5860
| llama@biggest?input_cost<0.5 | Llama-3.1-8B-Instruct | The largest LLaMA model whose input token cost is under €0.50 per 1M tokens |
5961
6062
You can visit our [catalog](https://endpoints.ai.cloud.ovh.net/catalog) to learn more about the different model specifications.
6163
62-
## Example Usage
64+
### Example Usage
6365
6466
The following code samples provide a simple example on how to query our API with a model query.
6567

0 commit comments

Comments
 (0)