feat: remove pause

This commit is contained in:
Simon
2026-01-15 21:37:03 +08:00
parent c0ce6e7d14
commit 42130d6f1d
6 changed files with 2 additions and 85 deletions

View File

@@ -18,7 +18,7 @@ export interface Step {
duration?: number
}
export type AgentStatus = 'idle' | 'running' | 'paused' | 'completed' | 'error'
export type AgentStatus = 'idle' | 'running' | 'completed' | 'error'
export class UIState {
private steps: Step[] = []