@zenning/openai 3.0.14 → 3.0.15
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 +6 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +4 -0
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +4 -0
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -2669,6 +2669,10 @@ async function convertToOpenAIResponsesInput({
|
|
|
2669
2669
|
input.push({ type: "item_reference", id });
|
|
2670
2670
|
break;
|
|
2671
2671
|
}
|
|
2672
|
+
if (skipItemReferences) {
|
|
2673
|
+
console.log("[OpenAI Provider] Skipping function_call due to approval continuation flag");
|
|
2674
|
+
break;
|
|
2675
|
+
}
|
|
2672
2676
|
const resolvedToolName = toolNameMapping.toProviderToolName(
|
|
2673
2677
|
part.toolName
|
|
2674
2678
|
);
|
|
@@ -5866,7 +5870,7 @@ var OpenAITranscriptionModel = class {
|
|
|
5866
5870
|
};
|
|
5867
5871
|
|
|
5868
5872
|
// src/version.ts
|
|
5869
|
-
var VERSION = true ? "3.0.
|
|
5873
|
+
var VERSION = true ? "3.0.14" : "0.0.0-test";
|
|
5870
5874
|
|
|
5871
5875
|
// src/openai-provider.ts
|
|
5872
5876
|
function createOpenAI(options = {}) {
|