feat: includes history events in panel

This commit is contained in:
Simon
2026-01-15 21:48:14 +08:00
parent 42130d6f1d
commit eab9cf64e8
4 changed files with 22 additions and 2 deletions

View File

@@ -6,7 +6,15 @@ export interface Step {
id: string
stepNumber: number
timestamp: Date
type: 'thinking' | 'tool_executing' | 'completed' | 'error' | 'output' | 'input' | 'retry'
type:
| 'thinking'
| 'tool_executing'
| 'completed'
| 'error'
| 'output'
| 'input'
| 'retry'
| 'observation'
// Tool execution related
toolName?: string