Files
bolt.diy/app/types/context.ts

26 lines
478 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 ToolInvocationAnnotation = {
type: 'toolInvocation';
toolName: string;
parameters: Record<string, unknown>;
result: unknown;
};