bolt.diy/app/types/context.ts

19 lines
329 B
TypeScript
Raw Permalink Normal View History

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;
};