ProtectedaddAppend (or overwrite) an output param on the run params.
ProtectedbuildBuild the orchestrator's production dependency bundle from the action's run params. Async because the wiring resolves the active File Storage Provider to pick the artifact-store family. Overridable so tests inject in-memory seams (entity factory, fake clock, fake trainer).
ProtectedbuildBuild the orchestrator run options from the action's params — an optional
pre-resolved ExperimentID to attach the session to, and an optional Budget
override (otherwise the plan's ProposedBudget is used).
ProtectedcreateConstruct the ExperimentOrchestrator. Overridable so tests inject a mock.
ProtectedfailBuild a failure ActionResultSimple.
ProtectedfindLocate a param by case-insensitive, whitespace-tolerant name.
ProtectedgetRead a boolean param. Accepts native booleans and the usual truthy/falsey
string forms (true/1/yes, false/0/no); falls back to defaultValue.
ProtectedgetRead a JSON-object param. Accepts either an object value or a JSON string that
parses to an object. Returns undefined when missing or not an object.
ProtectedgetRead a numeric param. Returns undefined when missing or non-numeric so the
caller can apply its own default / required check.
ProtectedgetRead a string param (trimmed). Returns undefined when missing/empty so the
caller can branch on required-ness.
ProtectedInternalInternal method that must be implemented by derived action classes. This is where the actual action logic should be implemented.
The action execution parameters including typed context
Promise resolving to the action result
ProtectedmapMap the orchestrator result onto output params + a human-readable message.
ProtectedokBuild a success ActionResultSimple, carrying the (mutated) params back.
ProtectedparseParse + VALIDATE the optional Budget JSON param into a Budget.
Returns undefined when absent OR malformed (a malformed budget is not a hard
failure — the plan's ProposedBudget is used as the fallback downstream), but
never a blind cast of an arbitrary object.
Executes the action with the provided parameters.
The action execution parameters including context
Promise resolving to the action result
Runs an approved modeling plan as an experiment session. Outputs:
SessionID(string),BestModelID(string | null),Leaderboard(JSON string),StopReason(string).