@zenning/openai 3.0.15 → 3.0.17
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/CHANGELOG.md +12 -0
- package/dist/index.js +12 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -10
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +11 -9
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +11 -9
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2478,14 +2478,15 @@ async function convertToOpenAIResponsesInput({
|
|
|
2478
2478
|
hasLocalShellTool = false,
|
|
2479
2479
|
hasShellTool = false,
|
|
2480
2480
|
hasApplyPatchTool = false,
|
|
2481
|
-
compactionInput
|
|
2481
|
+
compactionInput,
|
|
2482
|
+
providerOptions
|
|
2482
2483
|
}) {
|
|
2483
2484
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m;
|
|
2484
2485
|
const input = [];
|
|
2485
2486
|
const warnings = [];
|
|
2486
2487
|
const processedApprovalIds = /* @__PURE__ */ new Set();
|
|
2487
|
-
const skipItemReferences = (
|
|
2488
|
-
console.log("[OpenAI Provider] Skip item references flag:", skipItemReferences);
|
|
2488
|
+
const skipItemReferences = (providerOptions == null ? void 0 : providerOptions.skipItemReferencesForApproval) === true;
|
|
2489
|
+
console.log("[OpenAI Provider] Skip item references flag:", skipItemReferences, "providerOptions:", providerOptions);
|
|
2489
2490
|
if (compactionInput && compactionInput.length > 0) {
|
|
2490
2491
|
input.push(...compactionInput);
|
|
2491
2492
|
}
|
|
@@ -2672,12 +2673,12 @@ async function convertToOpenAIResponsesInput({
|
|
|
2672
2673
|
break;
|
|
2673
2674
|
}
|
|
2674
2675
|
case "reasoning": {
|
|
2675
|
-
const
|
|
2676
|
+
const providerOptions2 = await (0, import_provider_utils23.parseProviderOptions)({
|
|
2676
2677
|
provider: providerOptionsName,
|
|
2677
2678
|
providerOptions: part.providerOptions,
|
|
2678
2679
|
schema: openaiResponsesReasoningProviderOptionsSchema
|
|
2679
2680
|
});
|
|
2680
|
-
const reasoningId =
|
|
2681
|
+
const reasoningId = providerOptions2 == null ? void 0 : providerOptions2.itemId;
|
|
2681
2682
|
if (reasoningId != null) {
|
|
2682
2683
|
const reasoningMessage = reasoningMessages[reasoningId];
|
|
2683
2684
|
if (store) {
|
|
@@ -2706,14 +2707,14 @@ async function convertToOpenAIResponsesInput({
|
|
|
2706
2707
|
reasoningMessages[reasoningId] = {
|
|
2707
2708
|
type: "reasoning",
|
|
2708
2709
|
id: reasoningId,
|
|
2709
|
-
encrypted_content:
|
|
2710
|
+
encrypted_content: providerOptions2 == null ? void 0 : providerOptions2.reasoningEncryptedContent,
|
|
2710
2711
|
summary: summaryParts
|
|
2711
2712
|
};
|
|
2712
2713
|
input.push(reasoningMessages[reasoningId]);
|
|
2713
2714
|
} else {
|
|
2714
2715
|
reasoningMessage.summary.push(...summaryParts);
|
|
2715
|
-
if ((
|
|
2716
|
-
reasoningMessage.encrypted_content =
|
|
2716
|
+
if ((providerOptions2 == null ? void 0 : providerOptions2.reasoningEncryptedContent) != null) {
|
|
2717
|
+
reasoningMessage.encrypted_content = providerOptions2.reasoningEncryptedContent;
|
|
2717
2718
|
}
|
|
2718
2719
|
}
|
|
2719
2720
|
}
|
|
@@ -4102,7 +4103,8 @@ var OpenAIResponsesLanguageModel = class {
|
|
|
4102
4103
|
hasLocalShellTool: hasOpenAITool("openai.local_shell"),
|
|
4103
4104
|
hasShellTool: hasOpenAITool("openai.shell"),
|
|
4104
4105
|
hasApplyPatchTool: hasOpenAITool("openai.apply_patch"),
|
|
4105
|
-
compactionInput: openaiOptions == null ? void 0 : openaiOptions.compactionInput
|
|
4106
|
+
compactionInput: openaiOptions == null ? void 0 : openaiOptions.compactionInput,
|
|
4107
|
+
providerOptions: openaiOptions
|
|
4106
4108
|
});
|
|
4107
4109
|
warnings.push(...inputWarnings);
|
|
4108
4110
|
const strictJsonSchema = (_d = openaiOptions == null ? void 0 : openaiOptions.strictJsonSchema) != null ? _d : true;
|
|
@@ -5788,7 +5790,7 @@ var OpenAITranscriptionModel = class {
|
|
|
5788
5790
|
};
|
|
5789
5791
|
|
|
5790
5792
|
// src/version.ts
|
|
5791
|
-
var VERSION = true ? "3.0.
|
|
5793
|
+
var VERSION = true ? "3.0.16" : "0.0.0-test";
|
|
5792
5794
|
|
|
5793
5795
|
// src/openai-provider.ts
|
|
5794
5796
|
function createOpenAI(options = {}) {
|