mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Add PlanApprovalService and PlanApprovalView to enable user review and approval of AI-generated execution plans before execution begins. Users can approve, reject, or suggest changes to plans through a new input mode and dedicated view.
11 lines
No EOL
248 B
TypeScript
11 lines
No EOL
248 B
TypeScript
export class PlanApprovalResponse {
|
|
|
|
public approved: boolean;
|
|
public suggestion: string;
|
|
|
|
public constructor(approved: boolean, suggestion: string = "") {
|
|
this.approved = approved;
|
|
this.suggestion = suggestion;
|
|
}
|
|
|
|
} |