@ai-sdk/openai 3.0.93 → 3.0.94
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 +8 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +2 -2
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +2 -2
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/responses/convert-to-openai-responses-input.ts +12 -7
package/dist/internal/index.js
CHANGED
|
@@ -3137,10 +3137,10 @@ async function convertToOpenAIResponsesInput({
|
|
|
3137
3137
|
}
|
|
3138
3138
|
break;
|
|
3139
3139
|
}
|
|
3140
|
-
|
|
3140
|
+
const isProviderDefinedToolCall = hasLocalShellTool && resolvedToolName === "local_shell" || hasShellTool && resolvedToolName === "shell" || hasApplyPatchTool && resolvedToolName === "apply_patch" || ((_m = customProviderToolNames == null ? void 0 : customProviderToolNames.has(resolvedToolName)) != null ? _m : false);
|
|
3141
|
+
if (hasPreviousResponseId && store && id != null && isProviderDefinedToolCall) {
|
|
3141
3142
|
break;
|
|
3142
3143
|
}
|
|
3143
|
-
const isProviderDefinedToolCall = hasLocalShellTool && resolvedToolName === "local_shell" || hasShellTool && resolvedToolName === "shell" || hasApplyPatchTool && resolvedToolName === "apply_patch" || ((_m = customProviderToolNames == null ? void 0 : customProviderToolNames.has(resolvedToolName)) != null ? _m : false);
|
|
3144
3144
|
if (store && id != null && isProviderDefinedToolCall) {
|
|
3145
3145
|
input.push({ type: "item_reference", id });
|
|
3146
3146
|
break;
|