@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.d.mts +0 -16
- package/dist/index.d.ts +0 -16
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +0 -16
- package/dist/internal/index.d.ts +0 -16
- package/dist/internal/index.js +2 -4
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +2 -4
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
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) {
|