feat: granular performance tracking and cache hit indicators for AI scans

This commit is contained in:
2025-12-22 10:45:05 +01:00
parent 7d06ba7a57
commit fd168fea0e
5 changed files with 102 additions and 23 deletions

View File

@@ -96,4 +96,9 @@ export interface AnalysisResponse {
success: boolean;
data?: BottleMetadata;
error?: string;
perf?: {
apiDuration: number;
parseDuration: number;
uploadSize: number;
};
}