mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
24 lines
425 B
TypeScript
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;
|
|
};
|