mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
14 lines
No EOL
399 B
TypeScript
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;
|
|
}
|
|
|
|
} |