@dotobokuri/fleet-console 1.50.0 → 1.50.1
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.
|
@@ -42527,12 +42527,15 @@ function forOpenAIResponsesBackend(request, dropSamplingParams) {
|
|
|
42527
42527
|
} = source;
|
|
42528
42528
|
const payload = { ...rest };
|
|
42529
42529
|
payload.input = request.input.map((item) => {
|
|
42530
|
-
if (item.type
|
|
42531
|
-
|
|
42532
|
-
|
|
42533
|
-
|
|
42534
|
-
|
|
42535
|
-
|
|
42530
|
+
if (item.type === "function_call_output") {
|
|
42531
|
+
const {
|
|
42532
|
+
is_error: _isError,
|
|
42533
|
+
tool_references: _toolReferences,
|
|
42534
|
+
...wireItem2
|
|
42535
|
+
} = item;
|
|
42536
|
+
return wireItem2;
|
|
42537
|
+
}
|
|
42538
|
+
const { reasoning_content: _reasoningContent, ...wireItem } = item;
|
|
42536
42539
|
return wireItem;
|
|
42537
42540
|
});
|
|
42538
42541
|
const wireTools = (canonicalTools ?? []).map((tool) => {
|
package/package.json
CHANGED