@zenning/openai 3.0.18 → 3.0.19
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 +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +6 -0
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +6 -0
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2570,6 +2570,9 @@ async function convertToOpenAIResponsesInput({
|
|
|
2570
2570
|
input.push({ type: "item_reference", id });
|
|
2571
2571
|
break;
|
|
2572
2572
|
}
|
|
2573
|
+
if (store && id != null && previousResponseId) {
|
|
2574
|
+
break;
|
|
2575
|
+
}
|
|
2573
2576
|
input.push({
|
|
2574
2577
|
role: "assistant",
|
|
2575
2578
|
content: [{ type: "output_text", text: part.text }],
|
|
@@ -2589,6 +2592,9 @@ async function convertToOpenAIResponsesInput({
|
|
|
2589
2592
|
input.push({ type: "item_reference", id });
|
|
2590
2593
|
break;
|
|
2591
2594
|
}
|
|
2595
|
+
if (store && id != null && previousResponseId) {
|
|
2596
|
+
break;
|
|
2597
|
+
}
|
|
2592
2598
|
const resolvedToolName = toolNameMapping.toProviderToolName(
|
|
2593
2599
|
part.toolName
|
|
2594
2600
|
);
|
|
@@ -5782,7 +5788,7 @@ var OpenAITranscriptionModel = class {
|
|
|
5782
5788
|
};
|
|
5783
5789
|
|
|
5784
5790
|
// src/version.ts
|
|
5785
|
-
var VERSION = true ? "3.0.
|
|
5791
|
+
var VERSION = true ? "3.0.19" : "0.0.0-test";
|
|
5786
5792
|
|
|
5787
5793
|
// src/openai-provider.ts
|
|
5788
5794
|
function createOpenAI(options = {}) {
|