@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.mjs
CHANGED
|
@@ -2613,6 +2613,10 @@ async function convertToOpenAIResponsesInput({
|
|
|
2613
2613
|
input.push({ type: "item_reference", id });
|
|
2614
2614
|
break;
|
|
2615
2615
|
}
|
|
2616
|
+
if (skipItemReferences) {
|
|
2617
|
+
console.log("[OpenAI Provider] Skipping function_call due to approval continuation flag");
|
|
2618
|
+
break;
|
|
2619
|
+
}
|
|
2616
2620
|
const resolvedToolName = toolNameMapping.toProviderToolName(
|
|
2617
2621
|
part.toolName
|
|
2618
2622
|
);
|