@llmgateway/ai-sdk-provider 2.5.0 → 2.5.1

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,9 +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,
1331
- usage: this.settings.usage,
1332
- image_config: this.settings.image_config
1330
+ usage: this.settings.usage
1333
1331
  }, this.config.extraBody), this.settings.extraBody);
1334
1332
  if ((responseFormat == null ? void 0 : responseFormat.type) === "json") {
1335
1333
  if ("schema" in responseFormat && responseFormat.schema) {
@@ -2041,9 +2039,7 @@ var LLMGatewayCompletionLanguageModel = class {
2041
2039
  prompt: completionPrompt,
2042
2040
  // LLMGateway specific settings:
2043
2041
  include_reasoning: this.settings.includeReasoning,
2044
- reasoning: this.settings.reasoning,
2045
- reasoning_effort: this.settings.reasoning_effort,
2046
- image_config: this.settings.image_config
2042
+ reasoning: this.settings.reasoning
2047
2043
  }, this.config.extraBody), this.settings.extraBody);
2048
2044
  }
2049
2045
  async doGenerate(options) {