feat(editor): Logs overview panel (#14045)

This commit is contained in:
Suguru Inoue
2025-03-31 13:19:54 +02:00
committed by GitHub
parent 68d9460f2a
commit d1710a1da3
22 changed files with 912 additions and 123 deletions

View File

@@ -445,9 +445,9 @@ export interface IExecutionBase {
status: ExecutionStatus;
retryOf?: string;
retrySuccessId?: string;
startedAt: Date;
createdAt: Date;
stoppedAt?: Date;
startedAt: Date | string;
createdAt: Date | string;
stoppedAt?: Date | string;
workflowId?: string; // To be able to filter executions easily //
}
@@ -1583,3 +1583,10 @@ export type MainPanelDimensions = Record<
relativeWidth: number;
}
>;
export interface LlmTokenUsageData {
completionTokens: number;
promptTokens: number;
totalTokens: number;
isEstimate: boolean;
}