bitfab-cli 0.2.348 → 0.2.350
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23914,7 +23914,7 @@ var getSimPlan = {
|
|
|
23914
23914
|
description: "Read one trace function's sim plan: its span nodes overlaid from recent traces, each with its span type, call count, how many traces it appears in, and whether its content (inputs and outputs) is captured. Call it to learn the exact node names before save_sim_plan, or to answer what a workflow records today.",
|
|
23915
23915
|
inputSchema: {
|
|
23916
23916
|
traceFunctionKey: external_exports.string().min(1).describe("Trace function key, as list_trace_functions prints it."),
|
|
23917
|
-
limit: external_exports.preprocess(parseJsonString, external_exports.number().int().min(1).max(100)).optional().describe("Recent traces to overlay (1-100). Defaults to
|
|
23917
|
+
limit: external_exports.preprocess(parseJsonString, external_exports.number().int().min(1).max(100)).optional().describe("Recent traces to overlay, taken from the function's own traces and again from its replays (1-100 of each). Defaults to 40.")
|
|
23918
23918
|
}
|
|
23919
23919
|
};
|
|
23920
23920
|
var saveSimPlan = {
|
|
@@ -24576,7 +24576,7 @@ var semver3 = __toESM(require_semver2(), 1);
|
|
|
24576
24576
|
// ../bitfab-plugin-lib/dist/bakedSdkVersions.js
|
|
24577
24577
|
var BAKED_SDK_VERSIONS = {
|
|
24578
24578
|
typescript: "0.54.8",
|
|
24579
|
-
python: "0.
|
|
24579
|
+
python: "0.56.0",
|
|
24580
24580
|
ruby: "0.51.9",
|
|
24581
24581
|
go: "0.51.8"
|
|
24582
24582
|
};
|
package/package.json
CHANGED