@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/internal/index.js
CHANGED
|
@@ -2592,6 +2592,10 @@ async function convertToOpenAIResponsesInput({
|
|
|
2592
2592
|
input.push({ type: "item_reference", id });
|
|
2593
2593
|
break;
|
|
2594
2594
|
}
|
|
2595
|
+
if (skipItemReferences) {
|
|
2596
|
+
console.log("[OpenAI Provider] Skipping function_call due to approval continuation flag");
|
|
2597
|
+
break;
|
|
2598
|
+
}
|
|
2595
2599
|
const resolvedToolName = toolNameMapping.toProviderToolName(
|
|
2596
2600
|
part.toolName
|
|
2597
2601
|
);
|