Skip to content

Commit 1625899

Browse files
committed
docs
1 parent b5c6134 commit 1625899

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docs/models.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,3 +230,27 @@ Only set this when your provider uses a different path or expects query paramete
230230
}
231231
```
232232

233+
=== "Same model with different settings"
234+
235+
For now, you can create different providers with same model names to achieve that:
236+
237+
```javascript
238+
{
239+
"providers": {
240+
"openai": {
241+
"api": "openai-responses",
242+
"models": { "gpt-5": {} }
243+
},
244+
"openai-high": {
245+
"api": "openai-responses",
246+
"url": "https://api.openai.com",
247+
"keyEnv": "OPENAI_API_KEY",
248+
"models": {
249+
"gpt-5": {
250+
"extraPayload": { "reasoning": { "effort": "high" } }
251+
}
252+
}
253+
}
254+
}
255+
}
256+
```

0 commit comments

Comments
 (0)