bolt.diy / app /types /context.ts
codacus's picture
feat: enhanced Code Context and Project Summary Features (#1191)
7016111 unverified
raw
history blame
329 Bytes
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;
};