@llmgateway/ai-sdk-provider 2.4.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.
package/dist/index.mjs CHANGED
@@ -1372,8 +1372,7 @@ var LLMGatewayChatLanguageModel = class {
1372
1372
  // LLMGateway specific settings:
1373
1373
  include_reasoning: this.settings.includeReasoning,
1374
1374
  reasoning: this.settings.reasoning,
1375
- usage: this.settings.usage,
1376
- image_config: this.settings.image_config
1375
+ usage: this.settings.usage
1377
1376
  }, this.config.extraBody), this.settings.extraBody);
1378
1377
  if ((responseFormat == null ? void 0 : responseFormat.type) === "json") {
1379
1378
  if ("schema" in responseFormat && responseFormat.schema) {
@@ -2085,8 +2084,7 @@ var LLMGatewayCompletionLanguageModel = class {
2085
2084
  prompt: completionPrompt,
2086
2085
  // LLMGateway specific settings:
2087
2086
  include_reasoning: this.settings.includeReasoning,
2088
- reasoning: this.settings.reasoning,
2089
- image_config: this.settings.image_config
2087
+ reasoning: this.settings.reasoning
2090
2088
  }, this.config.extraBody), this.settings.extraBody);
2091
2089
  }
2092
2090
  async doGenerate(options) {