[agent-pipeline] pipe-20260329112709-ncml round-2

This commit is contained in:
DDD1542
2026-03-29 23:12:23 +09:00
parent a5f4cd5ba9
commit 1405a19d1c
13 changed files with 96 additions and 93 deletions
+2 -2
View File
@@ -42,7 +42,7 @@ export interface FlowExecutionResult {
* 노드 플로우 실행 함수
*/
export async function executeButtonWithFlow(
flowConfig: ButtonDataflowConfig["flowConfig"],
flowConfig: ButtonDataflowConfig["flow_config"],
context: ButtonExecutionContext,
originalAction?: () => Promise<void>,
): Promise<FlowExecutionResult> {
@@ -50,7 +50,7 @@ export async function executeButtonWithFlow(
throw new Error("플로우 설정이 없습니다.");
}
const { flowId, flowName, executionTiming = "before" } = flowConfig;
const { flow_id: flowId, flow_name: flowName, execution_timing: executionTiming = "before" } = flowConfig!;
logger.info(`🚀 노드 플로우 실행 시작:`, {
flowId,