@llmgateway/ai-sdk-provider 2.4.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1372,6 +1372,7 @@ var LLMGatewayChatLanguageModel = class {
1372
1372
  // LLMGateway specific settings:
1373
1373
  include_reasoning: this.settings.includeReasoning,
1374
1374
  reasoning: this.settings.reasoning,
1375
+ reasoning_effort: this.settings.reasoning_effort,
1375
1376
  usage: this.settings.usage,
1376
1377
  image_config: this.settings.image_config
1377
1378
  }, this.config.extraBody), this.settings.extraBody);
@@ -2086,6 +2087,7 @@ var LLMGatewayCompletionLanguageModel = class {
2086
2087
  // LLMGateway specific settings:
2087
2088
  include_reasoning: this.settings.includeReasoning,
2088
2089
  reasoning: this.settings.reasoning,
2090
+ reasoning_effort: this.settings.reasoning_effort,
2089
2091
  image_config: this.settings.image_config
2090
2092
  }, this.config.extraBody), this.settings.extraBody);
2091
2093
  }