@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.
@@ -1327,6 +1327,7 @@ var LLMGatewayChatLanguageModel = class {
1327
1327
  // LLMGateway specific settings:
1328
1328
  include_reasoning: this.settings.includeReasoning,
1329
1329
  reasoning: this.settings.reasoning,
1330
+ reasoning_effort: this.settings.reasoning_effort,
1330
1331
  usage: this.settings.usage,
1331
1332
  image_config: this.settings.image_config
1332
1333
  }, this.config.extraBody), this.settings.extraBody);
@@ -2041,6 +2042,7 @@ var LLMGatewayCompletionLanguageModel = class {
2041
2042
  // LLMGateway specific settings:
2042
2043
  include_reasoning: this.settings.includeReasoning,
2043
2044
  reasoning: this.settings.reasoning,
2045
+ reasoning_effort: this.settings.reasoning_effort,
2044
2046
  image_config: this.settings.image_config
2045
2047
  }, this.config.extraBody), this.settings.extraBody);
2046
2048
  }