| export type ContextAnnotation = | |
| | { | |
| type: 'codeContext'; | |
| files: string[]; | |
| } | |
| | { | |
| type: 'chatSummary'; | |
| summary: string; | |
| chatId: string; | |
| }; | |
| export type ProgressAnnotation = { | |
| type: 'progress'; | |
| value: number; | |
| message: string; | |
| }; | |
| export type ContextAnnotation = | |
| | { | |
| type: 'codeContext'; | |
| files: string[]; | |
| } | |
| | { | |
| type: 'chatSummary'; | |
| summary: string; | |
| chatId: string; | |
| }; | |
| export type ProgressAnnotation = { | |
| type: 'progress'; | |
| value: number; | |
| message: string; | |
| }; | |