We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c6134 commit 1625899Copy full SHA for 1625899
docs/models.md
@@ -230,3 +230,27 @@ Only set this when your provider uses a different path or expects query paramete
230
}
231
```
232
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
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