bolt.diy/app/types/context.ts
2025-05-21 13:52:53 -07:00

24 lines
425 B
TypeScript

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 SegmentsGroupAnnotation = {
type: 'segmentsGroup';
segmentsGroupId: string;
};