@ai-sdk/openai 2.0.36 → 2.0.37
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 +34 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +34 -20
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +33 -19
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +33 -19
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/internal/index.mjs
CHANGED
|
@@ -2175,26 +2175,40 @@ async function convertToOpenAIResponsesInput({
|
|
|
2175
2175
|
});
|
|
2176
2176
|
const reasoningId = providerOptions == null ? void 0 : providerOptions.itemId;
|
|
2177
2177
|
if (reasoningId != null) {
|
|
2178
|
-
const
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
if (existingReasoningMessage === void 0) {
|
|
2189
|
-
reasoningMessages[reasoningId] = {
|
|
2190
|
-
type: "reasoning",
|
|
2191
|
-
id: reasoningId,
|
|
2192
|
-
encrypted_content: providerOptions == null ? void 0 : providerOptions.reasoningEncryptedContent,
|
|
2193
|
-
summary: summaryParts
|
|
2194
|
-
};
|
|
2195
|
-
input.push(reasoningMessages[reasoningId]);
|
|
2178
|
+
const reasoningMessage = reasoningMessages[reasoningId];
|
|
2179
|
+
if (store) {
|
|
2180
|
+
if (reasoningMessage === void 0) {
|
|
2181
|
+
input.push({ type: "item_reference", id: reasoningId });
|
|
2182
|
+
reasoningMessages[reasoningId] = {
|
|
2183
|
+
type: "reasoning",
|
|
2184
|
+
id: reasoningId,
|
|
2185
|
+
summary: []
|
|
2186
|
+
};
|
|
2187
|
+
}
|
|
2196
2188
|
} else {
|
|
2197
|
-
|
|
2189
|
+
const summaryParts = [];
|
|
2190
|
+
if (part.text.length > 0) {
|
|
2191
|
+
summaryParts.push({
|
|
2192
|
+
type: "summary_text",
|
|
2193
|
+
text: part.text
|
|
2194
|
+
});
|
|
2195
|
+
} else if (reasoningMessage !== void 0) {
|
|
2196
|
+
warnings.push({
|
|
2197
|
+
type: "other",
|
|
2198
|
+
message: `Cannot append empty reasoning part to existing reasoning sequence. Skipping reasoning part: ${JSON.stringify(part)}.`
|
|
2199
|
+
});
|
|
2200
|
+
}
|
|
2201
|
+
if (reasoningMessage === void 0) {
|
|
2202
|
+
reasoningMessages[reasoningId] = {
|
|
2203
|
+
type: "reasoning",
|
|
2204
|
+
id: reasoningId,
|
|
2205
|
+
encrypted_content: providerOptions == null ? void 0 : providerOptions.reasoningEncryptedContent,
|
|
2206
|
+
summary: summaryParts
|
|
2207
|
+
};
|
|
2208
|
+
input.push(reasoningMessages[reasoningId]);
|
|
2209
|
+
} else {
|
|
2210
|
+
reasoningMessage.summary.push(...summaryParts);
|
|
2211
|
+
}
|
|
2198
2212
|
}
|
|
2199
2213
|
} else {
|
|
2200
2214
|
warnings.push({
|