bolt.diy / app /types /context.ts
codacus's picture
feat: enhance context handling by adding code context selection and implementing summary generation (#1091) #release
3c56346 unverified
raw
history blame
274 Bytes
export type ContextAnnotation =
| {
type: 'codeContext';
files: string[];
}
| {
type: 'chatSummary';
summary: string;
chatId: string;
};
export type ProgressAnnotation = {
type: 'progress';
value: number;
message: string;
};