| export type ContextAnnotation = | |
| | { | |
| type: 'codeContext'; | |
| files: string[]; | |
| } | |
| | { | |
| type: 'chatSummary'; | |
| summary: string; | |
| chatId: string; | |
| }; | |
| export type ProgressAnnotation = { | |
| type: 'progress'; | |
| label: string; | |
| status: 'in-progress' | 'complete'; | |
| order: number; | |
| message: string; | |
| }; | |