bitfab-cli 0.2.326 → 0.2.328
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,13 +24346,13 @@ 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. 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.",
|
|
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. Turning a node off also turns content off for every node beneath it in the sim plan, the way untracing a span in a trace plan drops the spans under it; a node beneath it that keeps its content stays on, and a node you name in the same call keeps the value you give it. Turning a node back on leaves the nodes beneath it as they are, so turn those on by name. 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({
|
|
24353
24353
|
name: external_exports.string().min(1),
|
|
24354
24354
|
captureContent: external_exports.preprocess(parseJsonString, external_exports.boolean())
|
|
24355
|
-
})).min(1).max(500)).describe("Nodes to change (1-500). `name` is the span name; `captureContent` false stops recording that span's inputs and outputs, true records them again.")
|
|
24355
|
+
})).min(1).max(500)).describe("Nodes to change (1-500). `name` is the span name; `captureContent` false stops recording that span's inputs and outputs and does the same for every node beneath it, true records them again for that node only.")
|
|
24356
24356
|
}
|
|
24357
24357
|
};
|
|
24358
24358
|
var ALL_TOOL_CONTRACTS = [
|
|
@@ -27010,7 +27010,7 @@ 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.
|
|
27013
|
+
typescript: "0.53.2",
|
|
27014
27014
|
python: "0.53.1",
|
|
27015
27015
|
ruby: "0.51.2",
|
|
27016
27016
|
go: "0.51.1"
|
package/package.json
CHANGED