bitfab-cli 0.2.325 → 0.2.326
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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24346,7 +24346,7 @@ var getSimPlan = {
|
|
|
24346
24346
|
var saveSimPlan = {
|
|
24347
24347
|
name: "save_sim_plan",
|
|
24348
24348
|
title: "Save Sim Plan",
|
|
24349
|
-
description: "Turn content capture (inputs and outputs) off or on for span nodes of one trace function. The span itself, its name, type, timing, and errors are always recorded; content off strips only inputs and outputs. Call it when the user wants a span to stop recording its payloads, or to record them again. A node is its span name inside the trace function key, exactly as get_sim_plan lists it. Returns the updated sim plan.",
|
|
24349
|
+
description: "Turn content capture (inputs and outputs) off or on for span nodes of one trace function. The span itself, its name, type, timing, and errors are always recorded; content off strips only inputs and outputs. Call it when the user wants a span to stop recording its payloads, or to record them again. A node is its span name inside the trace function key, exactly as get_sim_plan lists it. A node recorded by a framework integration (OpenAI Agents, LangGraph, Claude Agent SDK, Vercel AI SDK), a node that is the root of its traces, a node imported from another platform, or a node named by Bitfab rather than the SDK keeps its content; asking to turn it off is refused with the reason. Returns the updated sim plan.",
|
|
24350
24350
|
inputSchema: {
|
|
24351
24351
|
traceFunctionKey: external_exports.string().min(1).describe("Trace function key, as list_trace_functions prints it."),
|
|
24352
24352
|
nodes: external_exports.preprocess(parseJsonString, external_exports.array(external_exports.object({
|
|
@@ -27010,8 +27010,8 @@ var semver3 = __toESM(require_semver2(), 1);
|
|
|
27010
27010
|
|
|
27011
27011
|
// ../bitfab-plugin-lib/dist/bakedSdkVersions.js
|
|
27012
27012
|
var BAKED_SDK_VERSIONS = {
|
|
27013
|
-
typescript: "0.53.
|
|
27014
|
-
python: "0.53.
|
|
27013
|
+
typescript: "0.53.1",
|
|
27014
|
+
python: "0.53.1",
|
|
27015
27015
|
ruby: "0.51.2",
|
|
27016
27016
|
go: "0.51.1"
|
|
27017
27017
|
};
|
package/package.json
CHANGED