mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +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.
6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
export enum InputMode {
|
|
Normal = "normal",
|
|
Diff = "diff",
|
|
Question = "question",
|
|
PlanApproval = "planApproval"
|
|
}
|