@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 !== "function_call_output") return item;
42531
- const {
42532
- is_error: _isError,
42533
- tool_references: _toolReferences,
42534
- ...wireItem
42535
- } = item;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotobokuri/fleet-console",
3
- "version": "1.50.0",
3
+ "version": "1.50.1",
4
4
  "description": "Fleet Console - standalone web surface for observing Fleet CLI workspaces, carrier jobs, live output streams, and terminals.",
5
5
  "repository": {
6
6
  "type": "git",