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