Spaces:
Build error
Build error
File size: 1,455 Bytes
75fefa7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
// Conversation tracking types for maintaining context across interactions
export interface ConversationMessage {
id: string;
role: 'user' | 'assistant';
content: string;
timestamp: number;
metadata?: {
editedFiles?: string[]; // Files edited in this interaction
addedPackages?: string[]; // Packages added in this interaction
editType?: string; // Type of edit performed
sandboxId?: string; // Sandbox ID at time of message
};
}
export interface ConversationEdit {
timestamp: number;
userRequest: string;
editType: string;
targetFiles: string[];
confidence: number;
outcome: 'success' | 'partial' | 'failed';
errorMessage?: string;
}
export interface ConversationContext {
messages: ConversationMessage[];
edits: ConversationEdit[];
currentTopic?: string; // Current focus area (e.g., "header styling", "hero section")
projectEvolution: {
initialState?: string; // Description of initial project state
majorChanges: Array<{
timestamp: number;
description: string;
filesAffected: string[];
}>;
};
userPreferences: {
editStyle?: 'targeted' | 'comprehensive'; // How the user prefers edits
commonRequests?: string[]; // Common patterns in user requests
packagePreferences?: string[]; // Commonly used packages
};
}
export interface ConversationState {
conversationId: string;
startedAt: number;
lastUpdated: number;
context: ConversationContext;
} |