File tree Expand file tree Collapse file tree 3 files changed +29
-321
lines changed
Expand file tree Collapse file tree 3 files changed +29
-321
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ export interface ActiveRequest {
2828 prompt : string ;
2929 startedAt : number ;
3030 lastUpdatedAt : number ;
31- currentStatus : string ;
32- currentStep ?: string ;
3331 currentText : string ;
3432 tools : TrackedTool [ ] ;
3533 todos : TrackedTodo [ ] ;
@@ -39,13 +37,6 @@ export interface ActiveRequest {
3937 error ?: string ;
4038}
4139
42- export interface SessionPlan {
43- status : "planning" | "awaiting_input" | "ready" | "building" | "complete" ;
44- todos : TrackedTodo [ ] ;
45- messageTs ?: string ;
46- text ?: string ;
47- }
48-
4940export interface PendingQuestion {
5041 requestId : string ;
5142 sessionId : string ;
@@ -68,7 +59,6 @@ export interface PersistedSession {
6859 createdAt : number ;
6960 lastActivityAt : number ;
7061 activeRequest ?: ActiveRequest ;
71- plan ?: SessionPlan ;
7262 pendingQuestion ?: PendingQuestion ;
7363}
7464
@@ -159,7 +149,6 @@ export function createActiveRequest(
159149 prompt,
160150 startedAt : Date . now ( ) ,
161151 lastUpdatedAt : Date . now ( ) ,
162- currentStatus : "Starting" ,
163152 currentText : "" ,
164153 tools : [ ] ,
165154 todos : [ ] ,
You can’t perform that action at this time.
0 commit comments