Add a keep going suggestion (#201)

This commit is contained in:
Will Chen
2025-05-19 15:38:33 -07:00
committed by GitHub
parent 68cb6b3d7d
commit b4b9556e2c
3 changed files with 126 additions and 140 deletions

View File

@@ -166,7 +166,8 @@ export type SuggestedAction =
| WriteCodeProperlyAction
| RebuildAction
| RestartAction
| RefreshAction;
| RefreshAction
| KeepGoingAction;
export interface RestartAppAction {
id: "restart-app";
@@ -197,6 +198,10 @@ export interface RefreshAction {
id: "refresh";
}
export interface KeepGoingAction {
id: "keep-going";
}
export interface ActionProposal {
type: "action-proposal";
actions: SuggestedAction[];