bolt.diy / app /types /context.ts
Ashhar
merge from latest, with DeepSeek r1 support
306fc1f
raw
history blame contribute delete
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;
};