UNPKG

@allma/core-cdk

Version:

Core AWS CDK constructs for deploying the Allma serverless AI orchestration platform.

13 lines 584 B
// packages/allma-app-logic/src/allma-core/step-handlers/noop-handler.ts import { log_info } from '@allma/core-sdk'; export const handleNoOp = async (stepDefinition, stepInput, runtimeState) => { log_info(`Executing NO_OP step: ${stepDefinition.name}`, { inputData: stepInput }, runtimeState.flowExecutionId); // NO_OP step simply passes through its input as its output. return { outputData: { ...stepInput, message: `NO_OP step '${stepDefinition.name}' executed successfully.`, }, }; }; //# sourceMappingURL=noop-handler.js.map