@ai-sdk/openai 3.0.94 → 3.0.95
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +1 -1
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +1 -1
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/responses/convert-to-openai-responses-input.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3513,7 +3513,7 @@ async function convertToOpenAIResponsesInput({
|
|
|
3513
3513
|
continue;
|
|
3514
3514
|
}
|
|
3515
3515
|
processedApprovalIds.add(approvalResponse.approvalId);
|
|
3516
|
-
if (store) {
|
|
3516
|
+
if (store && !hasConversation && !hasPreviousResponseId) {
|
|
3517
3517
|
input.push({
|
|
3518
3518
|
type: "item_reference",
|
|
3519
3519
|
id: approvalResponse.approvalId
|
|
@@ -7476,7 +7476,7 @@ var OpenAITranscriptionModel = class {
|
|
|
7476
7476
|
};
|
|
7477
7477
|
|
|
7478
7478
|
// src/version.ts
|
|
7479
|
-
var VERSION = true ? "3.0.
|
|
7479
|
+
var VERSION = true ? "3.0.95" : "0.0.0-test";
|
|
7480
7480
|
|
|
7481
7481
|
// src/openai-provider.ts
|
|
7482
7482
|
function createOpenAI(options = {}) {
|