andy-stack_vaultkeeper-ai/Types/ExecutionPlan.ts
2026-01-30 22:35:54 +00:00

14 lines
No EOL
399 B
TypeScript

import type { ExecutionStep } from "./ExecutionStep";
import type { SubmitPlanArgs } from "AIClasses/Schemas/AIToolSchemas";
export class ExecutionPlan {
public readonly isReplan: boolean;
public readonly executionSteps: ExecutionStep[];
public constructor(plan: SubmitPlanArgs, isReplan: boolean) {
this.executionSteps = plan.steps;
this.isReplan = isReplan;
}
}