mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-09 21:50:36 +00:00
* fix: docker prod env variable fix * lint and typecheck * removed hardcoded tag * better summary generation * improved summary generation for context optimization * remove think tags from the generation
19 lines
329 B
TypeScript
19 lines
329 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;
|
|
};
|