feat: add workflow action outcomes and tracing

This commit is contained in:
Xin Wang
2026-08-01 11:21:31 +08:00
parent ad5ff061bb
commit b747144ff1
13 changed files with 558 additions and 32 deletions

View File

@@ -278,6 +278,14 @@ export type ConversationMessage = {
};
export type ConversationDetail = Conversation & {
extra: {
workflow?: {
revision: string;
specVersion?: number;
snapshot: Record<string, unknown>;
};
workflowTrace?: Array<Record<string, unknown>>;
};
messages: ConversationMessage[];
};