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; }; export type ToolCallAnnotation = { type: 'toolCall'; toolCallId: string; serverName: string; toolName: string; toolDescription: string; };