Skip to content

Commit 720761a

Browse files
committed
more
1 parent da646fe commit 720761a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/inference-providers/index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ completion = client.chat.completions.create(
154154

155155
For maximum control and interoperability with custom frameworks, use our OpenAI-compatible REST API directly.
156156

157-
Our routing system automatically selects the best available provider for your chosen model:
157+
Our routing system automatically selects the most popular available provider for your chosen model,
158+
or to your preferred provider if you've sorted the providers from your [user settings](https://huggingface.co/settings/inference-providers).
158159

159160
```python
160161
import os
@@ -247,7 +248,10 @@ console.log(completion.choices[0].message.content);
247248

248249
<hfoption id="fetch">
249250

250-
**Native Fetch Integration**: For lightweight applications or custom implementations, use our REST API directly with standard fetch:
251+
For lightweight applications or custom implementations, use our REST API directly with standard fetch.
252+
253+
Our routing system automatically selects the most popular available provider for your chosen model,
254+
or to your preferred provider if you've sorted the providers from your [user settings](https://huggingface.co/settings/inference-providers).
251255

252256
```js
253257
import fetch from "node-fetch";

0 commit comments

Comments
 (0)